drivers: ieee802154: Udpate nRF IEEE 802.15.4 radio driver

This commit updates the revision of hal_nordic component
and introduces necessary changes to the IEEE 802.15.4 driver
to match latest nRF IEEE 802.15.4 radio driver API.

Signed-off-by: Jedrzej Ciupis <jedrzej.ciupis@nordicsemi.no>
This commit is contained in:
Jedrzej Ciupis 2021-04-21 10:14:26 +02:00 committed by Kumar Gala
commit 0923e32fe7
2 changed files with 4 additions and 2 deletions

View file

@ -710,8 +710,10 @@ void nrf_802154_received_timestamp_raw(uint8_t *data, int8_t power, uint8_t lqi,
__ASSERT(false, "Not enough rx frames allocated for 15.4 driver");
}
void nrf_802154_receive_failed(nrf_802154_rx_error_t error)
void nrf_802154_receive_failed(nrf_802154_rx_error_t error, uint32_t id)
{
ARG_UNUSED(id);
enum ieee802154_rx_fail_reason reason;
switch (error) {