1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * config.h
- *
- * Copyright (c) 2022 - 2024 Thomas Buck (thomas@xythobuz.de)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * See <http://www.gnu.org/licenses/>.
- */
-
- #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
-
- // ASCII 0x18 = CAN (cancel)
- #define ENTER_BOOTLOADER_MAGIC 0x18
-
- //#define DISABLE_CDC_DTR_CHECK
- #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 // __CONFIG_H__
|