Loading...
Searching...
No Matches
nrf24l01p_ng.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019 Otto-von-Guericke-Universität Magdeburg
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
24
25#include <stdint.h>
26
27#include "board.h"
28#include "kernel_defines.h"
29#include "net/gnrc/nettype.h"
30#include "net/netdev.h"
31#include "periph/gpio.h"
32#include "periph/spi.h"
33
34#include "nrf24l01p_ng_types.h"
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
43#define NRF24L01P_NG_MIN_ADDR_WIDTH (3)
44
48#define NRF24L01P_NG_MAX_ADDR_WIDTH (5)
49
54#ifndef NRF24L01P_NG_ADDR_WIDTH
55#define NRF24L01P_NG_ADDR_WIDTH NRF24L01P_NG_MAX_ADDR_WIDTH
56#elif (NRF24L01P_NG_ADDR_WIDTH < NRF24L01P_NG_MIN_ADDR_WIDTH) || \
57 (NRF24L01P_NG_ADDR_WIDTH > NRF24L01P_NG_MAX_ADDR_WIDTH)
58#error "NRF24L01P_NG_ADDR_WIDTH must be within [3, 5]"
59#endif
60
66#define NRF24L01P_NG_BROADCAST_ADDR { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }
67
71#define NRF24L01P_NG_ADDR_P0(dev) ((dev)->arxaddr.rx_addr_long[NRF24L01P_NG_P0])
72
76#define NRF24L01P_NG_ADDR_P1(dev) ((dev)->arxaddr.rx_addr_long[NRF24L01P_NG_P1])
77
84#define NRF24L01P_NG_ADDR_PX_LSB(dev, pipe) ((dev)->arxaddr.rx_addr_short[(pipe) - 2])
85
89typedef struct __attribute__((packed)) {
93 uint8_t : 1;
97 uint8_t cfg_channel : 7;
101 uint8_t : 2;
106 uint8_t cfg_crc : 2;
111 uint8_t cfg_tx_power : 2;
116 uint8_t cfg_data_rate : 2;
120 uint8_t cfg_max_retr : 4;
125 uint8_t cfg_retr_delay : 4;
127
139
179
194 const nrf24l01p_ng_params_t *params,
195 uint8_t index);
196
214 bool enable);
215
227 bool* enable);
228
240 nrf24l01p_ng_rfdr_t data_rate);
241
251 nrf24l01p_ng_rfdr_t *data_rate);
252
265
275 nrf24l01p_ng_crc_t *crc);
276
289
300
311int nrf24l01p_ng_set_channel(nrf24l01p_ng_t *dev, uint8_t channel);
312
321
339int nrf24l01p_ng_set_rx_address(nrf24l01p_ng_t *dev, const uint8_t *addr,
341
354int nrf24l01p_ng_get_rx_address(const nrf24l01p_ng_t *dev, uint8_t *addr,
356
369
378
391 nrf24l01p_ng_ard_t rt_delay);
392
402 nrf24l01p_ng_ard_t *rt_delay);
403
418
427
437void nrf24l01p_ng_eui_get(const netdev_t *dev, uint8_t *eui);
438
439#if IS_USED(MODULE_NRF24L01P_NG_DIAGNOSTICS)
447const char *
448nrf24l01p_ng_diagnostics_state_to_string(nrf24l01p_ng_state_t state);
449
458nrf24l01p_ng_diagnostics_string_to_state(const char *sstate);
459
465void nrf24l01p_ng_print_all_regs(nrf24l01p_ng_t *dev);
466
472void nrf24l01p_ng_print_dev_info(const nrf24l01p_ng_t *dev);
473#endif
474
475#ifdef __cplusplus
476}
477#endif
478
spi_clk_t
Definition periph_cpu.h:351
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:288
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.