1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

cpu/nrf52/radio: fix confirm_op info cast

This commit is contained in:
Leandro Lanzieri 2022-03-23 17:38:03 +01:00
parent 530e699de1
commit e48f957a52
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -253,7 +253,7 @@ static int _confirm_op(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx)
{
(void) dev;
bool eagain;
ieee802154_tx_info_t *info = NULL;
ieee802154_tx_info_t *info = ctx;
int state = _state;
bool enable_shorts = false;
int radio_state = NRF_RADIO->STATE;