| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #include "esp_spi_flash.h"
- #include "esp_partition.h"
- #include "esp_err.h"
- #include "esp32/rom/spi_flash.h"
- bool spi_flash_check_and_flush_cache(size_t start_addr, size_t length)
- {
- return true;
- }
- esp_rom_spiflash_result_t esp_rom_spiflash_unlock(void)
- {
- return ESP_ROM_SPIFLASH_RESULT_OK;
- }
- void spi_flash_init_lock(void)
- {
- return;
- }
- void spi_flash_op_lock(void)
- {
- return;
- }
- void spi_flash_op_unlock(void)
- {
- return;
- }
- void spi_flash_disable_interrupts_caches_and_other_cpu(void)
- {
- return;
- }
- void spi_flash_enable_interrupts_caches_and_other_cpu(void)
- {
- return;
- }
- void spi_flash_disable_interrupts_caches_and_other_cpu_no_os(void)
- {
- return;
- }
- void spi_flash_enable_interrupts_caches_no_os(void)
- {
- return;
- }
|