Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 135) sorted by relevance

123456

/hal_nordic-latest/drivers/nrf_802154/serialization/src/
Dnrf_802154_spinel_app.c81 SERIALIZATION_ERROR_INIT(error); in status_ok_await()
87 error, in status_ok_await()
93 SERIALIZATION_ERROR_CHECK(res, error, bail); in status_ok_await()
100 error, in status_ok_await()
109 return error; in status_ok_await()
127 SERIALIZATION_ERROR_INIT(error); in net_generic_bool_response_await()
133 error, in net_generic_bool_response_await()
140 SERIALIZATION_ERROR_CHECK(res, error, bail); in net_generic_bool_response_await()
151 return error; in net_generic_bool_response_await()
169 SERIALIZATION_ERROR_INIT(error); in net_generic_uint8_response_await()
[all …]
Dnrf_802154_spinel_net.c67 SERIALIZATION_ERROR_INIT(error); in local_transmitted_frame_ptr_free()
75 error, in local_transmitted_frame_ptr_free()
79 SERIALIZATION_ERROR_RAISE_IF_FAILED(error); in local_transmitted_frame_ptr_free()
88 SERIALIZATION_ERROR_INIT(error); in nrf_802154_cca_done()
98 SERIALIZATION_ERROR_CHECK(res, error, bail); in nrf_802154_cca_done()
101 SERIALIZATION_ERROR_RAISE_IF_FAILED(error); in nrf_802154_cca_done()
110 SERIALIZATION_ERROR_INIT(error); in nrf_802154_cca_failed()
120 SERIALIZATION_ERROR_CHECK(res, error, bail); in nrf_802154_cca_failed()
123 SERIALIZATION_ERROR_RAISE_IF_FAILED(error); in nrf_802154_cca_failed()
132 SERIALIZATION_ERROR_INIT(error); in nrf_802154_energy_detected()
[all …]
Dnrf_802154_spinel.c77 SERIALIZATION_ERROR_INIT(error); in nrf_802154_serialization_init()
84 SERIALIZATION_ERROR_CHECK(ret, error, bail); in nrf_802154_serialization_init()
87 SERIALIZATION_ERROR_RAISE_IF_FAILED(error); in nrf_802154_serialization_init()
121 SERIALIZATION_ERROR_INIT(error); in nrf_802154_spinel_encoded_packet_received()
125 SERIALIZATION_ERROR_CHECK(err, error, bail); in nrf_802154_spinel_encoded_packet_received()
128 SERIALIZATION_ERROR_RAISE_IF_FAILED(error); in nrf_802154_spinel_encoded_packet_received()
Dnrf_802154_spinel_dec_app.c225 uint8_t error; in spinel_decode_prop_nrf_802154_receive_failed() local
231 &error, in spinel_decode_prop_nrf_802154_receive_failed()
239 nrf_802154_receive_failed(error, id); in spinel_decode_prop_nrf_802154_receive_failed()
741 __WEAK void nrf_802154_receive_failed(nrf_802154_rx_error_t error, uint32_t id) in nrf_802154_receive_failed() argument
743 (void)error; in nrf_802154_receive_failed()
757 nrf_802154_tx_error_t error, in nrf_802154_transmit_failed() argument
761 (void)error; in nrf_802154_transmit_failed()
778 __WEAK void nrf_802154_cca_failed(nrf_802154_cca_error_t error) in nrf_802154_cca_failed() argument
780 (void)error; in nrf_802154_cca_failed()
790 __WEAK void nrf_802154_energy_detection_failed(nrf_802154_ed_error_t error) in nrf_802154_energy_detection_failed() argument
[all …]
/hal_nordic-latest/drivers/nrf_802154/driver/src/
Dnrf_802154_notification_swi.c88 #error NTF_PRIMARY_POOL_SIZE exceeds its bit width
154 nrf_802154_rx_error_t error; ///< An error code that indicates reason of the failure. member
167 …nrf_802154_tx_error_t error; ///< An error code that indicates reason of the fail… member
178 nrf_802154_ed_error_t error; ///< An error code that indicates reason of the failure. member
188 nrf_802154_cca_error_t error; ///< An error code that indicates reason of the failure. member
208 #error "Mismatching sizes of notification queue and maximum number of pending notifications"
347 bool swi_notify_receive_failed(nrf_802154_rx_error_t error, uint32_t id, bool allow_drop) in swi_notify_receive_failed() argument
379 p_slot->data.receive_failed.error = error; in swi_notify_receive_failed()
433 nrf_802154_tx_error_t error, in swi_notify_transmit_failed() argument
448 p_slot->data.transmit_failed.error = error; in swi_notify_transmit_failed()
[all …]
Dnrf_802154_notification_direct.c74 bool nrf_802154_notify_receive_failed(nrf_802154_rx_error_t error, uint32_t id, bool allow_drop) in nrf_802154_notify_receive_failed() argument
80 nrf_802154_co_receive_failed(error, id); in nrf_802154_notify_receive_failed()
102 nrf_802154_tx_error_t error, in nrf_802154_notify_transmit_failed() argument
108 nrf_802154_co_transmit_failed(p_frame, error, p_metadata); in nrf_802154_notify_transmit_failed()
122 void nrf_802154_notify_energy_detection_failed(nrf_802154_ed_error_t error) in nrf_802154_notify_energy_detection_failed() argument
126 nrf_802154_co_energy_detection_failed(error); in nrf_802154_notify_energy_detection_failed()
140 void nrf_802154_notify_cca_failed(nrf_802154_cca_error_t error) in nrf_802154_notify_cca_failed() argument
144 nrf_802154_co_cca_failed(error); in nrf_802154_notify_cca_failed()
Dnrf_802154_co.c54 void nrf_802154_co_cca_failed(nrf_802154_cca_error_t error) in nrf_802154_co_cca_failed() argument
57 nrf_802154_cca_failed(error); in nrf_802154_co_cca_failed()
68 void nrf_802154_co_energy_detection_failed(nrf_802154_ed_error_t error) in nrf_802154_co_energy_detection_failed() argument
71 nrf_802154_energy_detection_failed(error); in nrf_802154_co_energy_detection_failed()
93 void nrf_802154_co_receive_failed(nrf_802154_rx_error_t error, uint32_t id) in nrf_802154_co_receive_failed() argument
96 nrf_802154_receive_failed(error, id); in nrf_802154_co_receive_failed()
109 nrf_802154_tx_error_t error, in nrf_802154_co_transmit_failed() argument
113 nrf_802154_transmit_failed(p_frame, error, p_metadata); in nrf_802154_co_transmit_failed()
Dnrf_802154_notification.h93 bool nrf_802154_notify_receive_failed(nrf_802154_rx_error_t error, uint32_t id, bool allow_drop);
119 nrf_802154_tx_error_t error,
134 void nrf_802154_notify_energy_detection_failed(nrf_802154_ed_error_t error);
148 void nrf_802154_notify_cca_failed(nrf_802154_cca_error_t error);
Dnrf_802154_co.h52 void nrf_802154_co_cca_failed(nrf_802154_cca_error_t error);
62 void nrf_802154_co_energy_detection_failed(nrf_802154_ed_error_t error);
81 void nrf_802154_co_receive_failed(nrf_802154_rx_error_t error, uint32_t id);
93 nrf_802154_tx_error_t error,
Dnrf_802154_core_hooks.c65 typedef bool (* tx_failed_hook)(uint8_t * p_frame, nrf_802154_tx_error_t error);
66 typedef void (* tx_ack_failed_hook)(uint8_t * p_ack, nrf_802154_tx_error_t error);
300 bool nrf_802154_core_hooks_tx_failed(uint8_t * p_frame, nrf_802154_tx_error_t error) in nrf_802154_core_hooks_tx_failed() argument
311 result = m_tx_failed_hooks[i](p_frame, error); in nrf_802154_core_hooks_tx_failed()
322 void nrf_802154_core_hooks_tx_ack_failed(uint8_t * p_ack, nrf_802154_tx_error_t error) in nrf_802154_core_hooks_tx_ack_failed() argument
331 m_tx_ack_failed_hooks[i](p_ack, error); in nrf_802154_core_hooks_tx_ack_failed()
Dnrf_802154_peripherals_alloc.c61 #error Unsupported chip family
70 #error PPI channels for 802.15.4 driver overlap with MPSL channels
74 #error PPI groups for 802.15.4 driver overlap with MPSL groups
Dnrf_802154_encrypt.c397 bool nrf_802154_encrypt_tx_failed_hook(uint8_t * p_frame, nrf_802154_tx_error_t error) in nrf_802154_encrypt_tx_failed_hook() argument
399 (void)error; in nrf_802154_encrypt_tx_failed_hook()
406 void nrf_802154_encrypt_tx_ack_failed_hook(uint8_t * p_ack, nrf_802154_tx_error_t error) in nrf_802154_encrypt_tx_ack_failed_hook() argument
408 (void)error; in nrf_802154_encrypt_tx_ack_failed_hook()
Dnrf_802154_encrypt.h108 bool nrf_802154_encrypt_tx_failed_hook(uint8_t * p_frame, nrf_802154_tx_error_t error);
118 void nrf_802154_encrypt_tx_ack_failed_hook(uint8_t * p_ack, nrf_802154_tx_error_t error);
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_pdm.c46 #error "No enabled PDM instances. Check <nrfx_config.h>."
74 uint8_t error; ///< Driver error flag. member
176 p_cb->error = 0; in pdm_init()
518 evt.error = NRFX_PDM_NO_ERROR; in nrfx_pdm_irq_handler()
519 p_cb->error = 0; in nrfx_pdm_irq_handler()
540 if (p_cb->error == 0) in nrfx_pdm_irq_handler()
545 .error = NRFX_PDM_ERROR_OVERFLOW in nrfx_pdm_irq_handler()
547 p_cb->error = 1; in nrfx_pdm_irq_handler()
565 evt.error = NRFX_PDM_NO_ERROR; in nrfx_pdm_irq_handler()
590 .error = NRFX_PDM_NO_ERROR, in nrfx_pdm_irq_handler()
[all …]
Dnrfx_egu.c39 #error "No enabled EGU instances. Check <nrfx_config.h>."
43 #error "EGU instance 0 is reserved for use outside of nrfx."
46 #error "EGU instance 1 is reserved for use outside of nrfx."
49 #error "EGU instance 2 is reserved for use outside of nrfx."
52 #error "EGU instance 3 is reserved for use outside of nrfx."
55 #error "EGU instance 4 is reserved for use outside of nrfx."
58 #error "EGU instance 5 is reserved for use outside of nrfx."
Dnrfx_twi.c39 #error "No enabled TWI instances. Check <nrfx_config.h>."
107 bool error; member
403 if (p_cb->error) in twi_transfer()
414 p_cb->error = true; in twi_transfer()
428 p_cb->error = true; in twi_transfer()
447 p_cb->error = true; in twi_transfer()
462 if (!p_cb->error) in twi_transfer()
464 p_cb->error = !xfer_completeness_check(p_twi, p_cb); in twi_transfer()
487 p_cb->error = false; in twi_tx_start_transfer()
516 if (p_cb->error) in twi_tx_start_transfer()
[all …]
Dnrfx_twis.c39 #error "No enabled TWIS instances. Check <nrfx_config.h>."
79 volatile uint32_t error; member
230 uint32_t error) in nrfx_twis_process_error() argument
232 if (0 == error) in nrfx_twis_process_error()
234 error = NRFX_TWIS_ERROR_UNEXPECTED_EVENT; in nrfx_twis_process_error()
238 evdata.data.error = error; in nrfx_twis_process_error()
240 p_cb->error |= error; in nrfx_twis_process_error()
641 p_cb->error = 0; in nrfx_twis_enable()
704 uint32_t error = *perror; in nrfx_twis_error_get_and_clear_internal() local
706 return error; in nrfx_twis_error_get_and_clear_internal()
[all …]
Dnrfx_timer.c39 #error "No enabled TIMER instances. Check <nrfx_config.h>."
43 #error "TIMER instance 0 is reserved for use outside of nrfx."
46 #error "TIMER instance 1 is reserved for use outside of nrfx."
49 #error "TIMER instance 2 is reserved for use outside of nrfx."
52 #error "TIMER instance 3 is reserved for use outside of nrfx."
55 #error "TIMER instance 4 is reserved for use outside of nrfx."
Dnrfx_uart.c39 #error "No enabled UART instances. Check <nrfx_config.h>."
483 bool error; in nrfx_uart_rx() local
488 error = nrf_uart_event_check(p_instance->p_reg, NRF_UART_EVENT_ERROR); in nrfx_uart_rx()
491 } while ((!rxrdy) && (!rxto) && (!error)); in nrfx_uart_rx()
493 if (error || rxto) in nrfx_uart_rx()
501 if (error) in nrfx_uart_rx()
652 event.data.error.error_mask = nrf_uart_errorsrc_get_and_clear(p_uart); in irq_handler()
653 event.data.error.rxtx.bytes = p_cb->rx_buffer_length; in irq_handler()
654 event.data.error.rxtx.p_data = p_cb->p_rx_buffer; in irq_handler()
/hal_nordic-latest/drivers/nrf_802154/common/include/
Dnrf_802154_callouts.h68 extern void nrf_802154_cca_failed(nrf_802154_cca_error_t error);
83 extern void nrf_802154_energy_detection_failed(nrf_802154_ed_error_t error);
170 extern void nrf_802154_receive_failed(nrf_802154_rx_error_t error, uint32_t id);
208 nrf_802154_tx_error_t error,
Dnrf_802154_config.h290 #error "NRF_802154_CSMA_CA_MIN_BE was replaced with NRF_802154_CSMA_CA_MIN_BE_DEFAULT"
307 #error "NRF_802154_CSMA_CA_MAX_BE was replaced with NRF_802154_CSMA_CA_MAX_BE_DEFAULT"
324 #error \
/hal_nordic-latest/nrfx/soc/interconnect/ipct/
Dnrfx_interconnect_ipct_haltium_global.h50 #error "Invalid set of configuration for IPCT."
57 #error Invalid set of configuration for IPCT.
64 #error "Invalid set of configuration for IPCT."
71 #error "Invalid set of configuration for IPCT."
/hal_nordic-latest/nrfx/soc/interconnect/apb/
Dnrfx_interconnect_apb_haltium_global.h50 #error Invalid set of configuration for DPPIC.
57 #error Invalid set of configuration for DPPIC.
64 #error Invalid set of configuration for DPPIC.
71 #error "Invalid set of configuration for DPPIC."
Dnrfx_interconnect_apb_haltium_radiocore.h44 #error "Invalid mask for DPPIC020 subscibe/publish defined."
50 #error "Invalid mask for DPPIC030 subscibe/publish defined."
/hal_nordic-latest/drivers/nrf_802154/driver/src/mac_features/
Dnrf_802154_csma_ca.c141 static void notify_failed(nrf_802154_tx_error_t error) in notify_failed() argument
148 nrf_802154_notify_transmit_failed(mp_data, error, &metadata); in notify_failed()
419 bool nrf_802154_csma_ca_tx_failed_hook(uint8_t * p_frame, nrf_802154_tx_error_t error) in nrf_802154_csma_ca_tx_failed_hook() argument
425 switch (error) in nrf_802154_csma_ca_tx_failed_hook()
451 notify_failed(error); in nrf_802154_csma_ca_tx_failed_hook()

123456