ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
fatfs.h
Go to the documentation of this file.
1 #ifndef _FATFS_H_
2 #define _FATFS_H_
3 
4 #include "time.h"
5 #include "timer.h"
6 
7 // FATFS
8 #ifdef AVR
9 #define MMC_SLOW (500000UL)
10 #define MMC_FAST (2500000UL)
11 #endif
12 #ifdef ESP8266
13 #define MMC_SLOW (F_CPU/500000UL)
14 #define MMC_FAST (F_CPU/2000000UL)
15 #endif
16 
17 #include "ffconf.h"
18 #include "integer.h"
19 #include "ff.h"
20 #include "diskio.h"
21 #include "fatfs_sup.h"
22 #include "mmc_hal.h"
23 #include "mmc.h"
24 
25 // FATFS user tests and user interface
26 #include "fatfs_tests.h"
27 
28 #endif
Common Linux/POSIX time functions.
timer functions