Loading...
Searching...
No Matches
nrf24l01p_ng.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Otto-von-Guericke-Universität Magdeburg
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
21
22#include <stdint.h>
23
24#include "board.h"
25#include "kernel_defines.h"
26#include "net/gnrc/nettype.h"
27#include "net/netdev.h"
28#include "periph/gpio.h"
29#include "periph/spi.h"
30
31#include "nrf24l01p_ng_types.h"
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
40#define NRF24L01P_NG_MIN_ADDR_WIDTH (3)
41
45#define NRF24L01P_NG_MAX_ADDR_WIDTH (5)
46
51#ifndef NRF24L01P_NG_ADDR_WIDTH
52#define NRF24L01P_NG_ADDR_WIDTH NRF24L01P_NG_MAX_ADDR_WIDTH
53#elif (NRF24L01P_NG_ADDR_WIDTH < NRF24L01P_NG_MIN_ADDR_WIDTH) || \
54 (NRF24L01P_NG_ADDR_WIDTH > NRF24L01P_NG_MAX_ADDR_WIDTH)
55#error "NRF24L01P_NG_ADDR_WIDTH must be within [3, 5]"
56#endif
57
63#define NRF24L01P_NG_BROADCAST_ADDR { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }
64
68#define NRF24L01P_NG_ADDR_P0(dev) ((dev)->arxaddr.rx_addr_long[NRF24L01P_NG_P0])
69
73#define NRF24L01P_NG_ADDR_P1(dev) ((dev)->arxaddr.rx_addr_long[NRF24L01P_NG_P1])
74
81#define NRF24L01P_NG_ADDR_PX_LSB(dev, pipe) ((dev)->arxaddr.rx_addr_short[(pipe) - 2])
82
86typedef struct __attribute__((packed)) {
90 uint8_t : 1;
94 uint8_t cfg_channel : 7;
98 uint8_t : 2;
103 uint8_t cfg_crc : 2;
108 uint8_t cfg_tx_power : 2;
113 uint8_t cfg_data_rate : 2;
117 uint8_t cfg_max_retr : 4;
122 uint8_t cfg_retr_delay : 4;
124
136
176
191 const nrf24l01p_ng_params_t *params,
192 uint8_t index);
193
211 bool enable);
212
224 bool* enable);
225
237 nrf24l01p_ng_rfdr_t data_rate);
238
248 nrf24l01p_ng_rfdr_t *data_rate);
249
262
272 nrf24l01p_ng_crc_t *crc);
273
286
297
308int nrf24l01p_ng_set_channel(nrf24l01p_ng_t *dev, uint8_t channel);
309
318
336int nrf24l01p_ng_set_rx_address(nrf24l01p_ng_t *dev, const uint8_t *addr,
338
351int nrf24l01p_ng_get_rx_address(const nrf24l01p_ng_t *dev, uint8_t *addr,
353
366
375
388 nrf24l01p_ng_ard_t rt_delay);
389
399 nrf24l01p_ng_ard_t *rt_delay);
400
415
424
434void nrf24l01p_ng_eui_get(const netdev_t *dev, uint8_t *eui);
435
436#if IS_USED(MODULE_NRF24L01P_NG_DIAGNOSTICS)
444const char *
445nrf24l01p_ng_diagnostics_state_to_string(nrf24l01p_ng_state_t state);
446
455nrf24l01p_ng_diagnostics_string_to_state(const char *sstate);
456
462void nrf24l01p_ng_print_all_regs(nrf24l01p_ng_t *dev);
463
469void nrf24l01p_ng_print_dev_info(const nrf24l01p_ng_t *dev);
470#endif
471
472#ifdef __cplusplus
473}
474#endif
475
spi_clk_t
Definition periph_cpu.h:348
Definitions low-level network driver interface.
Low-level GPIO peripheral driver interface definitions.
struct netdev netdev_t
Forward declaration for netdev struct.
Definition netdev.h:285
int nrf24l01p_ng_set_retransm_delay(nrf24l01p_ng_t *dev, nrf24l01p_ng_ard_t rt_delay)
Set retransmission delay for ESB.
int nrf24l01p_ng_set_tx_power(nrf24l01p_ng_t *dev, nrf24l01p_ng_tx_power_t power)
Configure Tx trasceiver power.
uint8_t nrf24l01p_ng_get_max_retransm(const nrf24l01p_ng_t *dev)
Get currently configured number of maximum retransmissions for ESB.
int nrf24l01p_ng_get_enable_pipe(nrf24l01p_ng_t *dev, nrf24l01p_ng_pipe_t pipe, bool *enable)
Query if data pipe pipe is enabled.
int nrf24l01p_ng_set_crc(nrf24l01p_ng_t *dev, nrf24l01p_ng_crc_t crc)
Configure CRC length.
#define NRF24L01P_NG_ADDR_WIDTH
Pass the compiler a definition of NRF24L01P_NG_ADDR_WIDTH to configure the layer-2 address width of t...
uint8_t nrf24l01p_ng_get_crc(const nrf24l01p_ng_t *dev, nrf24l01p_ng_crc_t *crc)
Get currently configured CRC length.
int nrf24l01p_ng_setup(nrf24l01p_ng_t *dev, const nrf24l01p_ng_params_t *params, uint8_t index)
Setup the NRF24L01+ driver, but perform no initialization.
int nrf24l01p_ng_set_channel(nrf24l01p_ng_t *dev, uint8_t channel)
Set transceiver channel.
int nrf24l01p_ng_set_state(nrf24l01p_ng_t *dev, nrf24l01p_ng_state_t state)
Put device into sleep mode(NRF24L01P_NG_STATE_POWER_DOWN), standby mode (NRF24L01P_NG_STATE_STANDBY_1...
uint8_t nrf24l01p_ng_get_channel(const nrf24l01p_ng_t *dev)
Get currently configured transceiver channel.
int nrf24l01p_ng_set_rx_address(nrf24l01p_ng_t *dev, const uint8_t *addr, nrf24l01p_ng_pipe_t pipe)
Set Rx address of a certain data pipe.
nrf24l01p_ng_state_t nrf24l01p_ng_get_state(const nrf24l01p_ng_t *dev)
Get current device state.
void nrf24l01p_ng_eui_get(const netdev_t *dev, uint8_t *eui)
Retrieve a unique layer-2 address for an nrf24l01p_ng instance.
int8_t nrf24l01p_ng_get_tx_power(const nrf24l01p_ng_t *dev, nrf24l01p_ng_tx_power_t *power)
Get currently configured Tx transceiver power.
int nrf24l01p_ng_set_max_retransm(nrf24l01p_ng_t *dev, uint8_t max_rt)
Configure maximum number of retransmissions for ESB.
uint16_t nrf24l01p_ng_get_retransm_delay(const nrf24l01p_ng_t *dev, nrf24l01p_ng_ard_t *rt_delay)
Get retransmission delay for ESB.
int nrf24l01p_ng_set_air_data_rate(nrf24l01p_ng_t *dev, nrf24l01p_ng_rfdr_t data_rate)
Configure air data rate.
int nrf24l01p_ng_set_enable_pipe(nrf24l01p_ng_t *dev, nrf24l01p_ng_pipe_t pipe, bool enable)
Enable or disable data pipe pipe.
uint16_t nrf24l01p_ng_get_air_data_rate(const nrf24l01p_ng_t *dev, nrf24l01p_ng_rfdr_t *data_rate)
Get currently configured data rate.
int nrf24l01p_ng_get_rx_address(const nrf24l01p_ng_t *dev, uint8_t *addr, nrf24l01p_ng_pipe_t pipe)
Get current Rx address of a certain data pipe.
Common macros and compiler attributes/pragmas configuration.
Protocol type definitions.
Definitions of user visible types for the NRF24L01+ (NG) device driver.
enum nrf24l01p_ng_rfdr nrf24l01p_ng_rfdr_t
Possible values to configure the data rate.
struct nrf24l01p_ng nrf24l01p_ng_t
typedef of forward declaration
enum nrf24l01p_ng_pipe nrf24l01p_ng_pipe_t
Enumeration of NRF24L01+ data pipes.
enum nrf24l01p_ng_ard nrf24l01p_ng_ard_t
Possible values to configure the retransmission delay in ESB.
enum nrf24l01p_ng_state nrf24l01p_ng_state_t
NRF24L01+ operation states.
enum nrf24l01p_ng_crc nrf24l01p_ng_crc_t
Possible values to configure the CRC length.
enum nrf24l01p_ng_tx_power nrf24l01p_ng_tx_power_t
Possible values to configure the radio power.
Low-level SPI peripheral driver interface definition.
Struct that holds all active configuration values.
uint8_t cfg_data_rate
Current data rate configuration value.
uint8_t cfg_tx_power
Current tx power configuration value.
uint8_t cfg_crc
Current CRC length configuration value.
uint8_t cfg_retr_delay
Current retransmission delay configuration value.
uint8_t cfg_channel
Current channel.
uint8_t cfg_max_retr
Current maximum number of retransmissions.
Struct of NRF24L01+ initialization parameters.
gpio_t pin_irq
NRF24L01+ IRQ gpio pin.
gpio_t pin_ce
NRF24L01+ chip enable gpio pin.
gpio_t pin_cs
SPI chip select gpio pin.
nrf24l01p_ng_cfg_t config
Current configuration values.
spi_clk_t spi_clk
SPI clock speed.
NRF24L01+ device struct.
nrf24l01p_ng_params_t params
Parameters.
struct nrf24l01p_ng::@211147155012355241111021233245215147336221336134 arxaddr
Rx addresses.
uint8_t rx_addr_short[4]
Array to access the addresses of pipe 2, pipe 3, pipe 4 and pipe 5 via pipe indices.
uint8_t state
Current operation state.
uint8_t rx_addr_long[2][NRF24L01P_NG_ADDR_WIDTH]
Array to access the addresses of pipe 0 and pipe 1 via pipe indices.
uint8_t idle_state
State to return to after sending.
netdev_t netdev
Netdev member.