this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make logging optional

alice b3e261b6 74b98d22

+10
+10
src/c/watchface.c
··· 1 1 #include <pebble.h> 2 2 #include <stdlib.h> 3 3 #include <time.h> 4 + #include <string.h> 5 + 6 + // Logging: enable by defining ENABLE_APP_LOGS to 1 7 + #ifndef ENABLE_APP_LOGS 8 + #define ENABLE_APP_LOGS 0 9 + #endif 10 + #if !ENABLE_APP_LOGS 11 + #undef APP_LOG 12 + #define APP_LOG(level, fmt, ...) 13 + #endif 4 14 5 15 // Clock modules 6 16 #include "clock_beat.h"