Merge pull request #5357 from dhalbert/revert-5341

Revert #5341. Does not work on power-cycle.
This commit is contained in:
Dan Halbert 2021-09-16 12:24:59 -04:00 committed by GitHub
commit 42523a1832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -238,8 +238,9 @@ void port_interrupt_after_ticks(uint32_t ticks) {
void port_idle_until_interrupt(void) {
common_hal_mcu_disable_interrupts();
if (!background_callback_pending()) {
asm volatile ("dsb 0xF" ::: "memory");
__wfi();
// TODO: Does not work when board is power-cycled.
// asm volatile ("dsb 0xF" ::: "memory");
// __wfi();
}
common_hal_mcu_enable_interrupts();
}