Merge branch 'fix/ieee802154_test_acquire_lock_in_interrupt' into 'master'

fix(ieee802154): fix ieee802154 next operation acquire lock in interrupt

See merge request espressif/esp-idf!30250
pull/13557/merge
Zhang Wen Xu 2024-04-18 11:05:10 +08:00
commit e169a5592c
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -363,7 +363,9 @@ static IRAM_ATTR void next_operation(void)
enable_rx();
} else {
ieee802154_set_state(IEEE802154_STATE_IDLE);
#if !CONFIG_IEEE802154_TEST
ieee802154_sleep();
#endif
}
}
}