Contiki-NG
cc2538-rf.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012, Texas Instruments Incorporated - http://www.ti.com/
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  *
14  * 3. Neither the name of the copyright holder nor the names of its
15  * contributors may be used to endorse or promote products derived
16  * from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
29  * OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 /**
32  * \addtogroup cc2538-rf
33  * @{
34  *
35  * \file
36  * Implementation of the cc2538 RF driver
37  */
38 #include "contiki.h"
39 #include "dev/radio.h"
40 #include "sys/clock.h"
41 #include "sys/rtimer.h"
42 #include "net/packetbuf.h"
43 #include "net/linkaddr.h"
44 #include "net/netstack.h"
45 #include "net/mac/tsch/tsch.h"
46 #include "sys/energest.h"
47 #include "dev/cc2538-rf.h"
48 #include "dev/rfcore.h"
49 #include "dev/sys-ctrl.h"
50 #include "dev/udma.h"
51 #include "reg.h"
52 
53 #include <string.h>
54 /*---------------------------------------------------------------------------*/
55 #define CHECKSUM_LEN 2
56 
57 /* uDMA channel control persistent flags */
58 #define UDMA_TX_FLAGS (UDMA_CHCTL_ARBSIZE_128 | UDMA_CHCTL_XFERMODE_AUTO \
59  | UDMA_CHCTL_SRCSIZE_8 | UDMA_CHCTL_DSTSIZE_8 \
60  | UDMA_CHCTL_SRCINC_8 | UDMA_CHCTL_DSTINC_NONE)
61 
62 #define UDMA_RX_FLAGS (UDMA_CHCTL_ARBSIZE_128 | UDMA_CHCTL_XFERMODE_AUTO \
63  | UDMA_CHCTL_SRCSIZE_8 | UDMA_CHCTL_DSTSIZE_8 \
64  | UDMA_CHCTL_SRCINC_NONE | UDMA_CHCTL_DSTINC_8)
65 
66 /*
67  * uDMA transfer threshold. DMA will only be used to read an incoming frame
68  * if its size is above this threshold
69  */
70 #define UDMA_RX_SIZE_THRESHOLD 3
71 /*---------------------------------------------------------------------------*/
72 /* Log configuration */
73 #include "sys/log.h"
74 #define LOG_MODULE "cc2538-rf"
75 #define LOG_LEVEL LOG_LEVEL_NONE
76 /*---------------------------------------------------------------------------*/
77 /* Local RF Flags */
78 #define RX_ACTIVE 0x80
79 #define RF_MUST_RESET 0x40
80 #define RF_ON 0x01
81 
82 /* Bit Masks for the last byte in the RX FIFO */
83 #define CRC_BIT_MASK 0x80
84 #define LQI_BIT_MASK 0x7F
85 /* RSSI Offset */
86 #define RSSI_OFFSET 73
87 #define RSSI_INVALID -128
88 
89 /* 192 usec off -> on interval (RX Callib -> SFD Wait). We wait a bit more */
90 #define ONOFF_TIME RTIMER_ARCH_SECOND / 3125
91 /*---------------------------------------------------------------------------*/
92 #ifdef CC2538_RF_CONF_AUTOACK
93 #define CC2538_RF_AUTOACK CC2538_RF_CONF_AUTOACK
94 #else
95 #define CC2538_RF_AUTOACK 1
96 #endif
97 /*---------------------------------------------------------------------------
98  * MAC timer
99  *---------------------------------------------------------------------------*/
100 /* Timer conversion */
101 #define RADIO_TO_RTIMER(X) ((uint32_t)((uint64_t)(X) * RTIMER_ARCH_SECOND / SYS_CTRL_32MHZ))
102 
103 #define CLOCK_STABLE() do { \
104  while ( !(REG(SYS_CTRL_CLOCK_STA) & (SYS_CTRL_CLOCK_STA_XOSC_STB))); \
105  } while(0)
106 /*---------------------------------------------------------------------------*/
107 /* Are we currently in poll mode? Disabled by default */
108 static uint8_t volatile poll_mode = 0;
109 /* Do we perform a CCA before sending? Enabled by default. */
110 static uint8_t send_on_cca = 1;
111 static int8_t rssi;
112 static uint8_t crc_corr;
113 /*---------------------------------------------------------------------------*/
114 static uint8_t rf_flags;
115 static uint8_t rf_channel = IEEE802154_DEFAULT_CHANNEL;
116 
117 static int on(void);
118 static int off(void);
119 /*---------------------------------------------------------------------------*/
120 /* TX Power dBm lookup table. Values from SmartRF Studio v1.16.0 */
121 typedef struct output_config {
122  radio_value_t power;
123  uint8_t txpower_val;
124 } output_config_t;
125 
126 static const output_config_t output_power[] = {
127  { 7, 0xFF },
128  { 5, 0xED },
129  { 3, 0xD5 },
130  { 1, 0xC5 },
131  { 0, 0xB6 },
132  { -1, 0xB0 },
133  { -3, 0xA1 },
134  { -5, 0x91 },
135  { -7, 0x88 },
136  { -9, 0x72 },
137  {-11, 0x62 },
138  {-13, 0x58 },
139  {-15, 0x42 },
140  {-24, 0x00 },
141 };
142 
143 static radio_result_t get_value(radio_param_t param, radio_value_t *value);
144 
145 #define OUTPUT_CONFIG_COUNT (sizeof(output_power) / sizeof(output_config_t))
146 
147 /* Max and Min Output Power in dBm */
148 #define OUTPUT_POWER_MIN (output_power[OUTPUT_CONFIG_COUNT - 1].power)
149 #define OUTPUT_POWER_MAX (output_power[0].power)
150 /*---------------------------------------------------------------------------*/
151 PROCESS(cc2538_rf_process, "cc2538 RF driver");
152 /*---------------------------------------------------------------------------*/
153 /**
154  * \brief Get the current operating channel
155  * \return Returns a value in [11,26] representing the current channel
156  */
157 static uint8_t
159 {
160  return rf_channel;
161 }
162 /*---------------------------------------------------------------------------*/
163 /**
164  * \brief Set the current operating channel
165  * \param channel The desired channel as a value in [11,26]
166  */
167 static void
168 set_channel(uint8_t channel)
169 {
170  uint8_t was_on = 0;
171 
172  LOG_INFO("Set Channel\n");
173 
174  /* Changes to FREQCTRL take effect after the next recalibration */
175 
176  /* If we are off, save state, otherwise switch off and save state */
178  was_on = 1;
179  off();
180  }
181  REG(RFCORE_XREG_FREQCTRL) = CC2538_RF_CHANNEL_MIN +
182  (channel - CC2538_RF_CHANNEL_MIN) * CC2538_RF_CHANNEL_SPACING;
183 
184  /* switch radio back on only if radio was on before - otherwise will turn on radio foor sleepy nodes */
185  if(was_on) {
186  on();
187  }
188 
189  rf_channel = channel;
190 }
191 /*---------------------------------------------------------------------------*/
192 static radio_value_t
193 get_pan_id(void)
194 {
195  return (radio_value_t)(REG(RFCORE_FFSM_PAN_ID1) << 8 | REG(RFCORE_FFSM_PAN_ID0));
196 }
197 /*---------------------------------------------------------------------------*/
198 static void
199 set_pan_id(uint16_t pan)
200 {
201  REG(RFCORE_FFSM_PAN_ID0) = pan & 0xFF;
202  REG(RFCORE_FFSM_PAN_ID1) = pan >> 8;
203 }
204 /*---------------------------------------------------------------------------*/
205 static radio_value_t
206 get_short_addr(void)
207 {
209 }
210 /*---------------------------------------------------------------------------*/
211 static void
212 set_short_addr(uint16_t addr)
213 {
214  REG(RFCORE_FFSM_SHORT_ADDR0) = addr & 0xFF;
215  REG(RFCORE_FFSM_SHORT_ADDR1) = addr >> 8;
216 }
217 /*---------------------------------------------------------------------------*/
218 /**
219  * \brief Reads the current signal strength (RSSI)
220  * \return The current RSSI in dBm
221  *
222  * This function reads the current RSSI on the currently configured
223  * channel.
224  */
225 static radio_value_t
226 get_rssi(void)
227 {
228  int8_t rssi;
229  uint8_t was_off = 0;
230 
231  /* If we are off, turn on first */
233  was_off = 1;
234  on();
235  }
236 
237  /* Wait for a valid RSSI reading */
238  do {
239  rssi = REG(RFCORE_XREG_RSSI);
240  } while(rssi == RSSI_INVALID);
241  rssi -= RSSI_OFFSET;
242 
243  /* If we were off, turn back off */
244  if(was_off) {
245  off();
246  }
247 
248  return rssi;
249 }
250 /*---------------------------------------------------------------------------*/
251 /* Returns the current CCA threshold in dBm */
252 static radio_value_t
253 get_cca_threshold(void)
254 {
255  return (int8_t)(REG(RFCORE_XREG_CCACTRL0) & RFCORE_XREG_CCACTRL0_CCA_THR) - RSSI_OFFSET;
256 }
257 /*---------------------------------------------------------------------------*/
258 /* Sets the CCA threshold in dBm */
259 static void
260 set_cca_threshold(radio_value_t value)
261 {
262  REG(RFCORE_XREG_CCACTRL0) = (value & 0xFF) + RSSI_OFFSET;
263 }
264 /*---------------------------------------------------------------------------*/
265 /* Returns the current TX power in dBm */
266 static radio_value_t
267 get_tx_power(void)
268 {
269  int i;
270  uint8_t reg_val = REG(RFCORE_XREG_TXPOWER) & 0xFF;
271 
272  /*
273  * Find the TXPOWER value in the lookup table
274  * If the value has been written with set_tx_power, we should be able to
275  * find the exact value. However, in case the register has been written in
276  * a different fashion, we return the immediately lower value of the lookup
277  */
278  for(i = 0; i < OUTPUT_CONFIG_COUNT; i++) {
279  if(reg_val >= output_power[i].txpower_val) {
280  return output_power[i].power;
281  }
282  }
283  return OUTPUT_POWER_MIN;
284 }
285 /*---------------------------------------------------------------------------*/
286 /*
287  * Set TX power to 'at least' power dBm
288  * This works with a lookup table. If the value of 'power' does not exist in
289  * the lookup table, TXPOWER will be set to the immediately higher available
290  * value
291  */
292 static void
293 set_tx_power(radio_value_t power)
294 {
295  int i;
296 
297  for(i = OUTPUT_CONFIG_COUNT - 1; i >= 0; --i) {
298  if(power <= output_power[i].power) {
299  REG(RFCORE_XREG_TXPOWER) = output_power[i].txpower_val;
300  return;
301  }
302  }
303 }
304 /*---------------------------------------------------------------------------*/
305 static void
306 set_frame_filtering(uint8_t enable)
307 {
308  if(enable) {
310  } else {
312  }
313 }
314 /*---------------------------------------------------------------------------*/
315 static void
316 set_shr_search(int enable)
317 {
318  if(enable) {
320  } else {
322  }
323 }
324 /*---------------------------------------------------------------------------*/
325 static void
326 mac_timer_init(void)
327 {
328  CLOCK_STABLE();
333  while(REG(RFCORE_SFR_MTCTRL) & RFCORE_SFR_MTCTRL_STATE);
336  while(!(REG(RFCORE_SFR_MTCTRL) & RFCORE_SFR_MTCTRL_STATE));
337 }
338 /*---------------------------------------------------------------------------*/
339 static void
340 set_poll_mode(uint8_t enable)
341 {
342  poll_mode = enable;
343 
344  if(enable) {
345  mac_timer_init();
346  REG(RFCORE_XREG_RFIRQM0) &= ~RFCORE_XREG_RFIRQM0_FIFOP; /* mask out FIFOP interrupt source */
347  REG(RFCORE_SFR_RFIRQF0) &= ~RFCORE_SFR_RFIRQF0_FIFOP; /* clear pending FIFOP interrupt */
348  NVIC_DisableIRQ(RF_TX_RX_IRQn); /* disable RF interrupts */
349  } else {
350  REG(RFCORE_XREG_RFIRQM0) |= RFCORE_XREG_RFIRQM0_FIFOP; /* enable FIFOP interrupt source */
351  NVIC_EnableIRQ(RF_TX_RX_IRQn); /* enable RF interrupts */
352  }
353 }
354 /*---------------------------------------------------------------------------*/
355 static void
356 set_send_on_cca(uint8_t enable)
357 {
358  send_on_cca = enable;
359 }
360 /*---------------------------------------------------------------------------*/
361 static void
362 set_auto_ack(uint8_t enable)
363 {
364  if(enable) {
366  } else {
368  }
369 }
370 /*---------------------------------------------------------------------------*/
371 static uint32_t
372 get_sfd_timestamp(void)
373 {
374  uint64_t sfd, timer_val, buffer;
375 
376  REG(RFCORE_SFR_MTMSEL) = (REG(RFCORE_SFR_MTMSEL) & ~RFCORE_SFR_MTMSEL_MTMSEL) | 0x00000000;
378  timer_val = REG(RFCORE_SFR_MTM0) & RFCORE_SFR_MTM0_MTM0;
379  timer_val |= ((REG(RFCORE_SFR_MTM1) & RFCORE_SFR_MTM1_MTM1) << 8);
381  timer_val |= ((REG(RFCORE_SFR_MTMOVF0) & RFCORE_SFR_MTMOVF0_MTMOVF0) << 16);
382  timer_val |= ((REG(RFCORE_SFR_MTMOVF1) & RFCORE_SFR_MTMOVF1_MTMOVF1) << 24);
384  timer_val |= (buffer << 32);
385 
386  REG(RFCORE_SFR_MTMSEL) = (REG(RFCORE_SFR_MTMSEL) & ~RFCORE_SFR_MTMSEL_MTMSEL) | 0x00000001;
389  sfd |= ((REG(RFCORE_SFR_MTM1) & RFCORE_SFR_MTM1_MTM1) << 8);
391  sfd |= ((REG(RFCORE_SFR_MTMOVF0) & RFCORE_SFR_MTMOVF0_MTMOVF0) << 16);
392  sfd |= ((REG(RFCORE_SFR_MTMOVF1) & RFCORE_SFR_MTMOVF1_MTMOVF1) << 24);
394  sfd |= (buffer << 32);
395 
396  return RTIMER_NOW() - RADIO_TO_RTIMER(timer_val - sfd);
397 }
398 /*---------------------------------------------------------------------------*/
399 /* Enable or disable radio test mode emmiting modulated or unmodulated
400  * (carrier) signal. See User's Guide pages 719 and 741.
401  */
402 static uint32_t prev_FRMCTRL0, prev_MDMTEST1;
403 static uint8_t was_on;
404 
405 static void
406 set_test_mode(uint8_t enable, uint8_t modulated)
407 {
408  radio_value_t mode;
409  get_value(RADIO_PARAM_POWER_MODE, &mode);
410 
411  if(enable) {
412  if(mode == RADIO_POWER_MODE_CARRIER_ON) {
413  return;
414  }
415  was_on = (mode == RADIO_POWER_MODE_ON);
416  off();
417  prev_FRMCTRL0 = REG(RFCORE_XREG_FRMCTRL0);
418  /* This constantly transmits random data */
419  REG(RFCORE_XREG_FRMCTRL0) = 0x00000042;
420  if(!modulated) {
421  prev_MDMTEST1 = REG(RFCORE_XREG_MDMTEST1);
422  /* ...adding this we send an unmodulated carrier instead */
423  REG(RFCORE_XREG_MDMTEST1) = 0x00000018;
424  }
426  } else {
427  if(mode != RADIO_POWER_MODE_CARRIER_ON) {
428  return;
429  }
431  REG(RFCORE_XREG_FRMCTRL0) = prev_FRMCTRL0;
432  if(!modulated) {
433  REG(RFCORE_XREG_MDMTEST1) = prev_MDMTEST1;
434  }
435  if(was_on) {
436  on();
437  }
438  }
439 }
440 /*---------------------------------------------------------------------------*/
441 /* Netstack API radio driver functions */
442 /*---------------------------------------------------------------------------*/
443 static int
444 channel_clear(void)
445 {
446  int cca;
447  uint8_t was_off = 0;
448 
449  LOG_INFO("CCA\n");
450 
451  /* If we are off, turn on first */
453  was_off = 1;
454  on();
455  }
456 
457  /* Wait on RSSI_VALID */
459 
461  cca = CC2538_RF_CCA_CLEAR;
462  } else {
463  cca = CC2538_RF_CCA_BUSY;
464  }
465 
466  /* If we were off, turn back off */
467  if(was_off) {
468  off();
469  }
470 
471  return cca;
472 }
473 /*---------------------------------------------------------------------------*/
474 static int
475 on(void)
476 {
477  LOG_INFO("On\n");
478 
479  if(!(rf_flags & RX_ACTIVE)) {
482 
483  rf_flags |= RX_ACTIVE;
484  }
485 
486  ENERGEST_ON(ENERGEST_TYPE_LISTEN);
487  return 1;
488 }
489 /*---------------------------------------------------------------------------*/
490 static int
491 off(void)
492 {
493  LOG_INFO("Off\n");
494 
495  /* Wait for ongoing TX to complete (e.g. this could be an outgoing ACK) */
497 
500  }
501 
502  /* Don't turn off if we are off as this will trigger a Strobe Error */
503  if(REG(RFCORE_XREG_RXENABLE) != 0) {
505  }
506 
507  rf_flags &= ~RX_ACTIVE;
508 
509  ENERGEST_OFF(ENERGEST_TYPE_LISTEN);
510  return 1;
511 }
512 /*---------------------------------------------------------------------------*/
513 static int
514 init(void)
515 {
516  LOG_INFO("Init\n");
517 
518  if(rf_flags & RF_ON) {
519  return 0;
520  }
521 
522  /* Enable clock for the RF Core while Running, in Sleep and Deep Sleep */
523  REG(SYS_CTRL_RCGCRFC) = 1;
524  REG(SYS_CTRL_SCGCRFC) = 1;
525  REG(SYS_CTRL_DCGCRFC) = 1;
526 
527  REG(RFCORE_XREG_CCACTRL0) = CC2538_RF_CCA_THRES;
528 
529  /*
530  * Changes from default values
531  * See User Guide, section "Register Settings Update"
532  */
533  REG(RFCORE_XREG_TXFILTCFG) = 0x09; /** TX anti-aliasing filter bandwidth */
534  REG(RFCORE_XREG_AGCCTRL1) = 0x15; /** AGC target value */
535  REG(ANA_REGS_IVCTRL) = 0x0B; /** Bias currents */
536  REG(RFCORE_XREG_FSCAL1) = 0x01; /** Tune frequency calibration */
537 
538  /*
539  * Defaults:
540  * Auto CRC; Append RSSI, CRC-OK and Corr. Val.; CRC calculation;
541  * RX and TX modes with FIFOs
542  */
544 
545 #if CC2538_RF_AUTOACK
547 #endif
548 
549  /* Disable source address matching and autopend */
550  REG(RFCORE_XREG_SRCMATCH) = 0;
551 
552  /* MAX FIFOP threshold */
553  REG(RFCORE_XREG_FIFOPCTRL) = CC2538_RF_MAX_PACKET_LEN;
554 
555  /* Set TX Power */
556  REG(RFCORE_XREG_TXPOWER) = CC2538_RF_TX_POWER;
557 
558  set_channel(rf_channel);
559 
560  /* Enable SHR search */
561  set_shr_search(1);
562 
563  /* Acknowledge all RF Error interrupts */
566 
568  /* Disable peripheral triggers for the channel */
570 
571  /*
572  * Set the channel's DST. SRC can not be set yet since it will change for
573  * each transfer
574  */
576  }
577 
579  /* Disable peripheral triggers for the channel */
581 
582  /*
583  * Set the channel's SRC. DST can not be set yet since it will change for
584  * each transfer
585  */
587  }
588 
589  set_poll_mode(poll_mode);
590 
591  process_start(&cc2538_rf_process, NULL);
592 
593  rf_flags |= RF_ON;
594 
595  return 1;
596 }
597 /*---------------------------------------------------------------------------*/
598 static int
599 prepare(const void *payload, unsigned short payload_len)
600 {
601  uint8_t i;
602 
603  if(payload_len > NETSTACK_RADIO_MAX_PAYLOAD_LEN) {
604  return RADIO_TX_ERR;
605  }
606 
607  LOG_INFO("Prepare 0x%02x bytes\n", payload_len + CHECKSUM_LEN);
608 
609  /*
610  * When we transmit in very quick bursts, make sure previous transmission
611  * is not still in progress before re-writing to the TX FIFO
612  */
614 
615  if((rf_flags & RX_ACTIVE) == 0) {
616  on();
617  }
618 
620 
621  LOG_INFO("data = ");
622  /* Send the phy length byte first */
623  REG(RFCORE_SFR_RFDATA) = payload_len + CHECKSUM_LEN;
624 
626  LOG_INFO_("<uDMA payload>");
627 
628  /* Set the transfer source's end address */
630  (uint32_t)(payload) + payload_len - 1);
631 
632  /* Configure the control word */
634  UDMA_TX_FLAGS | udma_xfer_size(payload_len));
635 
636  /* Enabled the RF TX uDMA channel */
638 
639  /* Trigger the uDMA transfer */
641 
642  /*
643  * No need to wait for this to end. Even if transmit() gets called
644  * immediately, the uDMA controller will stream the frame to the TX FIFO
645  * faster than transmit() can empty it
646  */
647  } else {
648  for(i = 0; i < payload_len; i++) {
649  REG(RFCORE_SFR_RFDATA) = ((unsigned char *)(payload))[i];
650  LOG_INFO_("%02x", ((unsigned char *)(payload))[i]);
651  }
652  }
653  LOG_INFO_("\n");
654 
655  return 0;
656 }
657 /*---------------------------------------------------------------------------*/
658 static int
659 transmit(unsigned short transmit_len)
660 {
661  uint8_t counter;
662  int ret = RADIO_TX_ERR;
663  rtimer_clock_t t0;
664  uint8_t was_off = 0;
665 
666  LOG_INFO("Transmit\n");
667 
668  if(transmit_len > NETSTACK_RADIO_MAX_PAYLOAD_LEN) {
669  return RADIO_TX_ERR;
670  }
671 
672  if(!(rf_flags & RX_ACTIVE)) {
673  t0 = RTIMER_NOW();
674  on();
675  was_off = 1;
676  while(RTIMER_CLOCK_LT(RTIMER_NOW(), t0 + ONOFF_TIME));
677  }
678 
679  if(send_on_cca) {
680  if(channel_clear() == CC2538_RF_CCA_BUSY) {
681  return RADIO_TX_COLLISION;
682  }
683  }
684 
685  /*
686  * prepare() double checked that TX_ACTIVE is low. If SFD is high we are
687  * receiving. Abort transmission and bail out with RADIO_TX_COLLISION
688  */
690  return RADIO_TX_COLLISION;
691  }
692 
693  /* Start the transmission */
694  ENERGEST_SWITCH(ENERGEST_TYPE_LISTEN, ENERGEST_TYPE_TRANSMIT);
695 
697 
698  counter = 0;
700  && (counter++ < 3)) {
701  clock_delay_usec(6);
702  }
703 
704  if(!(REG(RFCORE_XREG_FSMSTAT1) & RFCORE_XREG_FSMSTAT1_TX_ACTIVE)) {
705  LOG_ERR("TX never active.\n");
707  ret = RADIO_TX_ERR;
708  } else {
709  /* Wait for the transmission to finish */
710  while(REG(RFCORE_XREG_FSMSTAT1) & RFCORE_XREG_FSMSTAT1_TX_ACTIVE);
711  ret = RADIO_TX_OK;
712  }
713  ENERGEST_SWITCH(ENERGEST_TYPE_TRANSMIT, ENERGEST_TYPE_LISTEN);
714 
715  if(was_off) {
716  off();
717  }
718 
719  return ret;
720 }
721 /*---------------------------------------------------------------------------*/
722 static int
723 send(const void *payload, unsigned short payload_len)
724 {
725  prepare(payload, payload_len);
726  return transmit(payload_len);
727 }
728 /*---------------------------------------------------------------------------*/
729 static int
730 read(void *buf, unsigned short bufsize)
731 {
732  uint8_t i;
733  uint8_t len;
734 
735  LOG_INFO("Read\n");
736 
738  return 0;
739  }
740 
741  /* Check the length */
742  len = REG(RFCORE_SFR_RFDATA);
743 
744  /* Check for validity */
745  if(len > CC2538_RF_MAX_PACKET_LEN) {
746  /* Oops, we must be out of sync. */
747  LOG_ERR("RF: bad sync\n");
748 
750  return 0;
751  }
752 
753  if(len <= CC2538_RF_MIN_PACKET_LEN) {
754  LOG_ERR("RF: too short\n");
755 
757  return 0;
758  }
759 
760  if(len - CHECKSUM_LEN > bufsize) {
761  LOG_ERR("RF: too long\n");
762 
764  return 0;
765  }
766 
767  /* If we reach here, chances are the FIFO is holding a valid frame */
768  LOG_INFO("read (0x%02x bytes) = ", len);
769  len -= CHECKSUM_LEN;
770 
771  /* Don't bother with uDMA for short frames (e.g. ACKs) */
772  if(CC2538_RF_CONF_RX_USE_DMA && len > UDMA_RX_SIZE_THRESHOLD) {
773  LOG_INFO_("<uDMA payload>");
774 
775  /* Set the transfer destination's end address */
777  (uint32_t)(buf) + len - 1);
778 
779  /* Configure the control word */
781  UDMA_RX_FLAGS | udma_xfer_size(len));
782 
783  /* Enabled the RF RX uDMA channel */
785 
786  /* Trigger the uDMA transfer */
788 
789  /* Wait for the transfer to complete. */
791  } else {
792  for(i = 0; i < len; ++i) {
793  ((unsigned char *)(buf))[i] = REG(RFCORE_SFR_RFDATA);
794  LOG_INFO_("%02x", ((unsigned char *)(buf))[i]);
795  }
796  }
797 
798  /* Read the RSSI and CRC/Corr bytes */
799  rssi = ((int8_t)REG(RFCORE_SFR_RFDATA)) - RSSI_OFFSET;
800  crc_corr = REG(RFCORE_SFR_RFDATA);
801 
802  LOG_INFO_("%02x%02x\n", (uint8_t)rssi, crc_corr);
803 
804  /* MS bit CRC OK/Not OK, 7 LS Bits, Correlation value */
805  if(crc_corr & CRC_BIT_MASK) {
806  packetbuf_set_attr(PACKETBUF_ATTR_RSSI, rssi);
807  packetbuf_set_attr(PACKETBUF_ATTR_LINK_QUALITY, crc_corr & LQI_BIT_MASK);
808  } else {
809  LOG_ERR("Bad CRC\n");
811  return 0;
812  }
813 
814  if(!poll_mode) {
815  /* If FIFOP==1 and FIFO==0 then we had a FIFO overflow at some point. */
816  if(REG(RFCORE_XREG_FSMSTAT1) & RFCORE_XREG_FSMSTAT1_FIFOP) {
818  process_poll(&cc2538_rf_process);
819  } else {
821  }
822  }
823  }
824 
825  return len;
826 }
827 /*---------------------------------------------------------------------------*/
828 static int
829 receiving_packet(void)
830 {
831  LOG_INFO("Receiving\n");
832 
833  /*
834  * SFD high while transmitting and receiving.
835  * TX_ACTIVE high only when transmitting
836  *
837  * FSMSTAT1 & (TX_ACTIVE | SFD) == SFD <=> receiving
838  */
839  return (REG(RFCORE_XREG_FSMSTAT1)
842 }
843 /*---------------------------------------------------------------------------*/
844 static int
845 pending_packet(void)
846 {
847  LOG_INFO("Pending\n");
848 
850 }
851 /*---------------------------------------------------------------------------*/
852 static radio_result_t
853 get_value(radio_param_t param, radio_value_t *value)
854 {
855  if(!value) {
856  return RADIO_RESULT_INVALID_VALUE;
857  }
858 
859  switch(param) {
860  case RADIO_PARAM_POWER_MODE:
862  *value = RADIO_POWER_MODE_OFF;
863  } else {
865  ? RADIO_POWER_MODE_ON : RADIO_POWER_MODE_CARRIER_ON;
866  }
867  return RADIO_RESULT_OK;
868  case RADIO_PARAM_CHANNEL:
869  *value = (radio_value_t)get_channel();
870  return RADIO_RESULT_OK;
871  case RADIO_PARAM_PAN_ID:
872  *value = get_pan_id();
873  return RADIO_RESULT_OK;
874  case RADIO_PARAM_16BIT_ADDR:
875  *value = get_short_addr();
876  return RADIO_RESULT_OK;
877  case RADIO_PARAM_RX_MODE:
878  *value = 0;
881  }
883  *value |= RADIO_RX_MODE_AUTOACK;
884  }
885  if(poll_mode) {
886  *value |= RADIO_RX_MODE_POLL_MODE;
887  }
888  return RADIO_RESULT_OK;
889  case RADIO_PARAM_TX_MODE:
890  *value = 0;
891  if(send_on_cca) {
892  *value |= RADIO_TX_MODE_SEND_ON_CCA;
893  }
894  return RADIO_RESULT_OK;
895  case RADIO_PARAM_TXPOWER:
896  *value = get_tx_power();
897  return RADIO_RESULT_OK;
898  case RADIO_PARAM_CCA_THRESHOLD:
899  *value = get_cca_threshold();
900  return RADIO_RESULT_OK;
901  case RADIO_PARAM_RSSI:
902  *value = get_rssi();
903  return RADIO_RESULT_OK;
904  case RADIO_PARAM_LAST_RSSI:
905  *value = rssi;
906  return RADIO_RESULT_OK;
907  case RADIO_PARAM_LAST_LINK_QUALITY:
908  *value = crc_corr & LQI_BIT_MASK;
909  return RADIO_RESULT_OK;
910  case RADIO_CONST_CHANNEL_MIN:
911  *value = CC2538_RF_CHANNEL_MIN;
912  return RADIO_RESULT_OK;
913  case RADIO_CONST_CHANNEL_MAX:
914  *value = CC2538_RF_CHANNEL_MAX;
915  return RADIO_RESULT_OK;
916  case RADIO_CONST_TXPOWER_MIN:
917  *value = OUTPUT_POWER_MIN;
918  return RADIO_RESULT_OK;
919  case RADIO_CONST_TXPOWER_MAX:
920  *value = OUTPUT_POWER_MAX;
921  return RADIO_RESULT_OK;
922  case RADIO_CONST_PHY_OVERHEAD:
923  *value = (radio_value_t)3; /* 1 len byte, 2 bytes CRC */
924  return RADIO_RESULT_OK;
925  case RADIO_CONST_BYTE_AIR_TIME:
926  *value = (radio_value_t)32; /* 250kbps data rate. One byte = 32us.*/
927  return RADIO_RESULT_OK;
928  case RADIO_CONST_DELAY_BEFORE_TX:
929  *value = (radio_value_t)CC2538_DELAY_BEFORE_TX;
930  return RADIO_RESULT_OK;
931  case RADIO_CONST_DELAY_BEFORE_RX:
932  *value = (radio_value_t)CC2538_DELAY_BEFORE_RX;
933  return RADIO_RESULT_OK;
934  case RADIO_CONST_DELAY_BEFORE_DETECT:
935  *value = (radio_value_t)CC2538_DELAY_BEFORE_DETECT;
936  return RADIO_RESULT_OK;
937  default:
938  return RADIO_RESULT_NOT_SUPPORTED;
939  }
940 }
941 /*---------------------------------------------------------------------------*/
942 static radio_result_t
943 set_value(radio_param_t param, radio_value_t value)
944 {
945  switch(param) {
946  case RADIO_PARAM_POWER_MODE:
947  if(value == RADIO_POWER_MODE_ON) {
948  on();
949  return RADIO_RESULT_OK;
950  }
951  if(value == RADIO_POWER_MODE_OFF) {
952  off();
953  return RADIO_RESULT_OK;
954  }
955  if(value == RADIO_POWER_MODE_CARRIER_ON ||
956  value == RADIO_POWER_MODE_CARRIER_OFF) {
957  set_test_mode((value == RADIO_POWER_MODE_CARRIER_ON), 0);
958  return RADIO_RESULT_OK;
959  }
960  return RADIO_RESULT_INVALID_VALUE;
961  case RADIO_PARAM_CHANNEL:
962  if(value < CC2538_RF_CHANNEL_MIN ||
963  value > CC2538_RF_CHANNEL_MAX) {
964  return RADIO_RESULT_INVALID_VALUE;
965  }
966  set_channel(value);
967  return RADIO_RESULT_OK;
968  case RADIO_PARAM_PAN_ID:
969  set_pan_id(value & 0xffff);
970  return RADIO_RESULT_OK;
971  case RADIO_PARAM_16BIT_ADDR:
972  set_short_addr(value & 0xffff);
973  return RADIO_RESULT_OK;
974  case RADIO_PARAM_RX_MODE:
975  if(value & ~(RADIO_RX_MODE_ADDRESS_FILTER |
976  RADIO_RX_MODE_AUTOACK |
977  RADIO_RX_MODE_POLL_MODE)) {
978  return RADIO_RESULT_INVALID_VALUE;
979  }
980 
981  set_frame_filtering((value & RADIO_RX_MODE_ADDRESS_FILTER) != 0);
982  set_auto_ack((value & RADIO_RX_MODE_AUTOACK) != 0);
983  set_poll_mode((value & RADIO_RX_MODE_POLL_MODE) != 0);
984 
985  return RADIO_RESULT_OK;
986  case RADIO_PARAM_TX_MODE:
987  if(value & ~(RADIO_TX_MODE_SEND_ON_CCA)) {
988  return RADIO_RESULT_INVALID_VALUE;
989  }
990  set_send_on_cca((value & RADIO_TX_MODE_SEND_ON_CCA) != 0);
991  return RADIO_RESULT_OK;
992  case RADIO_PARAM_TXPOWER:
993  if(value < OUTPUT_POWER_MIN || value > OUTPUT_POWER_MAX) {
994  return RADIO_RESULT_INVALID_VALUE;
995  }
996 
997  set_tx_power(value);
998  return RADIO_RESULT_OK;
999  case RADIO_PARAM_CCA_THRESHOLD:
1000  set_cca_threshold(value);
1001  return RADIO_RESULT_OK;
1002  case RADIO_PARAM_SHR_SEARCH:
1003  set_shr_search(value);
1004  return RADIO_RESULT_OK;
1005  default:
1006  return RADIO_RESULT_NOT_SUPPORTED;
1007  }
1008 }
1009 /*---------------------------------------------------------------------------*/
1010 static radio_result_t
1011 get_object(radio_param_t param, void *dest, size_t size)
1012 {
1013  uint8_t *target;
1014  int i;
1015 
1016  if(param == RADIO_PARAM_64BIT_ADDR) {
1017  if(size != 8 || !dest) {
1018  return RADIO_RESULT_INVALID_VALUE;
1019  }
1020 
1021  target = dest;
1022  for(i = 0; i < 8; i++) {
1023  target[i] = ((uint32_t *)RFCORE_FFSM_EXT_ADDR0)[7 - i] & 0xFF;
1024  }
1025 
1026  return RADIO_RESULT_OK;
1027  }
1028 
1029  if(param == RADIO_PARAM_LAST_PACKET_TIMESTAMP) {
1030  if(size != sizeof(rtimer_clock_t) || !dest) {
1031  return RADIO_RESULT_INVALID_VALUE;
1032  }
1033  *(rtimer_clock_t *)dest = get_sfd_timestamp();
1034  return RADIO_RESULT_OK;
1035  }
1036 
1037 #if MAC_CONF_WITH_TSCH
1038  if(param == RADIO_CONST_TSCH_TIMING) {
1039  if(size != sizeof(uint16_t *) || !dest) {
1040  return RADIO_RESULT_INVALID_VALUE;
1041  }
1042  /* Assigned value: a pointer to the TSCH timing in usec */
1043  *(const uint16_t **)dest = tsch_timeslot_timing_us_10000;
1044  return RADIO_RESULT_OK;
1045  }
1046 #endif /* MAC_CONF_WITH_TSCH */
1047 
1048  return RADIO_RESULT_NOT_SUPPORTED;
1049 }
1050 /*---------------------------------------------------------------------------*/
1051 static radio_result_t
1052 set_object(radio_param_t param, const void *src, size_t size)
1053 {
1054  int i;
1055 
1056  if(param == RADIO_PARAM_64BIT_ADDR) {
1057  if(size != 8 || !src) {
1058  return RADIO_RESULT_INVALID_VALUE;
1059  }
1060 
1061  for(i = 0; i < 8; i++) {
1062  ((uint32_t *)RFCORE_FFSM_EXT_ADDR0)[i] = ((uint8_t *)src)[7 - i];
1063  }
1064 
1065  return RADIO_RESULT_OK;
1066  }
1067  return RADIO_RESULT_NOT_SUPPORTED;
1068 }
1069 /*---------------------------------------------------------------------------*/
1071  init,
1072  prepare,
1073  transmit,
1074  send,
1075  read,
1076  channel_clear,
1079  on,
1080  off,
1081  get_value,
1082  set_value,
1083  get_object,
1084  set_object
1085 };
1086 /*---------------------------------------------------------------------------*/
1087 /**
1088  * \brief Implementation of the cc2538 RF driver process
1089  *
1090  * This process is started by init(). It simply sits there waiting for
1091  * an event. Upon frame reception, the RX ISR will poll this process.
1092  * Subsequently, the contiki core will generate an event which will
1093  * call this process so that the received frame can be picked up from
1094  * the RF RX FIFO
1095  *
1096  */
1097 PROCESS_THREAD(cc2538_rf_process, ev, data)
1098 {
1099  int len;
1100  PROCESS_BEGIN();
1101 
1102  while(1) {
1103  /* Only if we are not in poll mode oder we are in poll mode and transceiver has to be reset */
1104  PROCESS_YIELD_UNTIL((!poll_mode || (poll_mode && (rf_flags & RF_MUST_RESET))) && (ev == PROCESS_EVENT_POLL));
1105 
1106  if(!poll_mode) {
1107  packetbuf_clear();
1109 
1110  if(len > 0) {
1111  packetbuf_set_datalen(len);
1112 
1113  NETSTACK_MAC.input();
1114  }
1115  }
1116 
1117  /* If we were polled due to an RF error, reset the transceiver */
1118  if(rf_flags & RF_MUST_RESET) {
1119  uint8_t was_on;
1120  rf_flags = 0;
1121 
1122  /* save state so we know if to switch on again after re-init */
1124  was_on = 0;
1125  } else {
1126  was_on = 1;
1127  }
1128  off();
1129  init();
1130  if(was_on) {
1131  /* switch back on */
1132  on();
1133  }
1134  }
1135  }
1136 
1137  PROCESS_END();
1138 }
1139 /*---------------------------------------------------------------------------*/
1140 /**
1141  * \brief The cc2538 RF RX/TX ISR
1142  *
1143  * This is the interrupt service routine for all RF interrupts relating
1144  * to RX and TX. Error conditions are handled by cc2538_rf_err_isr().
1145  * Currently, we only acknowledge the FIFOP interrupt source.
1146  */
1147 void
1149 {
1150  if(!poll_mode) {
1151  process_poll(&cc2538_rf_process);
1152  }
1153 
1154  /* We only acknowledge FIFOP so we can safely wipe out the entire SFR */
1155  REG(RFCORE_SFR_RFIRQF0) = 0;
1156 }
1157 /*---------------------------------------------------------------------------*/
1158 /**
1159  * \brief The cc2538 RF Error ISR
1160  *
1161  * This is the interrupt service routine for all RF errors. We
1162  * acknowledge every error type and instead of trying to be smart and
1163  * act differently depending on error condition, we simply reset the
1164  * transceiver. RX FIFO overflow is an exception, we ignore this error
1165  * since read() handles it anyway.
1166  *
1167  * However, we don't want to reset within this ISR. If the error occurs
1168  * while we are reading a frame out of the FIFO, trashing the FIFO in
1169  * the middle of read(), would result in further errors (RX underflows).
1170  *
1171  * Instead, we set a flag and poll the driver process. The process will
1172  * reset the transceiver without any undesirable consequences.
1173  */
1174 void
1176 {
1177  LOG_ERR("Error 0x%08lx occurred\n", REG(RFCORE_SFR_RFERRF));
1178 
1179  /* If the error is not an RX FIFO overflow, set a flag */
1181  rf_flags |= RF_MUST_RESET;
1182  }
1183 
1184  REG(RFCORE_SFR_RFERRF) = 0;
1185 
1186  process_poll(&cc2538_rf_process);
1187 }
1188 /*---------------------------------------------------------------------------*/
1189 
1190 /** @} */
radio_result_t(* get_object)(radio_param_t param, void *dest, size_t size)
Get a radio parameter object.
Definition: radio.h:307
#define RFCORE_FFSM_SHORT_ADDR0
Local address information.
Definition: rfcore-ffsm.h:64
void * packetbuf_dataptr(void)
Get a pointer to the data in the packetbuf.
Definition: packetbuf.c:143
Top-level header file for cc2538 RF Core registers.
int(* prepare)(const void *payload, unsigned short payload_len)
Prepare the radio with a packet to be sent.
Definition: radio.h:269
#define RFCORE_SFR_MTM1_MTM1
Register[15:8].
Definition: rfcore-sfr.h:116
#define RFCORE_XREG_SRCMATCH
Source address matching.
Definition: rfcore-xreg.h:46
#define SYS_CTRL_RCGCRFC
RF Core clocks - active mode.
Definition: sys-ctrl.h:93
#define PROCESS(name, strname)
Declare a process.
Definition: process.h:307
#define RFCORE_SFR_MTCTRL_SYNC
Timer start/stop timing.
Definition: rfcore-sfr.h:79
#define RFCORE_SFR_MTMOVF0
MAC Timer MUX overflow 0.
Definition: rfcore-sfr.h:54
#define RFCORE_XREG_FRMCTRL0_AUTOACK
Transmit ACK frame enable.
Definition: rfcore-xreg.h:211
Header file for the cc2538 System Control driver.
#define RFCORE_XREG_FSMSTAT0
Radio status register.
Definition: rfcore-xreg.h:62
void udma_set_channel_dst(uint8_t channel, uint32_t dst_end)
Sets the channel&#39;s destination address.
Definition: udma.c:80
void packetbuf_clear(void)
Clear and reset the packetbuf.
Definition: packetbuf.c:75
#define RFCORE_SFR_MTM1
MAC Timer MUX register 1.
Definition: rfcore-sfr.h:51
#define SYS_CTRL_SCGCRFC
RF Core clocks - Sleep mode.
Definition: sys-ctrl.h:94
#define RFCORE_XREG_FSMSTAT1
Radio status register.
Definition: rfcore-xreg.h:63
static uip_ds6_addr_t * addr
Pointer to a nbr cache entry.
Definition: uip-nd6.c:107
#define RFCORE_SFR_MTCTRL_LATCH_MODE
OVF counter latch mode.
Definition: rfcore-sfr.h:77
Header file for the cc2538 RF driver.
Header file for the energy estimation mechanism
#define CC2538_RF_CSP_ISFLUSHTX()
Flush the TX FIFO.
Definition: cc2538-rf.h:120
#define PROCESS_YIELD_UNTIL(c)
Yield the currently running process until a condition occurs.
Definition: process.h:178
Header file for the radio API
#define PROCESS_BEGIN()
Define the beginning of a process.
Definition: process.h:120
#define RFCORE_SFR_MTMOVF0_MTMOVF0
Register[7:0].
Definition: rfcore-sfr.h:124
Header file for the link-layer address representation
#define PROCESS_END()
Define the end of a process.
Definition: process.h:131
int(* receiving_packet)(void)
Check if the radio driver is currently receiving a packet.
Definition: radio.h:285
#define RFCORE_XREG_MDMTEST1
Test Register for Modem.
Definition: rfcore-xreg.h:100
#define RFCORE_FFSM_SHORT_ADDR1
Local address information.
Definition: rfcore-ffsm.h:65
#define RFCORE_SFR_MTCTRL_RUN
Timer start/stop.
Definition: rfcore-sfr.h:80
radio_result_t(* set_value)(radio_param_t param, radio_value_t value)
Set a radio parameter value.
Definition: radio.h:300
int(* pending_packet)(void)
Check if the radio driver has just received a packet.
Definition: radio.h:288
void clock_delay_usec(uint16_t dt)
Delay a given number of microseconds.
Definition: clock.c:150
The structure of a device driver for a radio in Contiki.
Definition: radio.h:264
static void set_channel(uint8_t channel)
Set the current operating channel.
Definition: cc2538-rf.c:168
#define RFCORE_XREG_FSMSTAT1_SFD
SFD was sent/received.
Definition: rfcore-xreg.h:283
Header file with register manipulation macro definitions.
#define RFCORE_XREG_FRMFILT0_FRAME_FILTER_EN
Enables frame filtering.
Definition: rfcore-xreg.h:149
#define RFCORE_XREG_CCACTRL0_CCA_THR
Clear-channel-assessment.
Definition: rfcore-xreg.h:307
int(* channel_clear)(void)
Perform a Clear-Channel Assessment (CCA) to find out if there is a packet in the air or not...
Definition: radio.h:282
int radio_value_t
Each radio has a set of parameters that designate the current configuration and state of the radio...
Definition: radio.h:88
#define CC2538_RF_CONF_RX_DMA_CHAN
RAM -> RF DMA channel.
Definition: cc2538-conf.h:96
#define RFCORE_SFR_MTMSEL
MAC Timer multiplex select.
Definition: rfcore-sfr.h:49
#define RFCORE_SFR_RFDATA
TX/RX FIFO data.
Definition: rfcore-sfr.h:60
const struct radio_driver cc2538_rf_driver
The NETSTACK data structure for the cc2538 RF driver.
Definition: cc2538-rf.c:1070
Header file with register, macro and function declarations for the cc2538 micro-DMA controller module...
#define CC2538_RF_CONF_TX_DMA_CHAN
RF -> RAM DMA channel.
Definition: cc2538-conf.h:95
#define RFCORE_XREG_FSMSTAT1_TX_ACTIVE
Status signal - TX states.
Definition: rfcore-xreg.h:287
void udma_channel_mask_set(uint8_t channel)
Disable peripheral triggers for a uDMA channel.
Definition: udma.c:204
#define RFCORE_XREG_RFERRM_RFERRM
RF error interrupt mask.
Definition: rfcore-xreg.h:393
__STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn)
Disable External Interrupt.
Definition: core_cm0.h:653
#define IEEE802154_DEFAULT_CHANNEL
The default channel for IEEE 802.15.4 networks.
Definition: mac.h:52
#define RTIMER_NOW()
Get the current clock time.
Definition: rtimer.h:160
#define RFCORE_XREG_FSMSTAT0_FSM_FFCTRL_STATE
FIFO and FFCTRL status.
Definition: rfcore-xreg.h:275
#define RFCORE_FFSM_EXT_ADDR0
Local address information.
Definition: rfcore-ffsm.h:54
__STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn)
Enable External Interrupt.
Definition: core_cm0.h:642
#define CC2538_RF_CSP_ISRXON()
Send an RX ON command strobe to the CSP.
Definition: cc2538-rf.h:95
RF Tx/Rx Interrupt.
Definition: cc2538_cm3.h:109
void udma_set_channel_src(uint8_t channel, uint32_t src_end)
Sets the channels source address.
Definition: udma.c:70
#define RFCORE_XREG_FSCAL1
Tune frequency calibration.
Definition: rfcore-xreg.h:89
#define RFCORE_XREG_TXPOWER
Controls the output power.
Definition: rfcore-xreg.h:60
void(* input)(void)
Callback for getting notified of incoming packet.
Definition: mac.h:72
#define RFCORE_XREG_FSMSTAT1_FIFO
FIFO status.
Definition: rfcore-xreg.h:281
#define CC2538_RF_CSP_ISRFOFF()
Send a RF OFF command strobe to the CSP.
Definition: cc2538-rf.h:107
#define RFCORE_XREG_RFIRQM0
RF interrupt masks.
Definition: rfcore-xreg.h:79
int(* send)(const void *payload, unsigned short payload_len)
Prepare & transmit a packet.
Definition: radio.h:275
int(* transmit)(unsigned short transmit_len)
Send the packet that has previously been prepared.
Definition: radio.h:272
#define RFCORE_XREG_RSSISTAT
RSSI valid status register.
Definition: rfcore-xreg.h:69
#define RFCORE_XREG_FRMCTRL0_TX_MODE
Set test modes for TX.
Definition: rfcore-xreg.h:214
void process_poll(struct process *p)
Request a process to be polled.
Definition: process.c:371
int(* off)(void)
Turn the radio off.
Definition: radio.h:294
#define RFCORE_FFSM_PAN_ID0
Local address information.
Definition: rfcore-ffsm.h:62
#define RFCORE_XREG_FRMCTRL0
Frame handling.
Definition: rfcore-xreg.h:53
#define RFCORE_XREG_FSMSTAT1_FIFOP
FIFOP status.
Definition: rfcore-xreg.h:282
#define RFCORE_XREG_RFIRQM0_FIFOP
RX FIFO exceeded threshold.
Definition: rfcore-xreg.h:373
void cc2538_rf_err_isr(void)
The cc2538 RF Error ISR.
Definition: cc2538-rf.c:1175
#define RFCORE_XREG_FREQCTRL
Controls the RF frequency.
Definition: rfcore-xreg.h:59
void udma_channel_enable(uint8_t channel)
Enables a uDMA channel.
Definition: udma.c:120
Header file for the real-time timer module.
#define RFCORE_SFR_MTM0
MAC Timer MUX register 0.
Definition: rfcore-sfr.h:50
#define RFCORE_XREG_FRMCTRL0_RX_MODE
Set RX modes.
Definition: rfcore-xreg.h:213
#define PACKETBUF_SIZE
The size of the packetbuf, in bytes.
Definition: packetbuf.h:67
#define RFCORE_XREG_FSMSTAT1_CCA
Clear channel assessment.
Definition: rfcore-xreg.h:284
#define RFCORE_XREG_TXFILTCFG
TX filter configuration.
Definition: rfcore-xreg.h:141
Main API declarations for TSCH.
#define RFCORE_FFSM_PAN_ID1
Local address information.
Definition: rfcore-ffsm.h:63
#define RADIO_RX_MODE_ADDRESS_FILTER
The radio reception mode controls address filtering and automatic transmission of acknowledgements in...
Definition: radio.h:231
#define RFCORE_SFR_MTMOVF2
MAC Timer MUX overflow 2.
Definition: rfcore-sfr.h:52
void udma_channel_sw_request(uint8_t channel)
Generate a software trigger to start a transfer.
Definition: udma.c:225
#define RFCORE_XREG_FIFOPCTRL
FIFOP threshold.
Definition: rfcore-xreg.h:64
#define RADIO_TX_MODE_SEND_ON_CCA
The radio transmission mode controls whether transmissions should be done using clear channel assessm...
Definition: radio.h:243
#define RFCORE_SFR_RFIRQF0_FIFOP
RX FIFO exceeded threshold.
Definition: rfcore-sfr.h:164
void cc2538_rf_rx_tx_isr(void)
The cc2538 RF RX/TX ISR.
Definition: cc2538-rf.c:1148
#define RFCORE_SFR_MTMOVF1_MTMOVF1
Register[15:8].
Definition: rfcore-sfr.h:123
RF Error Interrupt.
Definition: cc2538_cm3.h:110
#define RFCORE_XREG_RFERRM
RF error interrupt mask.
Definition: rfcore-xreg.h:81
static radio_value_t get_rssi(void)
Reads the current signal strength (RSSI)
Definition: cc2538-rf.c:226
#define RFCORE_SFR_MTCTRL_STATE
State of MAC Timer.
Definition: rfcore-sfr.h:78
#define CC2538_RF_CSP_ISTXON()
Send a TX ON command strobe to the CSP.
Definition: cc2538-rf.h:101
#define RFCORE_SFR_MTMOVF2_MTMOVF2
Register[23:16].
Definition: rfcore-sfr.h:117
#define RFCORE_SFR_MTCTRL
MAC Timer control register.
Definition: rfcore-sfr.h:46
int(* read)(void *buf, unsigned short buf_len)
Read a received packet into a buffer.
Definition: radio.h:278
#define RFCORE_XREG_CCACTRL0
CCA threshold.
Definition: rfcore-xreg.h:66
#define CC2538_RF_CSP_ISFLUSHRX()
Flush the RX FIFO.
Definition: cc2538-rf.h:113
#define RFCORE_XREG_RSSI
RSSI status register.
Definition: rfcore-xreg.h:68
#define RFCORE_SFR_MTMOVF1
MAC Timer MUX overflow 1.
Definition: rfcore-sfr.h:53
Header file for the Packet buffer (packetbuf) management
Include file for the Contiki low-layer network stack (NETSTACK)
radio_result_t(* get_value)(radio_param_t param, radio_value_t *value)
Get a radio parameter value.
Definition: radio.h:297
#define RFCORE_XREG_FRMCTRL0_AUTOCRC
Auto CRC generation / checking.
Definition: rfcore-xreg.h:210
#define RFCORE_XREG_AGCCTRL1
AGC reference level.
Definition: rfcore-xreg.h:93
void udma_set_channel_control_word(uint8_t channel, uint32_t ctrl)
Configure the channel&#39;s control word.
Definition: udma.c:90
#define RFCORE_XREG_RSSISTAT_RSSI_VALID
RSSI value is valid.
Definition: rfcore-xreg.h:327
PROCESS_THREAD(cc2538_rf_process, ev, data)
Implementation of the cc2538 RF driver process.
Definition: cc2538-rf.c:1097
#define udma_xfer_size(len)
Calculate the value of the xfersize field in the control structure.
Definition: udma.h:697
#define RFCORE_XREG_RXENABLE_RXENMASK
Enables the receiver.
Definition: rfcore-xreg.h:228
#define CC2538_RF_CONF_RX_USE_DMA
RF RX over DMA.
Definition: cc2538-conf.h:232
static int init(void)
Definition: cc2538-rf.c:514
uint8_t udma_channel_get_mode(uint8_t channel)
Retrieve the current mode for a channel.
Definition: udma.c:235
#define RFCORE_SFR_RFERRF
RF error interrupt flags.
Definition: rfcore-sfr.h:61
Header file for the logging system
#define RFCORE_SFR_MTMSEL_MTMOVFSEL
MTMOVF register select.
Definition: rfcore-sfr.h:108
radio_result_t(* set_object)(radio_param_t param, const void *src, size_t size)
Set a radio parameter object.
Definition: radio.h:313
#define RFCORE_SFR_RFERRF_RXOVERF
RX FIFO overflowed.
Definition: rfcore-sfr.h:140
#define RFCORE_SFR_MTMSEL_MTMSEL
MTM register select.
Definition: rfcore-sfr.h:109
#define SYS_CTRL_DCGCRFC
RF Core clocks - PM0.
Definition: sys-ctrl.h:95
#define RFCORE_XREG_RXENABLE
RX enabling.
Definition: rfcore-xreg.h:55
void packetbuf_set_datalen(uint16_t len)
Set the length of the data in the packetbuf.
Definition: packetbuf.c:136
const tsch_timeslot_timing_usec tsch_timeslot_timing_us_10000
The default timeslot timing in the standard is a guard time of 2200 us, a Tx offset of 2120 us and a ...
int(* on)(void)
Turn the radio on.
Definition: radio.h:291
#define CC2538_RF_CONF_TX_USE_DMA
RF TX over DMA.
Definition: cc2538-conf.h:228
#define RFCORE_SFR_MTM0_MTM0
Register[7:0].
Definition: rfcore-sfr.h:115
#define RFCORE_SFR_RFIRQF0
RF interrupt flags.
Definition: rfcore-sfr.h:63
void process_start(struct process *p, process_data_t data)
Start a process.
Definition: process.c:99
static uint8_t get_channel()
Get the current operating channel.
Definition: cc2538-rf.c:158
#define RFCORE_XREG_FRMFILT0
Frame filtering control.
Definition: rfcore-xreg.h:44