feat(isp): allow ccm to bypass shadow register

This commit is contained in:
armando
2025-12-11 10:24:31 +08:00
parent 164b5475aa
commit 1d852ef4ea
4 changed files with 24 additions and 10 deletions

View File

@@ -26,6 +26,9 @@ typedef struct {
* When saturation is true, and final value will be limited to 4.0, and won't rise error
* When saturation is false, `esp_isp_ccm_configure` will rise ESP_ERR_INVALID_ARG error
*/
struct {
uint32_t update_once_configured : 1; ///< If set, apply configuration to hardware immediately; otherwise defer to frame boundary
} flags; ///< Driver behaviour flags
} esp_isp_ccm_config_t;
/**