1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
-
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
- #define APP_VERSION_MAJOR 0
- #define APP_VERSION_MINOR 1
-
- #define MENU_PREFER_VOLCANO
-
-
- #define VOLCANO_AUTO_CONNECT_TIMEOUT_MS 2000
- #define VOLCANO_AUTO_CONNECT_WITHIN_MS 10000
-
- #ifdef NDEBUG
-
- #define AUTO_MOUNT_MASS_STORAGE
- #define AUTO_LOG_ON_MASS_STORAGE
- #define DEBUG_DISK_WRITE_SOURCES
- #endif
-
- #define WATCHDOG_PERIOD_MS 1000
-
-
- #define ENTER_BOOTLOADER_MAGIC 0x18
-
-
- #define DEBOUNCE_DELAY_MS 5
-
- #define SERIAL_WRITES_BLOCK_WHEN_BUFFER_FULL
-
- #define DISK_BLOCK_SIZE 512
-
- #ifdef DEBUG_DISK_WRITE_SOURCES
- #define DISK_BLOCK_COUNT (256 + 128)
- #else
- #define DISK_BLOCK_COUNT 256
- #endif
-
-
-
-
- #endif
|