The structure of a RDC (radio duty cycling) driver in Contiki.
More...
#include <core/net/mac/rdc.h>
|
void(* | init )(void) |
| Initialize the RDC driver.
|
|
void(* | send )(mac_callback_t sent_callback, void *ptr) |
| Send a packet from the Rime buffer.
|
|
void(* | input )(void) |
| Callback for getting notified of incoming packet. More...
|
|
int(* | on )(void) |
| Turn the MAC layer on. More...
|
|
int(* | off )(int keep_radio_on) |
| Turn the MAC layer off. More...
|
|
unsigned short(* | channel_check_interval )(void) |
| Returns the channel check interval, expressed in clock_time_t ticks. More...
|
|
The structure of a RDC (radio duty cycling) driver in Contiki.
Definition at line 51 of file rdc.h.
unsigned short(* rdc_driver::channel_check_interval)(void) |
Returns the channel check interval, expressed in clock_time_t ticks.
Definition at line 70 of file rdc.h.
void(* rdc_driver::input)(void) |
Callback for getting notified of incoming packet.
Definition at line 61 of file rdc.h.
int(* rdc_driver::off)(int keep_radio_on) |
Turn the MAC layer off.
Definition at line 67 of file rdc.h.
int(* rdc_driver::on)(void) |
Turn the MAC layer on.
Definition at line 64 of file rdc.h.