move to 4.3.5

- remove SPI workaround and heap optimization
- move a few items from DRAM to either EXTRAM or keep them in text
This commit is contained in:
philippe44
2023-05-18 13:49:23 +02:00
parent 910ea583a2
commit e531bea28a
46 changed files with 8 additions and 9575 deletions

View File

@@ -38,7 +38,8 @@
#include "esp_attr.h"
#include "esp_log.h"
#include "esp_pm.h"
#include "esp_efuse.h"
#include "soc/chip_revision.h"
#include "hal/efuse_hal.h"
#include "esp_rom_gpio.h"
#include "sdkconfig.h"
@@ -193,7 +194,7 @@ static float i2s_apll_get_fi2s(int bits_per_sample, int sdm0, int sdm1, int sdm2
#if CONFIG_IDF_TARGET_ESP32
/* ESP32 rev0 silicon issue for APLL range/accuracy, please see ESP32 ECO document for more information on this */
if (esp_efuse_get_chip_ver() == 0) {
if (!ESP_CHIP_REV_ABOVE(efuse_hal_chip_revision(), 100)) {
sdm0 = 0;
sdm1 = 0;
}