mirror of https://github.com/arendst/Tasmota.git
Fix ESP32C3 compile error
Fix ESP32C3 compile error, maybe work in eps32s2 to.
This commit is contained in:
parent
d54afb47a9
commit
a1fed60730
|
@ -63,12 +63,16 @@
|
||||||
#include <sys/lock.h>
|
#include <sys/lock.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
||||||
#if __has_include("esp32/rom/spi_flash.h")
|
#if CONFIG_IDF_TARGET_ESP32C3
|
||||||
|
#include "esp32c3/rom/spi_flash.h"
|
||||||
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
||||||
|
#include "esp32s2/rom/spi_flash.h"
|
||||||
|
#elif __has_include("esp32/rom/spi_flash.h")
|
||||||
//#warning("LITTLEFS: IDF 4, spi_flash.h file location different from IDF 3")
|
//#warning("LITTLEFS: IDF 4, spi_flash.h file location different from IDF 3")
|
||||||
#include "esp32/rom/spi_flash.h"
|
#include "esp32/rom/spi_flash.h" //IDF 4
|
||||||
#else
|
#else
|
||||||
//#warning("LITTLEFS: IDF 3")
|
//#warning("LITTLEFS: IDF 3")
|
||||||
#include "rom/spi_flash.h"
|
#include "rom/spi_flash.h" //IDF 3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "esp_system.h"
|
#include "esp_system.h"
|
||||||
|
|
Loading…
Reference in New Issue