2024-01-16 04:14:28 -05:00
|
|
|
menu "ESP-Driver:ISP Configurations"
|
|
|
|
depends on SOC_ISP_SUPPORTED
|
|
|
|
|
|
|
|
config ISP_ISR_IRAM_SAFE
|
|
|
|
bool "ISP driver ISR IRAM-Safe"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Ensure the ISP driver ISR is IRAM-Safe. When enabled, the ISR handler
|
|
|
|
will be available when the cache is disabled.
|
|
|
|
|
2024-07-24 03:47:48 -04:00
|
|
|
config ISP_CTRL_FUNC_IN_IRAM
|
|
|
|
bool "Place ISP control functions into IRAM"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Place ISP control functions into IRAM,
|
|
|
|
so that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.
|
|
|
|
Enabling this option can improve driver performance as well.
|
|
|
|
|
|
|
|
Function list:
|
|
|
|
- `esp_isp_sharpen_configure`
|
|
|
|
|
2024-01-16 04:14:28 -05:00
|
|
|
endmenu # ISP Configuration
|