This commit is contained in:
Verkehrsrot 2019-03-07 00:01:51 +01:00
parent a8c65b338f
commit 9b3d2309d8
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -11,5 +11,4 @@
.gcc-flags.json .gcc-flags.json
src/loraconf.h src/loraconf.h
src/ota.conf src/ota.conf
src/DBtimesync.cpp src/DBtimesync.cpp
include/DBtimesync.h

View File

@ -4,7 +4,9 @@
#include "globals.h" #include "globals.h"
#include "rcommand.h" #include "rcommand.h"
#include "timekeeper.h" #include "timekeeper.h"
#ifdef DBTIMESYNC
#include "DBtimesync.h" #include "DBtimesync.h"
#endif
// LMIC-Arduino LoRaWAN Stack // LMIC-Arduino LoRaWAN Stack
#include <lmic.h> #include <lmic.h>

View File

@ -9,7 +9,9 @@
#include <rom/rtc.h> #include <rom/rtc.h>
#include "cyclic.h" #include "cyclic.h"
#include "timekeeper.h" #include "timekeeper.h"
#ifdef DBTIMESYNC
#include "DBtimesync.h" #include "DBtimesync.h"
#endif
// table of remote commands and assigned functions // table of remote commands and assigned functions
typedef struct { typedef struct {