added esp8266 to supported architectures

added addition #include file for esp8266 to resolve missing SPI_FLASH_SEC_SIZE symbol
This commit is contained in:
Alex Shepherd
2016-11-16 10:01:36 +13:00
parent 9035e55930
commit 3a5986d10d
2 changed files with 3 additions and 2 deletions

View File

@@ -91,7 +91,8 @@ typedef struct
#define CV_29_CONFIG 29
#if defined(ESP8266)
#define MAXCV SPI_FLASH_SEC_SIZE
#include <spi_flash.h>
#define MAXCV SPI_FLASH_SEC_SIZE
#else
#define MAXCV E2END // the upper limit of the CV value currently defined to max memory.
#endif