refactor(spi_flash): move os layer to esp_mspi and chip configs to spi_flash

Also fixes the implicit dependency on esp_partition.
This commit is contained in:
armando
2026-06-02 11:12:03 +08:00
committed by Armando (Dou Yiwen)
parent c565262ded
commit 6e3abd12a1
197 changed files with 1227 additions and 1139 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"