We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1312e5c commit 3c343cfCopy full SHA for 3c343cf
ports/mimxrt10xx/supervisor/port.c
@@ -415,15 +415,6 @@ void port_idle_until_interrupt(void) {
415
common_hal_mcu_disable_interrupts();
416
if (!background_callback_pending()) {
417
NVIC_ClearPendingIRQ(SNVS_HP_WRAPPER_IRQn);
418
- // Don't down clock on debug builds because it prevents the DAP from
419
- // reading memory
420
- #if 0
421
- #if CIRCUITPY_DEBUG == 0
422
- CLOCK_SetMode(kCLOCK_ModeWait);
423
- #endif
424
- __WFI();
425
- CLOCK_SetMode(kCLOCK_ModeRun);
426
- #else
427
__WFI();
428
#endif
429
}
0 commit comments