ESP32-PaxCounter/include/rcommand.h
2019-03-13 21:47:05 +01:00

30 lines
537 B
C

#ifndef _RCOMMAND_H
#define _RCOMMAND_H
#include "senddata.h"
#include "cyclic.h"
#include "configmanager.h"
#if(HAS_LORA)
#include "lorawan.h"
#endif
#include "macsniff.h"
#include <rom/rtc.h>
#include "cyclic.h"
#include "timekeeper.h"
#if(TIME_SYNC_TIMESERVER)
#include "timesync.h"
#endif
// table of remote commands and assigned functions
typedef struct {
const uint8_t opcode;
void (*func)(uint8_t []);
uint8_t params;
const bool store;
} cmd_t;
void rcommand(uint8_t cmd[], uint8_t cmdlength);
void do_reset();
#endif