Loading...
Searching...
No Matches
cc2420.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Freie Universität Berlin
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser General
5 * Public License v2.1. See the file LICENSE in the top level directory for more
6 * details.
7 */
8
9#pragma once
10
23#include <stdint.h>
24
25#include "periph/spi.h"
26#include "periph/gpio.h"
27
28#include "net/netdev.h"
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
38#define CC2420_PKT_MAXLEN (IEEE802154_FRAME_LEN_MAX)
39
44#define CC2420_CHAN_MIN (IEEE802154_CHANNEL_MIN)
45#define CC2420_CHAN_MAX (IEEE802154_CHANNEL_MAX)
46#define CC2420_CHAN_DEFAULT (CONFIG_IEEE802154_DEFAULT_CHANNEL)
53#define CC2420_TXPOWER_MIN (-25)
54#define CC2420_TXPOWER_MAX (0)
55#define CC2420_TXPOWER_DEFAULT (CONFIG_IEEE802154_DEFAULT_TXPOWER)
61#define CC2420_RSSI_OFFSET (-45)
62
66enum {
67 CC2420_RET_CHAN_OK = 2,
68};
69
84
88typedef struct {
89 /* netdev fields */
91 /* device specific fields */
93 /* device state fields */
94 uint8_t state;
95 uint16_t options;
96} cc2420_t;
97
106void cc2420_setup(cc2420_t *dev, const cc2420_params_t *params, uint8_t index);
107
117
126
136
143void cc2420_get_addr_short(cc2420_t *dev, uint8_t *addr);
144
151void cc2420_set_addr_short(cc2420_t *dev, const uint8_t *addr);
152
159void cc2420_get_addr_long(cc2420_t *dev, uint8_t *addr_long);
160
167void cc2420_set_addr_long(cc2420_t *dev, const uint8_t *addr_long);
168
177
184void cc2420_set_pan(cc2420_t *dev, uint16_t pan);
185
194
201int cc2420_set_chan(cc2420_t *dev, uint16_t chan);
202
211
223void cc2420_set_txpower(cc2420_t *dev, int16_t txpower);
224
232int cc2420_set_option(cc2420_t *dev, uint16_t option, bool state);
233
241
250
262size_t cc2420_send(cc2420_t *dev, const iolist_t *iolist);
263
274
281
293int cc2420_rx(cc2420_t *dev, uint8_t *buf, size_t max_len, void *info);
294
295#ifdef __cplusplus
296}
297#endif
298
spi_clk_t
SPI clock type.
Definition periph_cpu.h:352
Definitions for netdev common IEEE 802.15.4 code.
Definitions low-level network driver interface.
Low-level GPIO peripheral driver interface definitions.
void cc2420_get_addr_short(cc2420_t *dev, uint8_t *addr)
Get the short address of the given device.
void cc2420_set_pan(cc2420_t *dev, uint16_t pan)
Set the PAN ID of the given device.
int16_t cc2420_get_txpower(cc2420_t *dev)
Get the configured transmission power of the given device [in dBm].
void cc2420_set_txpower(cc2420_t *dev, int16_t txpower)
Set the transmission power of the given device [in dBm].
int cc2420_rx(cc2420_t *dev, uint8_t *buf, size_t max_len, void *info)
Read a chunk of data from the receive buffer of the given device.
int cc2420_set_option(cc2420_t *dev, uint16_t option, bool state)
Enable or disable driver specific options.
void cc2420_set_addr_long(cc2420_t *dev, const uint8_t *addr_long)
Set the long address of the given device.
void cc2420_setup(cc2420_t *dev, const cc2420_params_t *params, uint8_t index)
Setup the device descriptor for the given device.
uint16_t cc2420_get_chan(cc2420_t *dev)
Get the configured channel of the given device.
struct cc2420_params cc2420_params_t
Struct holding all parameters needed for device initialization.
bool cc2420_cca(cc2420_t *dev)
Trigger a clear channel assessment.
size_t cc2420_tx_prepare(cc2420_t *dev, const iolist_t *iolist)
Prepare for sending of data.
int cc2420_init(cc2420_t *dev)
Initialize a given CC2420 device.
void cc2420_tx_exec(cc2420_t *dev)
Trigger sending of data previously loaded into transmit buffer.
netopt_state_t cc2420_get_state(cc2420_t *dev)
Get the state of the given device.
void cc2420_get_addr_long(cc2420_t *dev, uint8_t *addr_long)
Get the configured long address of the given device.
uint16_t cc2420_get_pan(cc2420_t *dev)
Get the configured PAN ID of the given device.
void cc2420_set_addr_short(cc2420_t *dev, const uint8_t *addr)
Set the short address of the given device.
int cc2420_reset(cc2420_t *dev)
Trigger a hardware reset and configure radio with default values.
int cc2420_set_chan(cc2420_t *dev, uint16_t chan)
Set the channel of the given device.
int cc2420_set_state(cc2420_t *dev, netopt_state_t state)
Set the state of the given device (trigger a state change)
size_t cc2420_send(cc2420_t *dev, const iolist_t *iolist)
Convenience function for simply sending data.
uint16_t gpio_t
GPIO type identifier.
Definition periph_cpu.h:117
netopt_state_t
Option parameter to be used with NETOPT_STATE to set or get the state of a network device or protocol...
Definition netopt.h:894
Low-level SPI peripheral driver interface definition.
Struct holding all parameters needed for device initialization.
Definition cc2420.h:73
gpio_t pin_cca
pin connected to CCA
Definition cc2420.h:79
gpio_t pin_reset
pin connected to the reset pin
Definition cc2420.h:82
spi_clk_t spi_clk
SPI speed to use.
Definition cc2420.h:75
gpio_t pin_fifo
pin connected to the FIFO interrupt pin
Definition cc2420.h:77
gpio_t pin_cs
pin connected to chip select
Definition cc2420.h:76
gpio_t pin_vrefen
pin connected to the Vref enable pin
Definition cc2420.h:81
gpio_t pin_fifop
pin connected to the FIFOP interrupt pin
Definition cc2420.h:78
spi_t spi
SPI bus the device is connected to.
Definition cc2420.h:74
gpio_t pin_sfd
pin connected to 'start of frame delimiter'
Definition cc2420.h:80
Device descriptor for CC2420 radio devices.
Definition cc2420.h:88
uint16_t options
state of used options
Definition cc2420.h:95
cc2420_params_t params
hardware interface configuration
Definition cc2420.h:92
uint8_t state
current state of the radio
Definition cc2420.h:94
netdev_ieee802154_t netdev
netdev parent struct
Definition cc2420.h:90
iolist structure definition
Definition iolist.h:39
Extended structure to hold IEEE 802.15.4 driver state.
Definition ieee802154.h:100