No Description
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.

fat_disk.h 155B

12345678910
  1. /*
  2. * fat_disk.h
  3. */
  4. #define DISK_BLOCK_COUNT 256
  5. #define DISK_BLOCK_SIZE 512
  6. void fat_disk_init(void);
  7. uint8_t *fat_disk_get_sector(uint32_t sector);