tmedicci commented on code in PR #10854: URL: https://github.com/apache/nuttx/pull/10854#discussion_r1346198286
########## arch/xtensa/src/esp32s3/esp32s3_ble_adapter.c: ########## @@ -736,7 +773,12 @@ static void interrupt_handler_set_wrapper(int intr_num, void *fn, void *arg) static void interrupt_on_wrapper(int intr_num) { - up_enable_irq(intr_num + XTENSA_IRQ_FIRSTPERIPH); + int cpuint = intr_num; + int irq = esp32s3_getirq(0, cpuint); + + DEBUGASSERT(esp32s3_irq_set_iram_isr(irq) == OK); Review Comment: Of course! I checked for other similar issues on this file... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org