payload encoder (experimental)
This commit is contained in:
parent
095334a2a6
commit
93de42e09b
@ -45,6 +45,7 @@ extern gpsStatus_t gps_status; // struct for storing gps data
|
||||
extern TinyGPSPlus gps; // Make TinyGPS++ instance globally availabe
|
||||
#endif
|
||||
|
||||
/*
|
||||
// payload encoder
|
||||
#if (PAYLOAD_ENCODER == 1)
|
||||
extern TTNplain payload;
|
||||
@ -54,4 +55,7 @@ extern TTNserialized payload;
|
||||
extern CayenneLPP payload;
|
||||
#else
|
||||
#error "No valid payload converter defined"
|
||||
#endif
|
||||
#endif
|
||||
*/
|
||||
|
||||
extern TTNplain payload;
|
@ -70,6 +70,7 @@ portMUX_TYPE timerMux =
|
||||
std::set<uint16_t> macs; // associative container holds total of unique MAC
|
||||
// adress hashes (Wifi + BLE)
|
||||
|
||||
/*
|
||||
// initialize payload encoder
|
||||
#if (PAYLOAD_ENCODER == 1)
|
||||
TTNplain payload(PAYLOAD_BUFFER_SIZE);
|
||||
@ -80,6 +81,10 @@ CayenneLPP payload(PAYLOAD_BUFFER_SIZE);
|
||||
#else
|
||||
#error "No valid payload converter defined"
|
||||
#endif
|
||||
*/
|
||||
|
||||
TTNplain payload(PAYLOAD_BUFFER_SIZE);
|
||||
|
||||
|
||||
// this variables will be changed in the ISR, and read in main loop
|
||||
static volatile int ButtonPressedIRQ = 0, DisplayTimerIRQ = 0,
|
||||
|
Loading…
Reference in New Issue
Block a user