1234567891011121314151617181920212223242526272829303132333435 |
-
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
-
- #define DEBOUNCE_DELAY_MS 5
-
- #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 128
- #endif
-
- #endif
|