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.
2 parents 3cc4f25 + a5dc0fe commit 42523a1Copy full SHA for 42523a1
ports/raspberrypi/supervisor/port.c
@@ -238,8 +238,9 @@ void port_interrupt_after_ticks(uint32_t ticks) {
238
void port_idle_until_interrupt(void) {
239
common_hal_mcu_disable_interrupts();
240
if (!background_callback_pending()) {
241
- asm volatile ("dsb 0xF" ::: "memory");
242
- __wfi();
+ // TODO: Does not work when board is power-cycled.
+ // asm volatile ("dsb 0xF" ::: "memory");
243
+ // __wfi();
244
}
245
common_hal_mcu_enable_interrupts();
246
0 commit comments