Merge branch 'refactor/flash_refactor' into 'master'

spi_flash: split driver and os driver into `spi_flash` and `esp_mspi` components

Closes IDF-15210

See merge request espressif/esp-idf!45409
This commit is contained in:
Armando (Dou Yiwen)
2026-09-10 07:29:01 +00:00
266 changed files with 1558 additions and 1208 deletions

View File

@@ -20,7 +20,7 @@ if(NOT ${target} STREQUAL "linux")
list(APPEND srcs "test_esp_timer_dfs.c")
endif()
set(priv_requires cmock test_utils esp_timer spi_flash esp_psram esp_driver_gpio esp_pm)
set(priv_requires cmock test_utils esp_timer esp_mspi esp_psram esp_driver_gpio esp_pm)
list(APPEND srcs "test_ets_timer.c")
else()
set(priv_requires cmock test_utils esp_timer)

View File

@@ -12,7 +12,6 @@
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include "spi_flash_mmap.h"
#include "esp_rom_sys.h"
#include "esp_private/spi_flash_os.h"
#include "rom/ets_sys.h"