esp_cache_msync() function
Memory sync between Cache and storage memory For cache-to-memory (C2M) direction: - For cache writeback supported chips (you can refer to SOC_CACHE_WRITEBACK_SUPPORTED in soc_caps.h) - This API will do a writeback to synchronise between cache and storage memory - With ESP_CACHE_MSYNC_FLAG_INVALIDATE, this API will also invalidate the values that just written - Note: although ESP32 is with PSRAM, but cache writeback isn't supported, so this API will do nothing on ESP32 - For other chips, this API will do nothing. The out-of-sync should be already dealt by the SDK For memory-to-cache (M2C) direction: - This API will by default do an invalidation This API is cache-safe and thread-safe
Arguments
addr
Starting address to do the msync
flags
Flags, see `ESP_CACHE_MSYNC_FLAG_x`
Return value
- ESP_OK: - Successful msync - For C2M direction, if this chip doesn't support cache writeback, if the input addr is a cache supported one, this API will return ESP_OK - ESP_ERR_INVALID_ARG: Invalid argument, not cache supported addr, see printed logs
Notes
If you don't set direction (ESP_CACHE_MSYNC_FLAG_DIR_x flags), this API is by default C2M direction If you don't set type (ESP_CACHE_MSYNC_FLAG_TYPE_x flags), this API is by default doing msync for data You should not call this during any Flash operations (e.g. esp_flash APIs, nvs and some other APIs that are based on esp_flash APIs) If XIP_From_PSRAM is enabled (by enabling both CONFIG_SPIRAM_FETCH_INSTRUCTIONS and CONFIG_SPIRAM_RODATA), you can call this API during Flash operations