All uncommitted work from ESP32 GDB stub development session. Includes: - GDB stub (uos_gdbstub.c/.h/_entry.S) - Startup vector table rewrite - ESP32 HAL integration files - Boot chain design docs - AGENTS.md absolute rules (commit before refactor, no unauthorized changes) - All prior deepseek session work This commit prevents further data loss. No claims of correctness.
22 lines
764 B
Text
22 lines
764 B
Text
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.
|
|
|
|
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`
|
|
|
|
endmenu # ISP Configuration
|