mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
372 B
C
14 lines
372 B
C
#include <vtimer.h>
|
|
#include <thread.h>
|
|
|
|
#define TRICKLE_TIMER_STACKSIZE 1024
|
|
#define TRICKLE_INTERVAL_STACKSIZE 3024
|
|
|
|
void reset_trickletimer(void);
|
|
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);
|
|
|