radio.h
1 /*
2  * Copyright (C) 2020 HAW Hamburg
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 
22 #ifndef NET_IEEE802154_RADIO_H
23 #define NET_IEEE802154_RADIO_H
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 #include <stdbool.h>
30 #include "iolist.h"
31 #include "sys/uio.h"
32 #include "bitarithm.h"
33 #include "byteorder.h"
34 #include "net/eui64.h"
35 #include "net/ieee802154.h"
36 #include "errno.h"
37 
42 
48 typedef enum {
162 
166 #define IEEE802154_RF_CAPS_PHY_MASK \
167  (IEEE802154_CAP_PHY_BPSK \
168  | IEEE802154_CAP_PHY_ASK \
169  | IEEE802154_CAP_PHY_OQPSK \
170  | IEEE802154_CAP_PHY_MR_OQPSK \
171  | IEEE802154_CAP_PHY_MR_OFDM \
172  | IEEE802154_CAP_PHY_MR_FSK) \
173 
177 typedef enum {
211 
218 typedef enum {
225 
238 
247 
269 
286 
290 typedef enum {
327 
331 typedef enum {
337 
341 typedef enum {
367 
371 typedef struct {
372  uint8_t min;
373  uint8_t max;
375 
379 typedef struct {
386  uint8_t rssi;
387  uint8_t lqi;
389 
393 typedef struct {
395  int8_t retrans;
397 
401 typedef struct ieee802154_dev ieee802154_dev_t;
402 
409 typedef void (*ieee802154_cb_t)(ieee802154_dev_t *dev,
410  ieee802154_trx_ev_t status);
411 
423  void *priv;
428 };
429 
433 typedef enum {
451 
455 typedef struct {
457  uint16_t channel;
458  uint8_t page;
459  int8_t pow;
461 
465 typedef struct {
468  uint8_t rate_mode;
470 
474 typedef struct {
476  uint8_t option;
477  uint8_t scheme;
479 
483 typedef struct {
486  uint8_t mod_ord;
487  uint8_t mod_idx;
490 
494 typedef enum {
511 
512  /* add more as needed (e.g Energy Scanning, transmit slotted ACK) */
514 
525  const uint32_t caps;
526 
539  int (*write)(ieee802154_dev_t *dev, const iolist_t *psdu);
540 
554  int (*len)(ieee802154_dev_t *dev);
555 
579  int (*read)(ieee802154_dev_t *dev, void *buf, size_t size, ieee802154_rx_info_t *info);
592  int (*off)(ieee802154_dev_t *dev);
593 
608 
636 
652  int (*request_op)(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx);
653 
668  int (*confirm_op)(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx);
669 
681  int (*set_cca_threshold)(ieee802154_dev_t *dev, int8_t threshold);
682 
698 
719 
734  int (*set_frame_retrans)(ieee802154_dev_t *dev, uint8_t retrans);
735 
755  int8_t retries);
756 
769 
785  int (*config_addr_filter)(ieee802154_dev_t *dev, ieee802154_af_cmd_t cmd, const void *value);
786 
806  const void *value);
807 };
808 
817 static inline int ieee802154_radio_write(ieee802154_dev_t *dev, const iolist_t *psdu)
818 {
819  return dev->driver->write(dev, psdu);
820 }
821 
842 {
843  return dev->driver->request_op(dev, IEEE802154_HAL_OP_TRANSMIT, NULL);
844 }
845 
872  ieee802154_tx_info_t *info)
873 {
874  return dev->driver->confirm_op(dev, IEEE802154_HAL_OP_TRANSMIT, info);
875 }
876 
884 static inline int ieee802154_radio_len(ieee802154_dev_t *dev)
885 {
886  return dev->driver->len(dev);
887 }
888 
901  void *buf,
902  size_t size,
903  ieee802154_rx_info_t *info)
904 {
905  return dev->driver->read(dev, buf, size, info);
906 }
907 
917  int8_t threshold)
918 {
919  return dev->driver->set_cca_threshold(dev, threshold);
920 }
921 
932 {
933  return dev->driver->set_cca_mode(dev, mode);
934 }
935 
947  const ieee802154_phy_conf_t *conf)
948 {
949  return dev->driver->config_phy(dev, conf);
950 }
951 
965  const void *value)
966 {
967  return dev->driver->config_src_addr_match(dev, cmd, value);
968 }
969 
979 static inline int ieee802154_radio_off(ieee802154_dev_t *dev)
980 {
981  return dev->driver->off(dev);
982 }
983 
997  const void* value)
998 {
999  return dev->driver->config_addr_filter(dev, cmd, value);
1000 }
1001 
1014 {
1015  return dev->driver->set_frame_filter_mode(dev, mode);
1016 }
1017 
1031  uint8_t retrans)
1032 {
1033  return dev->driver->set_frame_retrans(dev, retrans);
1034 }
1035 
1051  const ieee802154_csma_be_t *bd,
1052  int8_t retries)
1053 {
1054  return dev->driver->set_csma_params(dev, bd, retries);
1055 }
1056 
1065 {
1066  return dev->driver->request_on(dev);
1067 }
1068 
1077 {
1078  return dev->driver->confirm_on(dev);
1079 }
1080 
1104 static inline int ieee802154_radio_request_set_idle(ieee802154_dev_t *dev, bool force)
1105 {
1106  return dev->driver->request_op(dev, IEEE802154_HAL_OP_SET_IDLE, &force);
1107 }
1108 
1123 {
1124  return dev->driver->confirm_op(dev, IEEE802154_HAL_OP_SET_IDLE, NULL);
1125 }
1126 
1148 {
1149  return dev->driver->request_op(dev, IEEE802154_HAL_OP_SET_RX, NULL);
1150 }
1151 
1166 {
1167  return dev->driver->confirm_op(dev, IEEE802154_HAL_OP_SET_RX, NULL);
1168 }
1169 
1187 static inline int ieee802154_radio_set_idle(ieee802154_dev_t *dev, bool force)
1188 {
1189  int res = ieee802154_radio_request_set_idle(dev, force);
1190  if (res < 0) {
1191  return res;
1192  }
1193  while (ieee802154_radio_confirm_set_idle(dev) == -EAGAIN) {}
1194 
1195  return 0;
1196 }
1197 
1214 {
1215  int res = ieee802154_radio_request_set_rx(dev);
1216  if (res < 0) {
1217  return res;
1218  }
1219  while (ieee802154_radio_confirm_set_rx(dev) == -EAGAIN) {}
1220 
1221  return 0;
1222 }
1223 
1241 {
1242  return dev->driver->request_op(dev, IEEE802154_HAL_OP_CCA, NULL);
1243 }
1244 
1268 {
1269  bool clear;
1270  int res = dev->driver->confirm_op(dev, IEEE802154_HAL_OP_CCA, &clear);
1271  if (res < 0) {
1272  return res;
1273  }
1274  return clear;
1275 }
1276 
1294 {
1295  int res = ieee802154_radio_request_cca(dev);
1296  if (res < 0) {
1297  return res;
1298  }
1299  while ((res = ieee802154_radio_confirm_cca(dev)) == -EAGAIN) {}
1300 
1301  return res;
1302 }
1303 
1316 {
1317  return (dev->driver->caps & IEEE802154_CAP_IRQ_ACK_TIMEOUT);
1318 }
1319 
1332 {
1333  return (dev->driver->caps & IEEE802154_CAP_FRAME_RETRANS);
1334 }
1335 
1348 {
1349  return (dev->driver->caps & IEEE802154_CAP_AUTO_CSMA);
1350 }
1351 
1364 {
1365  return (dev->driver->caps & IEEE802154_CAP_SUB_GHZ);
1366 }
1367 
1380 {
1381  return (dev->driver->caps & IEEE802154_CAP_24_GHZ);
1382 }
1383 
1396 {
1397  return (dev->driver->caps & IEEE802154_CAP_IRQ_TX_DONE);
1398 }
1399 
1412 {
1413  return (dev->driver->caps & IEEE802154_CAP_IRQ_RX_START);
1414 }
1415 
1428 {
1429  return (dev->driver->caps & IEEE802154_CAP_IRQ_TX_START);
1430 }
1431 
1444 {
1445  return (dev->driver->caps & IEEE802154_CAP_IRQ_CCA_DONE);
1446 }
1447 
1461  ieee802154_dev_t *dev)
1462 {
1464 }
1465 
1478 {
1479  return (dev->driver->caps & IEEE802154_CAP_PHY_BPSK);
1480 }
1481 
1494 {
1495  return (dev->driver->caps & IEEE802154_CAP_PHY_ASK);
1496 }
1497 
1510 {
1511  return (dev->driver->caps & IEEE802154_CAP_PHY_OQPSK);
1512 }
1513 
1526 {
1527  return (dev->driver->caps & IEEE802154_CAP_PHY_MR_OQPSK);
1528 }
1529 
1542 {
1543  return (dev->driver->caps & IEEE802154_CAP_PHY_MR_OFDM);
1544 }
1545 
1558 {
1559  return (dev->driver->caps & IEEE802154_CAP_PHY_MR_FSK);
1560 }
1561 
1573 {
1574  return (dev->driver->caps & IEEE802154_RF_CAPS_PHY_MASK);
1575 }
1576 
1587 static inline uint32_t ieee802154_phy_mode_to_cap(
1588  ieee802154_phy_mode_t phy_mode)
1589 {
1590  switch (phy_mode) {
1591  case IEEE802154_PHY_BPSK:
1592  return IEEE802154_CAP_PHY_BPSK;
1593  case IEEE802154_PHY_ASK:
1594  return IEEE802154_CAP_PHY_ASK;
1595  case IEEE802154_PHY_OQPSK:
1596  return IEEE802154_CAP_PHY_OQPSK;
1601  case IEEE802154_PHY_MR_FSK:
1603 
1605  default:
1606  break;
1607  }
1608 
1609  return 0;
1610 }
1611 
1624 {
1625  switch (cap) {
1627  return IEEE802154_PHY_BPSK;
1629  return IEEE802154_PHY_ASK;
1631  return IEEE802154_PHY_OQPSK;
1633  return IEEE802154_PHY_MR_OQPSK;
1635  return IEEE802154_PHY_MR_OFDM;
1637  return IEEE802154_PHY_MR_FSK;
1638 
1639  default:
1640  break;
1641  }
1642 
1643  return IEEE802154_PHY_DISABLED;
1644 }
1645 
1646 #ifdef __cplusplus
1647 }
1648 #endif
1649 
1650 #endif /* NET_IEEE802154_RADIO_H */
Helper functions for bit arithmetic.
#define BIT8
Bit 8 set define.
Definition: bitarithm.h:67
#define BIT17
Bit 17 set define.
Definition: bitarithm.h:80
#define BIT11
Bit 11 set define.
Definition: bitarithm.h:72
#define BIT9
Bit 9 set define.
Definition: bitarithm.h:68
#define BIT14
Bit 14 set define.
Definition: bitarithm.h:75
#define BIT18
Bit 18 set define.
Definition: bitarithm.h:81
#define BIT1
Bit 1 set define.
Definition: bitarithm.h:60
#define BIT16
Bit 16 set define.
Definition: bitarithm.h:79
#define BIT10
Bit 10 set define.
Definition: bitarithm.h:71
#define BIT3
Bit 3 set define.
Definition: bitarithm.h:62
#define BIT13
Bit 13 set define.
Definition: bitarithm.h:74
#define BIT2
Bit 2 set define.
Definition: bitarithm.h:61
#define BIT7
Bit 7 set define.
Definition: bitarithm.h:66
#define BIT4
Bit 4 set define.
Definition: bitarithm.h:63
#define BIT12
Bit 12 set define.
Definition: bitarithm.h:73
#define BIT6
Bit 6 set define.
Definition: bitarithm.h:65
#define BIT0
Bit 0 set define.
Definition: bitarithm.h:59
#define BIT15
Bit 15 set define.
Definition: bitarithm.h:76
#define BIT5
Bit 5 set define.
Definition: bitarithm.h:64
Functions to work with different byte orders.
EUI-64 data type definition.
#define EAGAIN
Resource unavailable, try again (may be the same value as [EWOULDBLOCK]).
Definition: errno.h:75
static int ieee802154_radio_confirm_on(ieee802154_dev_t *dev)
Shortcut to ieee802154_radio_ops::confirm_on.
Definition: radio.h:1076
static int ieee802154_radio_cca(ieee802154_dev_t *dev)
Perform a Clear Channel Assessment (blocking)
Definition: radio.h:1293
static bool ieee802154_radio_has_irq_tx_done(ieee802154_dev_t *dev)
Check if the device supports TX done interrupt.
Definition: radio.h:1395
static bool ieee802154_radio_has_phy_ask(ieee802154_dev_t *dev)
Check if the device supports the ASK PHY mode.
Definition: radio.h:1493
static int ieee802154_radio_set_idle(ieee802154_dev_t *dev, bool force)
Set transceiver state to IDLE (blocking)
Definition: radio.h:1187
static int ieee802154_radio_config_src_address_match(ieee802154_dev_t *dev, ieee802154_src_match_t cmd, const void *value)
Shortcut to ieee802154_radio_ops::config_src_addr_match.
Definition: radio.h:963
static int ieee802154_radio_read(ieee802154_dev_t *dev, void *buf, size_t size, ieee802154_rx_info_t *info)
Shortcut to ieee802154_radio_ops::read.
Definition: radio.h:900
ieee802154_cca_mode_t
IEEE802.15.4 CCA modes.
Definition: radio.h:433
static int ieee802154_radio_config_phy(ieee802154_dev_t *dev, const ieee802154_phy_conf_t *conf)
Shortcut to ieee802154_radio_ops::config_phy.
Definition: radio.h:946
static int ieee802154_radio_confirm_cca(ieee802154_dev_t *dev)
Shortcut to ieee802154_radio_confirm_cca.
Definition: radio.h:1267
static int ieee802154_radio_set_csma_params(ieee802154_dev_t *dev, const ieee802154_csma_be_t *bd, int8_t retries)
Shortcut to ieee802154_radio_ops::set_csma_params.
Definition: radio.h:1050
static int ieee802154_radio_confirm_transmit(ieee802154_dev_t *dev, ieee802154_tx_info_t *info)
Confirmation function for ieee802154_radio_request_transmit This function must be called to finish th...
Definition: radio.h:871
static ieee802154_phy_mode_t ieee802154_cap_to_phy_mode(uint32_t cap)
Convert a ieee802154_rf_caps_t to a ieee802154_phy_mode_t value.
Definition: radio.h:1623
static int ieee802154_radio_confirm_set_idle(ieee802154_dev_t *dev)
Confirmation function for ieee802154_radio_request_set_idle.
Definition: radio.h:1122
static bool ieee802154_radio_has_24_ghz(ieee802154_dev_t *dev)
Check if the device supports the IEEE802.15.4 2.4 GHz band.
Definition: radio.h:1379
static int ieee802154_radio_set_cca_mode(ieee802154_dev_t *dev, ieee802154_cca_mode_t mode)
Shortcut to ieee802154_radio_ops::set_cca_mode.
Definition: radio.h:930
ieee802154_src_match_t
Source Address Match commands.
Definition: radio.h:290
static int ieee802154_radio_request_set_idle(ieee802154_dev_t *dev, bool force)
Request the transceiver state to IDLE.
Definition: radio.h:1104
ieee802154_rf_caps_t
IEEE802.15.4 Radio capabilities.
Definition: radio.h:48
static int ieee802154_radio_off(ieee802154_dev_t *dev)
Shortcut to ieee802154_radio_ops::off.
Definition: radio.h:979
static bool ieee802154_radio_has_irq_ack_timeout(ieee802154_dev_t *dev)
Check if the device supports ACK timeout.
Definition: radio.h:1315
static bool ieee802154_radio_has_irq_rx_start(ieee802154_dev_t *dev)
Check if the device supports RX start interrupt.
Definition: radio.h:1411
static bool ieee802154_radio_has_phy_bpsk(ieee802154_dev_t *dev)
Check if the device supports the BPSK PHY mode.
Definition: radio.h:1477
static int ieee802154_radio_request_cca(ieee802154_dev_t *dev)
Request Stand-Alone Clear Channel Assessment.
Definition: radio.h:1240
static bool ieee802154_radio_has_phy_mr_fsk(ieee802154_dev_t *dev)
Check if the device supports the MR-FSK PHY mode.
Definition: radio.h:1557
static bool ieee802154_radio_has_phy_mr_oqpsk(ieee802154_dev_t *dev)
Check if the device supports the MR-O-QPSK PHY mode.
Definition: radio.h:1525
ieee802154_trx_ev_t
IEEE802.15.4 Radio HAL events.
Definition: radio.h:218
static bool ieee802154_radio_has_frame_retrans_info(ieee802154_dev_t *dev)
Check if the device reports the number of retransmissions of the last TX procedure.
Definition: radio.h:1460
ieee802154_hal_op_t
IEEE 802.15.4 radio operations.
Definition: radio.h:494
static bool ieee802154_radio_has_phy_oqpsk(ieee802154_dev_t *dev)
Check if the device supports the O-QPSK PHY mode.
Definition: radio.h:1509
static bool ieee802154_radio_has_sub_ghz(ieee802154_dev_t *dev)
Check if the device supports the IEEE802.15.4 Sub-GHz band.
Definition: radio.h:1363
static int ieee802154_radio_request_transmit(ieee802154_dev_t *dev)
Transmit a preloaded frame.
Definition: radio.h:841
static bool ieee802154_radio_has_irq_tx_start(ieee802154_dev_t *dev)
Check if the device supports TX start interrupt.
Definition: radio.h:1427
static bool ieee802154_radio_has_irq_cca_done(ieee802154_dev_t *dev)
Check if the device supports CCA done interrupt.
Definition: radio.h:1443
ieee802154_tx_status_t
Transmission status.
Definition: radio.h:177
static int ieee802154_radio_len(ieee802154_dev_t *dev)
Shortcut to ieee802154_radio_ops::len.
Definition: radio.h:884
#define IEEE802154_RF_CAPS_PHY_MASK
Bit-mask for PHY modes capabilities.
Definition: radio.h:166
static int ieee802154_radio_request_on(ieee802154_dev_t *dev)
Shortcut to ieee802154_radio_ops::request_on.
Definition: radio.h:1064
ieee802154_af_cmd_t
Address filter command.
Definition: radio.h:331
static int ieee802154_radio_set_frame_filter_mode(ieee802154_dev_t *dev, ieee802154_filter_mode_t mode)
Shortcut to ieee802154_radio_ops::set_frame_filter_mode.
Definition: radio.h:1012
static int ieee802154_radio_set_rx(ieee802154_dev_t *dev)
Set transceiver state to RX (blocking)
Definition: radio.h:1213
static int ieee802154_radio_write(ieee802154_dev_t *dev, const iolist_t *psdu)
Shortcut to ieee802154_radio_ops::write.
Definition: radio.h:817
static int ieee802154_radio_set_cca_threshold(ieee802154_dev_t *dev, int8_t threshold)
Shortcut to ieee802154_radio_ops::set_cca_threshold.
Definition: radio.h:916
static uint32_t ieee802154_radio_get_phy_modes(ieee802154_dev_t *dev)
Get supported PHY modes of the device.
Definition: radio.h:1572
static int ieee802154_radio_config_addr_filter(ieee802154_dev_t *dev, ieee802154_af_cmd_t cmd, const void *value)
Shortcut to ieee802154_radio_ops::config_addr_filter.
Definition: radio.h:995
void(* ieee802154_cb_t)(ieee802154_dev_t *dev, ieee802154_trx_ev_t status)
Prototype of the IEEE802.15.4 device event callback.
Definition: radio.h:409
static uint32_t ieee802154_phy_mode_to_cap(ieee802154_phy_mode_t phy_mode)
Convert a ieee802154_phy_mode_t to a ieee802154_rf_caps_t value.
Definition: radio.h:1587
ieee802154_filter_mode_t
Frame Filter mode.
Definition: radio.h:341
static int ieee802154_radio_set_frame_retrans(ieee802154_dev_t *dev, uint8_t retrans)
Shortcut to ieee802154_radio_ops::set_frame_retrans.
Definition: radio.h:1030
static bool ieee802154_radio_has_phy_mr_ofdm(ieee802154_dev_t *dev)
Check if the device supports the MR-OFDM PHY mode.
Definition: radio.h:1541
static bool ieee802154_radio_has_auto_csma(ieee802154_dev_t *dev)
Check if the device supports Auto CSMA-CA for transmissions.
Definition: radio.h:1347
static int ieee802154_radio_confirm_set_rx(ieee802154_dev_t *dev)
Confirmation function for ieee802154_radio_request_set_rx.
Definition: radio.h:1165
static bool ieee802154_radio_has_frame_retrans(ieee802154_dev_t *dev)
Check if the device supports frame retransmissions (with CSMA-CA).
Definition: radio.h:1331
static int ieee802154_radio_request_set_rx(ieee802154_dev_t *dev)
Request the transceiver state to RX.
Definition: radio.h:1147
@ IEEE802154_CCA_MODE_ED_THRESHOLD
CCA using first mode (energy detection)
Definition: radio.h:437
@ IEEE802154_CCA_MODE_ED_THRESH_OR_CS
CCA using third mode (energy detection OR carrier sensing)
Definition: radio.h:449
@ IEEE802154_CCA_MODE_ED_THRESH_AND_CS
CCA using third mode (energy detection AND carrier sensing)
Definition: radio.h:445
@ IEEE802154_CCA_MODE_CARRIER_SENSING
CCA using second mode (carrier sensing)
Definition: radio.h:441
@ IEEE802154_SRC_MATCH_EXT_CLEAR
Clear extended address from entry.
Definition: radio.h:325
@ IEEE802154_SRC_MATCH_EN
Enable or disable source address match.
Definition: radio.h:299
@ IEEE802154_SRC_MATCH_EXT_ADD
Add a extended address to entry.
Definition: radio.h:318
@ IEEE802154_SRC_MATCH_SHORT_ADD
Add a short address to entry.
Definition: radio.h:306
@ IEEE802154_SRC_MATCH_SHORT_CLEAR
Clear short address from entry.
Definition: radio.h:312
@ IEEE802154_CAP_PHY_BPSK
Binary Phase Shift Keying PHY mode.
Definition: radio.h:131
@ IEEE802154_CAP_FRAME_RETRANS_INFO
the device provides the number of retransmissions
Definition: radio.h:123
@ IEEE802154_CAP_FRAME_RETRANS
the device supports frame retransmissions with CSMA-CA
Definition: radio.h:65
@ IEEE802154_CAP_IRQ_RX_START
the device reports the start of a frame (SFD) when received.
Definition: radio.h:109
@ IEEE802154_CAP_IRQ_ACK_TIMEOUT
the device support ACK timeout interrupt
Definition: radio.h:87
@ IEEE802154_CAP_IRQ_TX_DONE
the device reports when the transmission is done
Definition: radio.h:105
@ IEEE802154_CAP_SRC_ADDR_MATCH
the device supports source address match table.
Definition: radio.h:160
@ IEEE802154_CAP_PHY_OQPSK
Offset Quadrature Phase-Shift Keying.
Definition: radio.h:139
@ IEEE802154_CAP_PHY_MR_OQPSK
Multi-Rate Offset Quadrature Phase-Shift Keying PHY mode.
Definition: radio.h:143
@ IEEE802154_CAP_REG_RETENTION
the device retains all register values when off.
Definition: radio.h:127
@ IEEE802154_CAP_PHY_MR_FSK
Multi-Rate Frequency Shift Keying PHY mode.
Definition: radio.h:151
@ IEEE802154_CAP_PHY_ASK
Amplitude-Shift Keying PHY mode.
Definition: radio.h:135
@ IEEE802154_CAP_AUTO_CSMA
the device supports Auto CSMA-CA
Definition: radio.h:75
@ IEEE802154_CAP_IRQ_CRC_ERROR
the device reports reception off frames with invalid CRC.
Definition: radio.h:101
@ IEEE802154_CAP_SUB_GHZ
the device support the IEEE802.15.4 Sub GHz band
Definition: radio.h:97
@ IEEE802154_CAP_IRQ_TX_START
the device reports the start of a frame (SFD) was sent.
Definition: radio.h:113
@ IEEE802154_CAP_IRQ_CCA_DONE
the device reports the end of the CCA procedure
Definition: radio.h:117
@ IEEE802154_CAP_24_GHZ
the device supports the IEEE802.15.4 2.4 GHz band
Definition: radio.h:93
@ IEEE802154_CAP_PHY_MR_OFDM
Multi-Rate Orthogonal Frequency-Division Multiplexing PHY mode.
Definition: radio.h:147
@ IEEE802154_RADIO_INDICATION_CRC_ERROR
the transceiver received a frame with an invalid crc.
Definition: radio.h:237
@ IEEE802154_RADIO_INDICATION_TX_START
the transceiver sent out a valid SFD
Definition: radio.h:246
@ IEEE802154_RADIO_CONFIRM_CCA
the CCA procedure finished
Definition: radio.h:284
@ IEEE802154_RADIO_INDICATION_RX_START
the transceiver detected a valid SFD
Definition: radio.h:224
@ IEEE802154_RADIO_INDICATION_RX_DONE
the transceiver received a frame and lies in the internal framebuffer.
Definition: radio.h:268
@ IEEE802154_RADIO_CONFIRM_TX_DONE
the transceiver either finished sending a frame, the retransmission procedure or the channel activity...
Definition: radio.h:278
@ IEEE802154_HAL_OP_TRANSMIT
Transmission of a preloaded frame.
Definition: radio.h:498
@ IEEE802154_HAL_OP_CCA
Request Clear Channel Assessment.
Definition: radio.h:510
@ IEEE802154_HAL_OP_SET_IDLE
Set the transceiver state to IDLE (RX off).
Definition: radio.h:506
@ IEEE802154_HAL_OP_SET_RX
Set the transceiver state to RX.
Definition: radio.h:502
@ TX_STATUS_FRAME_PENDING
the transceiver received a valid ACK with the frame pending bit
Definition: radio.h:198
@ TX_STATUS_SUCCESS
the transceiver successfully sent a frame.
Definition: radio.h:191
@ TX_STATUS_MEDIUM_BUSY
the CSMA-CA algorithm or CCA failed to measure a clear channel
Definition: radio.h:209
@ TX_STATUS_NO_ACK
the transceiver ran out of retransmission
Definition: radio.h:205
@ IEEE802154_AF_PAN_COORD
Set device as PAN coordinator (bool)
Definition: radio.h:335
@ IEEE802154_AF_EXT_ADDR
Set extended IEEE 802.15.4 address (eui64_t)
Definition: radio.h:333
@ IEEE802154_AF_SHORT_ADDR
Set short IEEE 802.15.4 address (network_uint16_t)
Definition: radio.h:332
@ IEEE802154_AF_PANID
Set PAN ID (uint16_t)
Definition: radio.h:334
@ IEEE802154_FILTER_SNIFFER
accept all frames, regardless of FCS
Definition: radio.h:365
@ IEEE802154_FILTER_ACCEPT
accept all valid frames that match address filter configuration
Definition: radio.h:345
@ IEEE802154_FILTER_ACK_ONLY
accept only ACK frames
Definition: radio.h:353
@ IEEE802154_FILTER_PROMISC
accept all valid frames
Definition: radio.h:359
ieee802154_mr_oqpsk_chips_t
802.15.4 MR-OQPSK chip rates
Definition: ieee802154.h:232
ieee802154_mr_fsk_srate_t
802.15.4 MR-FSK symbol rates
Definition: ieee802154.h:220
ieee802154_phy_mode_t
802.15.4 PHY modes
Definition: ieee802154.h:196
ieee802154_mr_fsk_fec_t
802.15.4 forward error correction schemes
Definition: ieee802154.h:211
@ IEEE802154_PHY_BPSK
Binary Phase Shift Keying.
Definition: ieee802154.h:198
@ IEEE802154_PHY_MR_OFDM
Multi-Rate Orthogonal Frequency-Division Multiplexing.
Definition: ieee802154.h:202
@ IEEE802154_PHY_OQPSK
Offset Quadrature Phase-Shift Keying.
Definition: ieee802154.h:200
@ IEEE802154_PHY_ASK
Amplitude-Shift Keying.
Definition: ieee802154.h:199
@ IEEE802154_PHY_MR_FSK
Multi-Rate Frequency Shift Keying.
Definition: ieee802154.h:203
@ IEEE802154_PHY_DISABLED
PHY disabled, no mode selected.
Definition: ieee802154.h:197
@ IEEE802154_PHY_MR_OQPSK
Multi-Rate Offset Quadrature Phase-Shift Keying.
Definition: ieee802154.h:201
iolist scatter / gather IO
CSMA-CA exponential backoff parameters.
Definition: radio.h:371
uint8_t max
maximum value of the exponential backoff
Definition: radio.h:373
uint8_t min
minimum value of the exponential backoff
Definition: radio.h:372
the IEEE802.15.4 device descriptor
Definition: radio.h:415
const ieee802154_radio_ops_t * driver
pointer to the operations of the device
Definition: radio.h:419
ieee802154_cb_t cb
the event callback of the device
Definition: radio.h:427
void * priv
pointer to the private descriptor of the device
Definition: radio.h:423
extension for IEEE 802.15.4g MR-FSK PHY
Definition: radio.h:483
uint8_t mod_idx
modulation index
Definition: radio.h:487
ieee802154_mr_fsk_srate_t srate
symbol rate
Definition: radio.h:485
ieee802154_phy_conf_t super
common settings
Definition: radio.h:484
uint8_t mod_ord
modulation order, 2 or 4
Definition: radio.h:486
ieee802154_mr_fsk_fec_t fec
forward error correction
Definition: radio.h:488
extension for IEEE 802.15.4g MR-ODFM PHY
Definition: radio.h:474
uint8_t option
OFDM Option.
Definition: radio.h:476
uint8_t scheme
Modulation & Coding Scheme.
Definition: radio.h:477
ieee802154_phy_conf_t super
common settings
Definition: radio.h:475
extension for IEEE 802.15.4g MR-OQPSK PHY
Definition: radio.h:465
uint8_t rate_mode
rate mode
Definition: radio.h:468
ieee802154_mr_oqpsk_chips_t chips
chip rate
Definition: radio.h:467
ieee802154_phy_conf_t super
common settings
Definition: radio.h:466
Holder of the PHY configuration.
Definition: radio.h:455
uint8_t page
IEEE802.15.4 channel page.
Definition: radio.h:458
uint16_t channel
IEEE802.15.4 channel number.
Definition: radio.h:457
int8_t pow
TX power in dBm.
Definition: radio.h:459
ieee802154_phy_mode_t phy_mode
IEEE802.15.4 PHY mode.
Definition: radio.h:456
Radio ops struct declaration.
Definition: radio.h:518
int(* set_cca_mode)(ieee802154_dev_t *dev, ieee802154_cca_mode_t mode)
Set CCA mode.
Definition: radio.h:697
const uint32_t caps
Radio device capabilities.
Definition: radio.h:525
int(* request_op)(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx)
Request a radio operation.
Definition: radio.h:652
int(* confirm_on)(ieee802154_dev_t *dev)
Confirmation function for ieee802154_radio_ops::request_on.
Definition: radio.h:635
int(* set_cca_threshold)(ieee802154_dev_t *dev, int8_t threshold)
Set the threshold for the Energy Detection (first mode of CCA)
Definition: radio.h:681
int(* set_csma_params)(ieee802154_dev_t *dev, const ieee802154_csma_be_t *bd, int8_t retries)
Set the CSMA-CA parameters.
Definition: radio.h:754
int(* config_src_addr_match)(ieee802154_dev_t *dev, ieee802154_src_match_t cmd, const void *value)
Set the source address match configuration.
Definition: radio.h:805
int(* config_phy)(ieee802154_dev_t *dev, const ieee802154_phy_conf_t *conf)
Set IEEE802.15.4 PHY configuration (channel, TX power)
Definition: radio.h:718
int(* off)(ieee802154_dev_t *dev)
Turn off the device.
Definition: radio.h:592
int(* write)(ieee802154_dev_t *dev, const iolist_t *psdu)
Write a frame into the framebuffer.
Definition: radio.h:539
int(* len)(ieee802154_dev_t *dev)
Get the length of the received PSDU frame.
Definition: radio.h:554
int(* set_frame_filter_mode)(ieee802154_dev_t *dev, ieee802154_filter_mode_t mode)
Set the frame filter moder.
Definition: radio.h:768
int(* read)(ieee802154_dev_t *dev, void *buf, size_t size, ieee802154_rx_info_t *info)
Read a frame from the internal framebuffer.
Definition: radio.h:579
int(* request_on)(ieee802154_dev_t *dev)
Request to turn on the device.
Definition: radio.h:607
int(* confirm_op)(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx)
Confirmation function for ieee802154_radio_ops::request_op.
Definition: radio.h:668
int(* set_frame_retrans)(ieee802154_dev_t *dev, uint8_t retrans)
Set number of frame retransmissions.
Definition: radio.h:734
int(* config_addr_filter)(ieee802154_dev_t *dev, ieee802154_af_cmd_t cmd, const void *value)
Configure the address filter.
Definition: radio.h:785
RX information associated to a frame.
Definition: radio.h:379
uint8_t rssi
RSSI of the received frame.
Definition: radio.h:386
uint8_t lqi
LQI of the received frame.
Definition: radio.h:387
TX information of the last transmitted frame.
Definition: radio.h:393
int8_t retrans
number of frame retransmissions of the last TX
Definition: radio.h:395
ieee802154_tx_status_t status
status of the last transmission
Definition: radio.h:394
iolist structure definition
Definition: iolist.h:39
IEEE 802.15.4 header definitions.
libc header for scatter/gather I/O