fix ld err since esp32c2 do not suport config gpio of spi flash via efuse

This commit is contained in:
jingli
2022-01-25 11:02:52 +08:00
parent e70c434780
commit ae127b04cd
13 changed files with 39 additions and 1 deletions

View File

@@ -579,6 +579,10 @@ config SOC_SPIRAM_SUPPORTED
bool
default y
config SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE
bool
default y
config SOC_SHA_SUPPORT_PARALLEL_ENG
bool
default y

View File

@@ -310,6 +310,9 @@
/*-------------------------- SPIRAM CAPS -------------------------------------*/
#define SOC_SPIRAM_SUPPORTED 1
/*-------------------------- SPI MEM CAPS ---------------------------------------*/
#define SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE (1)
/*--------------------------- SHA CAPS ---------------------------------------*/
/* ESP32 style SHA engine, where multiple states can be stored in parallel */
#define SOC_SHA_SUPPORT_PARALLEL_ENG (1)