2018-07-31 00:00:24 +02:00
|
|
|
#ifndef _CYCLIC_H
|
|
|
|
#define _CYCLIC_H
|
2018-07-22 20:27:58 +02:00
|
|
|
|
2018-10-03 23:07:22 +02:00
|
|
|
#include "globals.h"
|
2018-10-03 00:25:05 +02:00
|
|
|
#include "senddata.h"
|
2018-11-14 22:11:23 +01:00
|
|
|
#include "rcommand.h"
|
|
|
|
#include "spislave.h"
|
|
|
|
#include <lmic.h>
|
2018-10-03 00:25:05 +02:00
|
|
|
|
2018-09-21 18:23:34 +02:00
|
|
|
void doHousekeeping(void);
|
2018-11-14 22:11:23 +01:00
|
|
|
void do_timesync(void);
|
2018-07-23 13:20:06 +02:00
|
|
|
uint64_t uptime(void);
|
|
|
|
void reset_counters(void);
|
|
|
|
int redirect_log(const char *fmt, va_list args);
|
2018-07-22 20:27:58 +02:00
|
|
|
|
|
|
|
#endif
|