2013-06-22 05:11:53 +02:00
|
|
|
/**
|
|
|
|
* Trickle constants and prototypes
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 INRIA.
|
|
|
|
*
|
|
|
|
* This file subject to the terms and conditions of the GNU Lesser General
|
|
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* @ingroup rpl
|
|
|
|
* @{
|
|
|
|
* @file trickle.h
|
|
|
|
* @brief Trickle
|
|
|
|
* @author Eric Engel <eric.engel@fu-berlin.de>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2012-02-02 21:31:28 +01:00
|
|
|
#include <vtimer.h>
|
|
|
|
#include <thread.h>
|
|
|
|
|
2013-06-22 05:11:53 +02:00
|
|
|
#define TRICKLE_TIMER_STACKSIZE 3072
|
2012-02-14 22:22:01 +01:00
|
|
|
#define TRICKLE_INTERVAL_STACKSIZE 3072
|
2012-03-12 16:22:52 +01:00
|
|
|
#define DAO_DELAY_STACKSIZE 3072
|
|
|
|
#define RT_STACKSIZE 512
|
2012-02-02 21:31:28 +01:00
|
|
|
|
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-02-16 23:23:15 +01:00
|
|
|
void delay_dao(void);
|
|
|
|
void dao_delay_over(void);
|
2012-03-27 17:56:47 +02:00
|
|
|
void dao_ack_received(void);
|
2012-02-26 19:30:48 +01:00
|
|
|
void rt_timer_over(void);
|