1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
-
- #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 FLASH_LOCK_TIMEOUT_MS 500
- #define CH_GPIO_DEFAULT_MS 42
-
-
- #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
|