123456789101112131415161718192021222324252627282930313233343536373839404142 |
-
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
- #define WATCHDOG_PERIOD_MS 1000
-
-
- #define ENTER_BOOTLOADER_MAGIC 0x18
-
-
- #define DEBOUNCE_DELAY_MS 5
-
- #define SERIAL_WRITES_BLOCK_WHEN_BUFFER_FULL
-
- #define DEBUG_DISK_WRITE_SOURCES
-
- #define DISK_BLOCK_SIZE 512
-
- #ifdef DEBUG_DISK_WRITE_SOURCES
- #define DISK_BLOCK_COUNT (256 + 128)
- #else
- #define DISK_BLOCK_COUNT 256
- #endif
-
- #endif
|