nRF Connect SDK API 2.8.99
Loading...
Searching...
No Matches
esb.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef __ESB_H
8#define __ESB_H
9
10#include <stdbool.h>
11#include <errno.h>
12
13#include <nrf.h>
14#include <hal/nrf_radio.h>
15
16#include <zephyr/sys/util.h>
17#include <zephyr/types.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
36#define ESB_DEFAULT_CONFIG \
37 { \
38 .protocol = ESB_PROTOCOL_ESB_DPL, \
39 .mode = ESB_MODE_PTX, \
40 .event_handler = 0, \
41 .bitrate = ESB_BITRATE_2MBPS, \
42 .crc = ESB_CRC_16BIT, \
43 .tx_output_power = 0, \
44 .retransmit_delay = 600, \
45 .retransmit_count = 3, \
46 .tx_mode = ESB_TXMODE_AUTO, \
47 .payload_length = 32, \
48 .selective_auto_ack = false, \
49 .use_fast_ramp_up = false \
50 }
51
56#define ESB_LEGACY_CONFIG \
57 { \
58 .protocol = ESB_PROTOCOL_ESB, \
59 .mode = ESB_MODE_PTX, \
60 .event_handler = 0, \
61 .bitrate = ESB_BITRATE_2MBPS, \
62 .crc = ESB_CRC_8BIT, \
63 .tx_output_power = 0, \
64 .retransmit_delay = 600, \
65 .retransmit_count = 3, \
66 .tx_mode = ESB_TXMODE_AUTO, \
67 .payload_length = 32, \
68 .selective_auto_ack = false, \
69 .use_fast_ramp_up = false \
70 }
71
84#define ESB_CREATE_PAYLOAD(_pipe, ...) \
85 { \
86 .pipe = _pipe, \
87 .length = NUM_VA_ARGS_LESS_1(_pipe, __VA_ARGS__), \
88 .data = { \
89 __VA_ARGS__ \
90 } \
91 }
92
98
104
108 ESB_BITRATE_1MBPS = NRF_RADIO_MODE_NRF_1MBIT,
110 ESB_BITRATE_2MBPS = NRF_RADIO_MODE_NRF_2MBIT,
111
112#if defined(RADIO_MODE_MODE_Nrf_250Kbit)
114 ESB_BITRATE_250KBPS = NRF_RADIO_MODE_NRF_250KBIT,
115#endif /* defined(RADIO_MODE_MODE_Nrf_250Kbit) */
116
118 ESB_BITRATE_1MBPS_BLE = NRF_RADIO_MODE_BLE_1MBIT,
119
120#if defined(RADIO_MODE_MODE_Ble_2Mbit)
122 ESB_BITRATE_2MBPS_BLE = NRF_RADIO_MODE_BLE_2MBIT,
123#endif /* defined(RADIO_MODE_MODE_Ble_2Mbit) */
124
125#if defined(RADIO_MODE_MODE_Nrf_4Mbit0_5)
127 ESB_BITRATE_4MBPS = NRF_RADIO_MODE_NRF_4MBIT_H_0_5,
128#endif /* defined(RADIO_MODE_MODE_Nrf_4Mbit0_5) */
129
130#if defined(RADIO_MODE_MODE_Nrf_4Mbit_0BT6)
132 ESB_BITRATE_4MBPS = RADIO_MODE_MODE_Nrf_4Mbit_0BT6,
133#endif /* defined(RADIO_MODE_MODE_Nrf_4Mbit_0BT6) */
134};
135
138 ESB_CRC_16BIT = RADIO_CRCCNF_LEN_Two,
139 ESB_CRC_8BIT = RADIO_CRCCNF_LEN_One,
140 ESB_CRC_OFF = RADIO_CRCCNF_LEN_Disabled
142
145#if defined(RADIO_TXPOWER_TXPOWER_Pos10dBm) || defined(DOXYGEN)
147 ESB_TX_POWER_10DBM = RADIO_TXPOWER_TXPOWER_Pos10dBm,
148#endif
149#if defined(RADIO_TXPOWER_TXPOWER_Pos9dBm) || defined(DOXYGEN)
151 ESB_TX_POWER_9DBM = RADIO_TXPOWER_TXPOWER_Pos9dBm,
152#endif
153#if defined(RADIO_TXPOWER_TXPOWER_Pos8dBm) || defined(DOXYGEN)
155 ESB_TX_POWER_8DBM = RADIO_TXPOWER_TXPOWER_Pos8dBm,
156#endif
157#if defined(RADIO_TXPOWER_TXPOWER_Pos7dBm) || defined(DOXYGEN)
159 ESB_TX_POWER_7DBM = RADIO_TXPOWER_TXPOWER_Pos7dBm,
160#endif
161#if defined(RADIO_TXPOWER_TXPOWER_Pos6dBm) || defined(DOXYGEN)
163 ESB_TX_POWER_6DBM = RADIO_TXPOWER_TXPOWER_Pos6dBm,
164#endif
165#if defined(RADIO_TXPOWER_TXPOWER_Pos5dBm) || defined(DOXYGEN)
167 ESB_TX_POWER_5DBM = RADIO_TXPOWER_TXPOWER_Pos5dBm,
168#endif
169#if defined(RADIO_TXPOWER_TXPOWER_Pos4dBm) || defined(DOXYGEN)
171 ESB_TX_POWER_4DBM = RADIO_TXPOWER_TXPOWER_Pos4dBm,
172#endif
173#if defined(RADIO_TXPOWER_TXPOWER_Pos3dBm) || defined(DOXYGEN)
175 ESB_TX_POWER_3DBM = RADIO_TXPOWER_TXPOWER_Pos3dBm,
176#endif
177#if defined(RADIO_TXPOWER_TXPOWER_Pos2dBm) || defined(DOXYGEN)
179 ESB_TX_POWER_2DBM = RADIO_TXPOWER_TXPOWER_Pos2dBm,
180#endif
181#if defined(RADIO_TXPOWER_TXPOWER_Pos1dBm) || defined(DOXYGEN)
183 ESB_TX_POWER_1DBM = RADIO_TXPOWER_TXPOWER_Pos1dBm,
184#endif
185#if defined(RADIO_TXPOWER_TXPOWER_0dBm) || defined(DOXYGEN)
187 ESB_TX_POWER_0DBM = RADIO_TXPOWER_TXPOWER_0dBm,
188#endif
189#if defined(RADIO_TXPOWER_TXPOWER_Neg1dBm) || defined(DOXYGEN)
191 ESB_TX_POWER_NEG1DBM = RADIO_TXPOWER_TXPOWER_Neg1dBm,
192#endif
193#if defined(RADIO_TXPOWER_TXPOWER_Neg2dBm) || defined(DOXYGEN)
195 ESB_TX_POWER_NEG2DBM = RADIO_TXPOWER_TXPOWER_Neg2dBm,
196#endif
197#if defined(RADIO_TXPOWER_TXPOWER_Neg3dBm) || defined(DOXYGEN)
199 ESB_TX_POWER_NEG3DBM = RADIO_TXPOWER_TXPOWER_Neg3dBm,
200#endif
201#if defined(RADIO_TXPOWER_TXPOWER_Neg4dBm) || defined(DOXYGEN)
203 ESB_TX_POWER_NEG4DBM = RADIO_TXPOWER_TXPOWER_Neg4dBm,
204#endif
205#if defined(RADIO_TXPOWER_TXPOWER_Neg5dBm) || defined(DOXYGEN)
207 ESB_TX_POWER_NEG5DBM = RADIO_TXPOWER_TXPOWER_Neg5dBm,
208#endif
209#if defined(RADIO_TXPOWER_TXPOWER_Neg6dBm) || defined(DOXYGEN)
211 ESB_TX_POWER_NEG6DBM = RADIO_TXPOWER_TXPOWER_Neg6dBm,
212#endif
213#if defined(RADIO_TXPOWER_TXPOWER_Neg7dBm) || defined(DOXYGEN)
215 ESB_TX_POWER_NEG7DBM = RADIO_TXPOWER_TXPOWER_Neg7dBm,
216#endif
217#if defined(RADIO_TXPOWER_TXPOWER_Neg8dBm) || defined(DOXYGEN)
219 ESB_TX_POWER_NEG8DBM = RADIO_TXPOWER_TXPOWER_Neg8dBm,
220#endif
221#if defined(RADIO_TXPOWER_TXPOWER_Neg9dBm) || defined(DOXYGEN)
223 ESB_TX_POWER_NEG9DBM = RADIO_TXPOWER_TXPOWER_Neg9dBm,
224#endif
225#if defined(RADIO_TXPOWER_TXPOWER_Neg10dBm) || defined(DOXYGEN)
227 ESB_TX_POWER_NEG10DBM = RADIO_TXPOWER_TXPOWER_Neg10dBm,
228#endif
229#if defined(RADIO_TXPOWER_TXPOWER_Neg12dBm) || defined(DOXYGEN)
231 ESB_TX_POWER_NEG12DBM = RADIO_TXPOWER_TXPOWER_Neg12dBm,
232#endif
233#if defined(RADIO_TXPOWER_TXPOWER_Neg14dBm) || defined(DOXYGEN)
235 ESB_TX_POWER_NEG14DBM = RADIO_TXPOWER_TXPOWER_Neg14dBm,
236#endif
237#if defined(RADIO_TXPOWER_TXPOWER_Neg16dBm) || defined(DOXYGEN)
239 ESB_TX_POWER_NEG16DBM = RADIO_TXPOWER_TXPOWER_Neg16dBm,
240#endif
241#if defined(RADIO_TXPOWER_TXPOWER_Neg20dBm) || defined(DOXYGEN)
243 ESB_TX_POWER_NEG20DBM = RADIO_TXPOWER_TXPOWER_Neg20dBm,
244#endif
245#if defined(RADIO_TXPOWER_TXPOWER_Neg26dBm) || defined(DOXYGEN)
247 ESB_TX_POWER_NEG26DBM = RADIO_TXPOWER_TXPOWER_Neg26dBm,
248#endif
249#if defined(RADIO_TXPOWER_TXPOWER_Neg30dBm) || defined(DOXYGEN)
251 ESB_TX_POWER_NEG30DBM = RADIO_TXPOWER_TXPOWER_Neg30dBm,
252#endif
253#if defined(RADIO_TXPOWER_TXPOWER_Neg40dBm) || defined(DOXYGEN)
255 ESB_TX_POWER_NEG40DBM = RADIO_TXPOWER_TXPOWER_Neg40dBm,
256#endif
257#if defined(RADIO_TXPOWER_TXPOWER_Neg46dBm) || defined(DOXYGEN)
259 ESB_TX_POWER_NEG46DBM = RADIO_TXPOWER_TXPOWER_Neg46dBm,
260#endif
261#if defined(RADIO_TXPOWER_TXPOWER_Neg70dBm) || defined(DOXYGEN)
263 ESB_TX_POWER_NEG70DBM = RADIO_TXPOWER_TXPOWER_Neg70dBm,
264#endif
265};
266
283
290
297 uint8_t length;
298 uint8_t pipe;
299 int8_t rssi;
300 uint8_t noack;
304 uint8_t pid;
305 uint8_t data[CONFIG_ESB_MAX_PAYLOAD_LENGTH];
306};
307
309struct esb_evt {
311 uint32_t tx_attempts;
312};
313
315typedef void (*esb_event_handler)(const struct esb_evt *event);
316
360
367int esb_init(const struct esb_config *config);
368
377int esb_suspend(void);
378
387void esb_disable(void);
388
393bool esb_is_idle(void);
394
407int esb_write_payload(const struct esb_payload *payload);
408
416int esb_read_rx_payload(struct esb_payload *payload);
417
423int esb_start_tx(void);
424
430int esb_start_rx(void);
431
437int esb_stop_rx(void);
438
446int esb_flush_tx(void);
447
453int esb_pop_tx(void);
454
459bool esb_tx_full(void);
460
466int esb_flush_rx(void);
467
475int esb_set_address_length(uint8_t length);
476
484int esb_set_base_address_0(const uint8_t *addr);
485
493int esb_set_base_address_1(const uint8_t *addr);
494
507int esb_set_prefixes(const uint8_t *prefixes, uint8_t num_pipes);
508
522int esb_enable_pipes(uint8_t enable_mask);
523
532int esb_update_prefix(uint8_t pipe, uint8_t prefix);
533
546int esb_set_rf_channel(uint32_t channel);
547
555int esb_get_rf_channel(uint32_t *channel);
556
565int esb_set_tx_power(int8_t tx_output_power);
566
574int esb_set_retransmit_delay(uint16_t delay);
575
587int esb_set_retransmit_count(uint16_t count);
588
596int esb_set_bitrate(enum esb_bitrate bitrate);
597
610int esb_reuse_pid(uint8_t pipe);
611
614#ifdef __cplusplus
615}
616#endif
617
618#endif /* ESB */
int esb_set_retransmit_delay(uint16_t delay)
Set the packet retransmit delay.
esb_mode
Enhanced ShockBurst modes.
Definition esb.h:100
@ ESB_MODE_PTX
Definition esb.h:101
@ ESB_MODE_PRX
Definition esb.h:102
int esb_start_rx(void)
Start receiving data.
int esb_set_base_address_0(const uint8_t *addr)
Set the base address for pipe 0.
int esb_read_rx_payload(struct esb_payload *payload)
Read a payload.
int esb_set_prefixes(const uint8_t *prefixes, uint8_t num_pipes)
Set the number of pipes and the pipe prefix addresses.
int esb_start_tx(void)
Start transmitting data.
esb_tx_mode
Enhanced ShockBurst transmission modes.
Definition esb.h:268
@ ESB_TXMODE_MANUAL
Definition esb.h:276
@ ESB_TXMODE_AUTO
Definition esb.h:272
@ ESB_TXMODE_MANUAL_START
Definition esb.h:281
int esb_stop_rx(void)
Stop data reception.
esb_crc
Enhanced ShockBurst CRC modes.
Definition esb.h:137
@ ESB_CRC_OFF
Definition esb.h:140
@ ESB_CRC_16BIT
Definition esb.h:138
@ ESB_CRC_8BIT
Definition esb.h:139
esb_evt_id
Enhanced ShockBurst event IDs.
Definition esb.h:285
@ ESB_EVENT_TX_SUCCESS
Definition esb.h:286
@ ESB_EVENT_TX_FAILED
Definition esb.h:287
@ ESB_EVENT_RX_RECEIVED
Definition esb.h:288
int esb_update_prefix(uint8_t pipe, uint8_t prefix)
Update pipe prefix.
int esb_set_tx_power(int8_t tx_output_power)
Set the radio output power.
int esb_set_address_length(uint8_t length)
Set the length of the address.
esb_bitrate
Enhanced ShockBurst bitrate modes.
Definition esb.h:106
@ ESB_BITRATE_1MBPS
Definition esb.h:108
@ ESB_BITRATE_1MBPS_BLE
Definition esb.h:118
@ ESB_BITRATE_2MBPS
Definition esb.h:110
@ ESB_BITRATE_250KBPS
Definition esb.h:114
int esb_write_payload(const struct esb_payload *payload)
Write a payload for transmission or acknowledgement.
int esb_set_rf_channel(uint32_t channel)
Set the channel to use for the radio.
int esb_set_bitrate(enum esb_bitrate bitrate)
Set the radio bitrate.
void(* esb_event_handler)(const struct esb_evt *event)
Event handler prototype.
Definition esb.h:315
esb_tx_power
Enhanced ShockBurst radio transmission power modes.
Definition esb.h:144
bool esb_tx_full(void)
Check if there is some free space left in TX FIFO.
int esb_reuse_pid(uint8_t pipe)
Reuse a packet ID for a specific pipe.
int esb_set_retransmit_count(uint16_t count)
Set the number of retransmission attempts.
int esb_suspend(void)
Suspend the Enhanced ShockBurst module.
int esb_flush_tx(void)
Flush the TX buffer.
bool esb_is_idle(void)
Check if the Enhanced ShockBurst module is idle.
int esb_pop_tx(void)
Pop the first item from the TX buffer.
esb_protocol
Enhanced ShockBurst protocols.
Definition esb.h:94
@ ESB_PROTOCOL_ESB
Definition esb.h:95
@ ESB_PROTOCOL_ESB_DPL
Definition esb.h:96
int esb_flush_rx(void)
Flush the RX buffer.
int esb_get_rf_channel(uint32_t *channel)
Get the current radio channel.
void esb_disable(void)
Disable the Enhanced ShockBurst module.
int esb_set_base_address_1(const uint8_t *addr)
Set the base address for pipe 1 to pipe 7.
int esb_init(const struct esb_config *config)
Initialize the Enhanced ShockBurst module.
int esb_enable_pipes(uint8_t enable_mask)
Enable select pipes.
uint8_t payload_length
Definition esb.h:342
esb_event_handler event_handler
Definition esb.h:321
int8_t tx_output_power
Definition esb.h:325
enum esb_protocol protocol
Definition esb.h:319
bool selective_auto_ack
Definition esb.h:345
enum esb_bitrate bitrate
Definition esb.h:323
uint16_t retransmit_delay
Definition esb.h:327
enum esb_crc crc
Definition esb.h:324
enum esb_mode mode
Definition esb.h:320
uint16_t retransmit_count
Definition esb.h:335
enum esb_tx_mode tx_mode
Definition esb.h:340
bool use_fast_ramp_up
Definition esb.h:350
Main configuration structure for the module.
Definition esb.h:318
uint32_t tx_attempts
Definition esb.h:311
enum esb_evt_id evt_id
Definition esb.h:310
Enhanced ShockBurst event.
Definition esb.h:309
uint8_t noack
Definition esb.h:300
uint8_t data[CONFIG_ESB_MAX_PAYLOAD_LENGTH]
Definition esb.h:305
uint8_t pid
Definition esb.h:304
uint8_t length
Definition esb.h:297
int8_t rssi
Definition esb.h:299
uint8_t pipe
Definition esb.h:298
Enhanced ShockBurst payload.
Definition esb.h:296