Loading...
Searching...
No Matches
xbee.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2014 INRIA
3 * Copyright (C) 2015-2016 Freie Universität Berlin
4 *
5 * This file is subject to the terms and conditions of the GNU Lesser
6 * General Public License v2.1. See the file LICENSE in the top level
7 * directory for more details.
8 */
9
10#pragma once
11
25#include <stdint.h>
26
27#include "mutex.h"
28#include "periph/uart.h"
29#include "periph/gpio.h"
30#include "net/netdev.h"
31#include "net/ieee802154.h"
32#include "net/gnrc/nettype.h"
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
41#ifdef MODULE_XBEE_ENCRYPTION
42#define XBEE_MAX_PAYLOAD_LENGTH (95U)
43#else
44#define XBEE_MAX_PAYLOAD_LENGTH (100U)
45#endif
46
50#define XBEE_MAX_PKT_LENGTH (115U)
51
55#define XBEE_MAX_RESP_LENGTH (16U)
56
60#define XBEE_MAX_TXHDR_LENGTH (14U)
61
65#ifdef MODULE_GNRC_SIXLOWPAN
66#define XBEE_DEFAULT_PROTOCOL (GNRC_NETTYPE_SIXLOWPAN)
67#else
68#define XBEE_DEFAULT_PROTOCOL (GNRC_NETTYPE_UNDEF)
69#endif
70
74#define XBEE_DEFAULT_PANID (CONFIG_IEEE802154_DEFAULT_PANID)
75
79#define XBEE_DEFAULT_CHANNEL (CONFIG_IEEE802154_DEFAULT_CHANNEL)
80
89#define XBEE_ADDR_FLAGS_LONG (0x80)
111
123
127typedef struct {
128 /* netdev fields */
129 const struct netdev_driver *driver;
131 void* context;
132 /* device driver specific fields */
134 uint8_t options;
135 uint8_t addr_flags;
136 uint8_t addr_short[2];
138 /* general variables for the UART RX state machine */
140 uint16_t int_size;
142 /* values for the UART TX state machine */
145 uint8_t cmd_buf[XBEE_MAX_RESP_LENGTH];
146 uint8_t tx_fid;
147 /* buffer and synchronization for command responses */
150 uint8_t resp_buf[XBEE_MAX_RESP_LENGTH];
151 uint16_t resp_count;
152 uint16_t resp_limit;
153 /* buffer and synchronization for incoming network packets */
154 uint8_t rx_buf[XBEE_MAX_PKT_LENGTH];
155 uint16_t rx_count;
156 uint16_t rx_limit;
157} xbee_t;
158
162typedef struct {
163 uint8_t addr_len;
164 uint8_t bcast;
165 uint8_t rssi;
166 uint8_t src_addr[8];
167 uint8_t dst_addr[8];
169
173extern const netdev_driver_t xbee_driver;
174
181void xbee_setup(xbee_t *dev, const xbee_params_t *params);
182
197int xbee_build_hdr(xbee_t *dev, uint8_t *xhdr, size_t payload_len,
198 void *dst_addr, size_t addr_len);
199
210int xbee_parse_hdr(xbee_t *dev, const uint8_t *xhdr, xbee_l2hdr_t *l2hdr);
211
212#ifdef __cplusplus
213}
214#endif
215
Definitions low-level network driver interface.
Low-level GPIO peripheral driver interface definitions.
Low-level UART peripheral driver interface definition.
void(* netdev_event_cb_t)(netdev_t *dev, netdev_event_t event)
Event callback for signaling event to upper layers.
Definition netdev.h:296
uint16_t gpio_t
GPIO type identifier.
Definition periph_cpu.h:117
uint_fast8_t uart_t
Define default UART type identifier.
Definition uart.h:84
int xbee_parse_hdr(xbee_t *dev, const uint8_t *xhdr, xbee_l2hdr_t *l2hdr)
Extract IEEE802.15.4 L2 header information from the XBee header.
#define XBEE_MAX_RESP_LENGTH
Maximum length of a command response.
Definition xbee.h:55
#define XBEE_MAX_PKT_LENGTH
Maximum packet length, including XBee API frame overhead.
Definition xbee.h:50
xbee_rx_state_t
States of the internal FSM for handling incoming UART frames.
Definition xbee.h:99
int xbee_build_hdr(xbee_t *dev, uint8_t *xhdr, size_t payload_len, void *dst_addr, size_t addr_len)
Put together the internal proprietary XBee header.
const netdev_driver_t xbee_driver
Reference to the XBee driver interface.
void xbee_setup(xbee_t *dev, const xbee_params_t *params)
Prepare the given Xbee device.
@ XBEE_INT_STATE_SIZE1
waiting for the first byte (MSB) of the frame size field
Definition xbee.h:101
@ XBEE_INT_STATE_TYPE
waiting for the frame type field
Definition xbee.h:105
@ XBEE_INT_STATE_SIZE2
waiting for the second byte (LSB) of the frame size field
Definition xbee.h:103
@ XBEE_INT_STATE_RX
handling incoming data when receiving radio packets
Definition xbee.h:108
@ XBEE_INT_STATE_RESP
handling incoming data for AT command responses
Definition xbee.h:106
@ XBEE_INT_STATE_IDLE
waiting for the beginning of a new frame
Definition xbee.h:100
Mutex for thread synchronization.
Protocol type definitions.
Mutex structure.
Definition mutex.h:39
Structure to hold driver interface -> function mapping.
Definition netdev.h:425
Data structure for extraction L2 information of received packets.
Definition xbee.h:162
uint8_t rssi
RSSI value.
Definition xbee.h:165
uint8_t bcast
0 := unicast, 1:=broadcast
Definition xbee.h:164
uint8_t addr_len
L2 address length (SRC and DST)
Definition xbee.h:163
Configuration parameters for XBee devices.
Definition xbee.h:115
gpio_t pin_sleep
GPIO pin that is connected to the SLEEP pin set to GPIO_UNDEF if not used.
Definition xbee.h:118
uint32_t br
baudrate to use
Definition xbee.h:117
uart_t uart
UART interfaced the device is connected to.
Definition xbee.h:116
gpio_t pin_reset
GPIO pin that is connected to the STATUS pin set to GPIO_UNDEF if not used.
Definition xbee.h:120
XBee device descriptor.
Definition xbee.h:127
uint16_t resp_limit
size RESP frame in transferred
Definition xbee.h:152
uint8_t options
options field
Definition xbee.h:134
xbee_params_t p
configuration parameters
Definition xbee.h:133
uint8_t tx_fid
TX frame ID.
Definition xbee.h:146
netdev_event_cb_t event_callback
callback for device events
Definition xbee.h:130
mutex_t resp_lock
mutex for waiting for AT command response frames
Definition xbee.h:148
xbee_rx_state_t int_state
current state if the UART RX FSM
Definition xbee.h:139
void * context
ptr to network stack context
Definition xbee.h:131
const struct netdev_driver * driver
ptr to that driver's interface.
Definition xbee.h:129
uint16_t resp_count
counter for ongoing transmission
Definition xbee.h:151
eui64_t addr_long
own 802.15.4 long address
Definition xbee.h:137
mutex_t tx_lock
mutex to allow only one transmission at a time
Definition xbee.h:143
uint8_t addr_flags
address flags as defined above
Definition xbee.h:135
uint16_t rx_count
counter for ongoing transmission
Definition xbee.h:155
uint16_t rx_limit
size RX frame transferred
Definition xbee.h:156
uint16_t int_size
temporary space for parsing the frame size
Definition xbee.h:140
IEEE 802.15.4 header definitions.
Data type to represent an EUI-64.
Definition eui64.h:55