mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-24 19:42:27 +03:00
fix SPIFFS to work
This commit is contained in:
@ -62,19 +62,19 @@ typedef uint8_t u8_t;
|
||||
|
||||
// Set generic spiffs debug output call.
|
||||
#ifndef SPIFFS_DGB
|
||||
#define SPIFFS_DBG(...) os_printf(__VA_ARGS__)
|
||||
#define SPIFFS_DBG(...) //os_printf(__VA_ARGS__)
|
||||
#endif
|
||||
// Set spiffs debug output call for garbage collecting.
|
||||
#ifndef SPIFFS_GC_DGB
|
||||
#define SPIFFS_GC_DBG(...) os_printf(__VA_ARGS__)
|
||||
#define SPIFFS_GC_DBG(...) //os_printf(__VA_ARGS__)
|
||||
#endif
|
||||
// Set spiffs debug output call for caching.
|
||||
#ifndef SPIFFS_CACHE_DGB
|
||||
#define SPIFFS_CACHE_DBG(...) os_printf(__VA_ARGS__)
|
||||
#define SPIFFS_CACHE_DBG(...) //os_printf(__VA_ARGS__)
|
||||
#endif
|
||||
// Set spiffs debug output call for system consistency checks.
|
||||
#ifndef SPIFFS_CHECK_DGB
|
||||
#define SPIFFS_CHECK_DBG(...) os_printf(__VA_ARGS__)
|
||||
#define SPIFFS_CHECK_DBG(...) //os_printf(__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
// Enable/disable API functions to determine exact number of bytes
|
||||
|
Reference in New Issue
Block a user