You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910 |
- /*
- * fat_disk.h
- */
-
- #define DISK_BLOCK_COUNT 256
- #define DISK_BLOCK_SIZE 512
-
- void fat_disk_init(void);
-
- uint8_t *fat_disk_get_sector(uint32_t sector);
|