nrfxlib API 2.7.99
Loading...
Searching...
No Matches
nrf_802154_request.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017, Nordic Semiconductor ASA
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright notice, this
11 * list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
18 * contributors may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 */
34
35#ifndef NRF_802154_REQUEST_H__
36#define NRF_802154_REQUEST_H__
37
38#include <stdbool.h>
39#include <stdint.h>
40
41#include "nrf_802154_const.h"
44
45#ifdef __cplusplus
46extern "C" {
47#endif
48
60
70
84 req_originator_t req_orig,
85 nrf_802154_notification_func_t notify_function,
86 bool notify_abort,
87 uint32_t id);
88
102 req_originator_t req_orig,
103 uint8_t * p_data,
105 nrf_802154_notification_func_t notify_function);
106
114
125
135
136#if NRF_802154_CARRIER_FUNCTIONS_ENABLED
137
146bool nrf_802154_request_continuous_carrier(nrf_802154_term_t term_lvl);
147
157bool nrf_802154_request_modulated_carrier(nrf_802154_term_t term_lvl,
158 const uint8_t * p_data);
159
160#endif // NRF_802154_CARRIER_FUNCTIONS_ENABLED
161
167bool nrf_802154_request_buffer_free(uint8_t * p_data);
168
173
180
185
190
195
196#if NRF_802154_DELAYED_TRX_ENABLED
216bool nrf_802154_request_transmit_raw_at(uint8_t * p_data,
217 uint64_t tx_time,
218 const nrf_802154_transmit_at_metadata_t * p_metadata);
219
226bool nrf_802154_request_transmit_at_cancel(void);
227
241bool nrf_802154_request_receive_at(uint64_t rx_time,
242 uint32_t timeout,
243 uint8_t channel,
244 uint32_t id);
245
256bool nrf_802154_request_receive_at_cancel(uint32_t id);
257
258#endif // NRF_802154_DELAYED_TRX_ENABLED
259
269 const nrf_802154_transmit_csma_ca_metadata_t * p_metadata);
270
275#ifdef __cplusplus
276}
277#endif
278
279#endif // NRF_802154_REQUEST_H__
void(* nrf_802154_notification_func_t)(bool result)
Function type used for notifications from critical sections in the core module.
Definition: nrf_802154_notification.h:63
bool nrf_802154_request_csma_ca_start(uint8_t *p_data, const nrf_802154_transmit_csma_ca_metadata_t *p_metadata)
Requests CSMA-CA procedure for the transmission of a given frame.
void nrf_802154_request_init(void)
Initializes the request module.
bool nrf_802154_request_channel_update(req_originator_t req_orig)
Requests the driver to update the channel number used by the RADIO peripheral.
bool nrf_802154_request_cca(nrf_802154_term_t term_lvl)
Requests entering the RADIO_STATE_CCA state.
bool nrf_802154_request_ack_timeout_handle(const nrf_802154_ack_timeout_handle_params_t *p_param)
Request to handle Ack timeout by the core module.
bool nrf_802154_request_buffer_free(uint8_t *p_data)
Requests the driver to free the given buffer.
bool nrf_802154_request_receive(nrf_802154_term_t term_lvl, req_originator_t req_orig, nrf_802154_notification_func_t notify_function, bool notify_abort, uint32_t id)
Requests entering the RADIO_STATE_RX state for the driver.
bool nrf_802154_request_antenna_update(void)
Requests the driver to update the antenna used.
bool nrf_802154_request_rssi_measurement_get(int8_t *p_rssi)
Requests getting the last RSSI measurement result.
bool nrf_802154_request_sleep(nrf_802154_term_t term_lvl)
Requests entering the RADIO_STATE_SLEEP state for the driver.
bool nrf_802154_request_transmit(nrf_802154_term_t term_lvl, req_originator_t req_orig, uint8_t *p_data, nrf_802154_transmit_params_t *p_params, nrf_802154_notification_func_t notify_function)
Request entering the RADIO_STATE_TX state for the driver.
bool nrf_802154_request_rssi_measure(void)
Requests the RSSI measurement.
bool nrf_802154_request_cca_cfg_update(void)
Requests the driver to update the CCA configuration used by the RADIO peripheral.
bool nrf_802154_request_energy_detection(nrf_802154_term_t term_lvl, uint32_t time_us)
Requests entering the RADIO_STATE_ED state.
uint8_t nrf_802154_term_t
Termination level selected for a particular request.
Definition: nrf_802154_types.h:154
req_originator_t
Definition: nrf_802154_const.h:232
Definition: nrf_802154_types_internal.h:53
Structure with transmit request metadata for scheduling transmission at a specific time.
Definition: nrf_802154_types.h:451
Structure with transmit request metadata for transmission preceded by CSMA-CA procedure.
Definition: nrf_802154_types.h:463
Definition: nrf_802154_types_internal.h:42