Skip to content

Commit a110f09

Browse files
Merge branch 'task/enable_fpu_in_isr_for_esp32s3' into 'master'
feat(freertos): Enabled Kconfig option to allow FPU usage in ISR for esp32s3 Closes IDFGH-13365 See merge request espressif/esp-idf!32746
2 parents a5f249b + bfa3c55 commit a110f09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/freertos/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ menu "FreeRTOS"
463463

464464
config FREERTOS_FPU_IN_ISR
465465
bool "Use float in Level 1 ISR"
466-
depends on IDF_TARGET_ESP32
466+
depends on SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)
467467
default n
468468
help
469469
When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in

0 commit comments

Comments
 (0)