47#ifndef NRF_802154_CALLOUTS_H_
48#define NRF_802154_CALLOUTS_H_
101#if NRF_802154_USE_RAW_API || defined(DOXYGEN)
103#if !NRF_802154_SERIALIZATION_HOST || defined(DOXYGEN)
165#if !NRF_802154_USE_RAW_API || defined(DOXYGEN)
166#if !NRF_802154_SERIALIZATION_HOST || defined(DOXYGEN)
236#if NRF_802154_USE_RAW_API || defined(DOXYGEN)
263#if !NRF_802154_USE_RAW_API || defined(DOXYGEN)
310#if !NRF_802154_SERIALIZATION_HOST || defined(DOXYGEN)
void nrf_802154_cca_failed(nrf_802154_cca_error_t error)
Notifies that the CCA procedure failed.
void nrf_802154_receive_failed(nrf_802154_rx_error_t error, uint32_t id)
Notifies that the reception of a frame failed.
void nrf_802154_received_raw(uint8_t *p_data, int8_t power, uint8_t lqi)
Notifies that a frame was received.
void nrf_802154_cca_done(bool channel_free)
Notifies that the CCA procedure has finished.
void nrf_802154_energy_detected(const nrf_802154_energy_detected_t *p_result)
Notifies that the energy detection procedure finished.
void nrf_802154_energy_detection_failed(nrf_802154_ed_error_t error)
Notifies that the energy detection procedure failed.
void nrf_802154_transmitted(uint8_t *p_frame, const nrf_802154_transmit_done_metadata_t *p_metadata)
Notifies that a frame was transmitted.
void nrf_802154_received_timestamp(uint8_t *p_data, uint8_t length, int8_t power, uint8_t lqi, uint32_t time)
Notifies that a frame was received at a given time.
void nrf_802154_transmit_failed(uint8_t *p_frame, nrf_802154_tx_error_t error, const nrf_802154_transmit_done_metadata_t *p_metadata)
Notifies that a frame was not transmitted due to a busy channel.
void nrf_802154_tx_started(const uint8_t *p_frame)
Notifies that transmitting a frame has started.
void nrf_802154_custom_part_of_radio_init(void)
Perform some additional operations during initialization of the RADIO peripheral.
void nrf_802154_transmitted_raw(uint8_t *p_frame, const nrf_802154_transmit_done_metadata_t *p_metadata)
Notifies that a frame was transmitted.
void nrf_802154_received_timestamp_raw(uint8_t *p_data, int8_t power, uint8_t lqi, uint64_t time)
Notifies that a frame was received at a given time.
void nrf_802154_tx_ack_started(const uint8_t *p_data)
Notifies about the start of the ACK frame transmission.
void nrf_802154_received(uint8_t *p_data, uint8_t length, int8_t power, uint8_t lqi)
Notifies that a frame was received.
uint8_t nrf_802154_ed_error_t
Possible errors during the energy detection.
Definition nrf_802154_types.h:116
uint8_t nrf_802154_cca_error_t
Possible errors during the CCA procedure.
Definition nrf_802154_types.h:123
uint8_t nrf_802154_rx_error_t
Possible errors during the frame reception.
Definition nrf_802154_types.h:98
uint8_t nrf_802154_tx_error_t
Errors reported during the frame transmission.
Definition nrf_802154_types.h:82
Structure that holds results of energy detection procedure.
Definition nrf_802154_types.h:505