123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
-
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
- #define VERSION_MAJOR 0
- #define VERSION_MINOR 1
-
- #define WATCHDOG_PERIOD_MS 100
- #define LOGO_INIT_MS 1000
-
-
- #define ENTER_BOOTLOADER_MAGIC 0x18
-
-
- #define DEBOUNCE_DELAY_MS 5
-
- #define BAT_FETCH_MS 66
-
- #define MAX_BPM 360
-
-
-
- #define STR_HELPER(x) #x
- #define STR(x) STR_HELPER(x)
-
- #define VERSION_STR "V" STR(VERSION_MAJOR) "." STR(VERSION_MINOR)
-
- #endif
|