2018-07-17 15:15:58 +02:00
|
|
|
#ifndef _RCOMMAND_H
|
|
|
|
#define _RCOMMAND_H
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2018-07-17 11:53:43 +02:00
|
|
|
#include "senddata.h"
|
2018-11-04 19:25:11 +01:00
|
|
|
#include "cyclic.h"
|
2018-07-17 11:53:43 +02:00
|
|
|
#include "configmanager.h"
|
2018-07-31 00:00:24 +02:00
|
|
|
#include "lorawan.h"
|
|
|
|
#include "macsniff.h"
|
2018-08-12 15:42:58 +02:00
|
|
|
#include <rom/rtc.h>
|
2019-01-19 19:54:54 +01:00
|
|
|
#include "cyclic.h"
|
2018-08-12 00:17:57 +02:00
|
|
|
|
2018-07-29 16:16:50 +02:00
|
|
|
// table of remote commands and assigned functions
|
|
|
|
typedef struct {
|
2018-07-31 00:00:24 +02:00
|
|
|
const uint8_t opcode;
|
|
|
|
void (*func)(uint8_t []);
|
2018-08-02 11:33:02 +02:00
|
|
|
uint8_t params;
|
2018-07-29 16:16:50 +02:00
|
|
|
const bool store;
|
|
|
|
} cmd_t;
|
|
|
|
|
2018-07-31 00:00:24 +02:00
|
|
|
void rcommand(uint8_t cmd[], uint8_t cmdlength);
|
2018-10-17 07:10:37 +02:00
|
|
|
void do_reset();
|
2018-07-15 14:28:05 +02:00
|
|
|
|
|
|
|
#endif
|