1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/sixlowpan/rpl/trickle.h

14 lines
372 B
C
Raw Normal View History

2012-02-02 21:31:28 +01:00
#include <vtimer.h>
#include <thread.h>
#define TRICKLE_TIMER_STACKSIZE 1024
#define TRICKLE_INTERVAL_STACKSIZE 3024
2012-01-19 17:35:50 +01:00
void reset_trickletimer(void);
2012-02-02 21:31:28 +01:00
void init_trickle(void);
void start_trickle(uint8_t DIOINtMin, uint8_t DIOIntDoubl, uint8_t DIORedundancyConstatnt);
void trickle_increment_counter(void);
void trickle_timer_over(void);
void trickle_interval_over(void);
2012-01-19 17:35:50 +01:00