Skip to content

Commit b6ed953

Browse files
committed
cmake: esp32: use interrupt level 4 by default
The CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 setting is only required for BLE high-level interrupt (HLI) support, which isn’t enabled on ESP32 in Zephyr. Revert the default system interrupt level back to 4. Signed-off-by: Sylvio Alves <[email protected]>
1 parent c8d2da1 commit b6ed953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zephyr/esp32/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if(CONFIG_SOC_SERIES_ESP32)
55
zephyr_compile_options(-fstrict-volatile-bitfields)
66
zephyr_compile_definitions_ifndef(CONFIG_MCUBOOT CONFIG_APP_BUILD_USE_FLASH_SECTIONS)
77

8-
zephyr_compile_definitions(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5)
8+
zephyr_compile_definitions(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4)
99

1010
if(CONFIG_MCUBOOT)
1111
zephyr_compile_options(-fdump-rtl-expand)

0 commit comments

Comments
 (0)