Merge pull request #15766 from jia200x/pr/nrf802154/spurious_emission

nrf802154/hal: fix unwanted emissions at the end of ACK frame
This commit is contained in:
José Alamos 2021-01-14 12:35:47 +01:00 committed by GitHub
commit 0b16c298ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -548,6 +548,11 @@ void isr_radio(void)
break;
case STATE_ACK:
_state = STATE_IDLE;
/* We disable the radio to avoid unwanted emmissions (see ERRATA
* ID 204, "Switching between TX and RX causes unwanted emissions")
*/
_disable();
DEBUG("[nrf52840] TX ACK done.")
_set_ifs_timer(false);
break;