spi_flash: Force legacy mode for ESP32-S2

Can be removed once IDF-763 is merged
This commit is contained in:
Angus Gratton
2019-08-08 15:28:10 +10:00
committed by Angus Gratton
parent dc9170966b
commit 309376f51a
6 changed files with 23 additions and 8 deletions

View File

@@ -12,9 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include <string.h>
#include "esp_spi_flash_chip.h"
#include "esp_spi_flash.h"
#include "cache_utils.h"
#include "esp32/rom/spi_flash.h"
#include "esp32/rom/cache.h"
@@ -38,7 +36,7 @@ esp_rom_spiflash_result_t IRAM_ATTR spi_flash_write_encrypted_chip(size_t dest_a
{
const uint8_t *ssrc = (const uint8_t *)src;
esp_rom_spiflash_result_t rc;
rc = spi_flash_unlock();
rc = esp_rom_spiflash_unlock();
if (rc != ESP_ROM_SPIFLASH_RESULT_OK) {
return rc;
}