ESP32-PaxCounter/src/lorawan.cpp

576 lines
17 KiB
C++
Raw Normal View History

2019-10-10 23:11:23 +02:00
// Basic Config
2020-06-19 21:44:15 +02:00
2019-10-10 23:11:23 +02:00
#if (HAS_LORA)
#include "lorawan.h"
// Local logging Tag
static const char TAG[] = "lora";
2020-12-09 10:15:12 +01:00
// Saves the LMIC structure during deep sleep
RTC_DATA_ATTR lmic_t RTC_LMIC;
2019-10-10 23:11:23 +02:00
#if CLOCK_ERROR_PROCENTAGE > 7
#warning CLOCK_ERROR_PROCENTAGE value in lmic_config.h is too high; values > 7 will cause side effects
#endif
#if (TIME_SYNC_LORAWAN)
#ifndef LMIC_ENABLE_DeviceTimeReq
#define LMIC_ENABLE_DeviceTimeReq 1
#endif
#endif
QueueHandle_t LoraSendQueue;
TaskHandle_t lmicTask = NULL, lorasendTask = NULL;
class MyHalConfig_t : public Arduino_LMIC::HalConfiguration_t {
public:
MyHalConfig_t(){};
// set SPI pins to board configuration, pins may come from pins_arduino.h
2019-10-10 23:11:23 +02:00
virtual void begin(void) override {
SPI.begin(LORA_SCK, LORA_MISO, LORA_MOSI, LORA_CS);
}
// virtual void end(void) override
// virtual ostime_t setModuleActive(bool state) override
};
2019-10-10 23:11:23 +02:00
static MyHalConfig_t myHalConfig{};
2019-10-10 23:11:23 +02:00
// LMIC pin mapping for Hope RFM95 / HPDtek HPD13A transceivers
static const lmic_pinmap myPinmap = {
2019-10-10 23:11:23 +02:00
.nss = LORA_CS,
.rxtx = LMIC_UNUSED_PIN,
.rst = LORA_RST == NOT_A_PIN ? LMIC_UNUSED_PIN : LORA_RST,
.dio = {LORA_IRQ, LORA_IO1,
LORA_IO2 == NOT_A_PIN ? LMIC_UNUSED_PIN : LORA_IO2},
.rxtx_rx_active = LMIC_UNUSED_PIN,
.rssi_cal = 10,
.spi_freq = 8000000, // 8MHz
2019-10-10 23:11:23 +02:00
.pConfig = &myHalConfig};
void lora_setupForNetwork(bool preJoin) {
if (preJoin) {
#if CFG_LMIC_US_like
// in the US, with TTN, it saves join time if we start on subband 1
// (channels 8-15). This will get overridden after the join by
// parameters from the network. If working with other networks or in
// other regions, this will need to be changed.
LMIC_selectSubBand(1);
#elif CFG_LMIC_EU_like
2019-11-08 23:06:31 +01:00
// settings for TheThingsNetwork
2019-10-16 21:14:34 +02:00
// Enable link check validation
LMIC_setLinkCheckMode(true);
2019-10-10 23:11:23 +02:00
#endif
} else {
// set data rate adaptation according to saved setting
LMIC_setAdrMode(cfg.adrmode);
// set data rate and transmit power to stored device values if no ADR
if (!cfg.adrmode)
LMIC_setDrTxpow(assertDR(cfg.loradr), cfg.txpower);
// show current devaddr
ESP_LOGI(TAG, "DEVaddr: 0x%08X | Network ID: 0x%06X | Network Type: %d",
LMIC.devaddr, LMIC.netid & 0x001FFFFF, LMIC.netid & 0x00E00000);
2020-03-07 13:00:22 +01:00
ESP_LOGI(TAG, "RSSI: %d | SNR: %d", LMIC.rssi, (LMIC.snr + 2) / 4);
ESP_LOGI(TAG, "Radio parameters: %s | %s | %s",
2019-10-10 23:11:23 +02:00
getSfName(updr2rps(LMIC.datarate)),
getBwName(updr2rps(LMIC.datarate)),
getCrName(updr2rps(LMIC.datarate)));
}
}
// DevEUI generator using devices's MAC address
void gen_lora_deveui(uint8_t *pdeveui) {
uint8_t *p = pdeveui, dmac[6];
int i = 0;
esp_efuse_mac_get_default(dmac);
// deveui is LSB, we reverse it so TTN DEVEUI display
// will remain the same as MAC address
// MAC is 6 bytes, devEUI 8, set first 2 ones
// with an arbitrary value
*p++ = 0xFF;
*p++ = 0xFE;
// Then next 6 bytes are mac address reversed
for (i = 0; i < 6; i++) {
*p++ = dmac[5 - i];
}
}
/* new version, does it with well formed mac according IEEE spec, but is
breaking change
// DevEUI generator using devices's MAC address
void gen_lora_deveui(uint8_t *pdeveui) {
uint8_t *p = pdeveui, dmac[6];
ESP_ERROR_CHECK(esp_efuse_mac_get_default(dmac));
// deveui is LSB, we reverse it so TTN DEVEUI display
// will remain the same as MAC address
// MAC is 6 bytes, devEUI 8, set middle 2 ones
// to an arbitrary value
*p++ = dmac[5];
*p++ = dmac[4];
*p++ = dmac[3];
*p++ = 0xfe;
*p++ = 0xff;
*p++ = dmac[2];
*p++ = dmac[1];
*p++ = dmac[0];
}
*/
// Function to do a byte swap in a byte array
void RevBytes(unsigned char *b, size_t c) {
u1_t i;
for (i = 0; i < c / 2; i++) {
unsigned char t = b[i];
b[i] = b[c - 1 - i];
b[c - 1 - i] = t;
}
}
// LMIC callback functions
2020-04-10 22:56:17 +02:00
void os_getDevKey(u1_t *buf) {
2020-03-05 14:07:57 +01:00
#ifndef LORA_ABP
2020-04-10 22:56:17 +02:00
memcpy(buf, APPKEY, 16);
2020-03-05 14:07:57 +01:00
#endif
}
2019-10-10 23:11:23 +02:00
void os_getArtEui(u1_t *buf) {
2020-03-05 14:07:57 +01:00
#ifndef LORA_ABP
2019-10-10 23:11:23 +02:00
memcpy(buf, APPEUI, 8);
RevBytes(buf, 8); // TTN requires it in LSB First order, so we swap bytes
2020-03-05 14:07:57 +01:00
#endif
2019-10-10 23:11:23 +02:00
}
void os_getDevEui(u1_t *buf) {
2020-03-05 14:07:57 +01:00
#ifndef LORA_ABP
2019-10-10 23:11:23 +02:00
int i = 0, k = 0;
memcpy(buf, DEVEUI, 8); // get fixed DEVEUI from loraconf.h
for (i = 0; i < 8; i++) {
k += buf[i];
}
if (k) {
RevBytes(buf, 8); // use fixed DEVEUI and swap bytes to LSB format
} else {
gen_lora_deveui(buf); // generate DEVEUI from device's MAC
}
2020-03-05 14:07:57 +01:00
#endif
2019-10-10 23:11:23 +02:00
}
#if (VERBOSE)
// Display OTAA keys
void showLoraKeys(void) {
// LMIC may not have used callback to fill
// all EUI buffer so we do it here to a temp
// buffer to be able to display them
uint8_t buf[32];
os_getDevEui((u1_t *)buf);
printKey("DevEUI", buf, 8, true);
os_getArtEui((u1_t *)buf);
printKey("AppEUI", buf, 8, true);
os_getDevKey((u1_t *)buf);
printKey("AppKey", buf, 16, false);
}
#endif // VERBOSE
// LMIC send task
void lora_send(void *pvParameters) {
2020-10-30 12:24:16 +01:00
_ASSERT((uint32_t)pvParameters == 1); // FreeRTOS check
2019-10-10 23:11:23 +02:00
MessageBuffer_t SendBuffer;
while (1) {
// postpone until we are joined if we are not
2019-10-16 21:14:34 +02:00
while (!LMIC.devaddr) {
vTaskDelay(pdMS_TO_TICKS(500));
}
2019-10-10 23:11:23 +02:00
// fetch next or wait for payload to send from queue
2020-12-09 10:15:12 +01:00
// do not delete item from queue until it is transmitted
if (xQueuePeek(LoraSendQueue, &SendBuffer, portMAX_DELAY) != pdTRUE) {
2019-10-10 23:11:23 +02:00
ESP_LOGE(TAG, "Premature return from xQueueReceive() with no data!");
continue;
}
// attempt to transmit payload
2020-12-09 10:15:12 +01:00
switch (LMIC_setTxData2_strict(SendBuffer.MessagePort, SendBuffer.Message,
SendBuffer.MessageSize,
(cfg.countermode & 0x02))) {
2020-12-09 10:15:12 +01:00
case LMIC_ERROR_SUCCESS:
#if (TIME_SYNC_LORASERVER)
2020-12-09 10:15:12 +01:00
// if last packet sent was a timesync request, store TX timestamp
if (SendBuffer.MessagePort == TIMEPORT)
// store LMIC time when we started transmit of timesync request
timesync_store(osticks2ms(os_getTime()), timesync_tx);
#endif
2020-12-09 10:15:12 +01:00
ESP_LOGI(TAG, "%d byte(s) sent to LORA", SendBuffer.MessageSize);
// delete sent item from queue
xQueueReceive(LoraSendQueue, &SendBuffer, (TickType_t)0);
break;
case LMIC_ERROR_TX_BUSY: // LMIC already has a tx message pending
case LMIC_ERROR_TX_FAILED: // message was not sent
vTaskDelay(pdMS_TO_TICKS(500 + random(400))); // wait a while
break;
case LMIC_ERROR_TX_TOO_LARGE: // message size exceeds LMIC buffer size
case LMIC_ERROR_TX_NOT_FEASIBLE: // message too large for current
// datarate
ESP_LOGI(TAG, "Message too large to send, message not sent and deleted");
// we need some kind of error handling here -> to be done
break;
default: // other LMIC return code
ESP_LOGE(TAG, "LMIC error, message not sent and deleted");
} // switch
2019-10-10 23:11:23 +02:00
delay(2); // yield to CPU
} // while(1)
2020-04-14 09:57:02 +02:00
}
2020-12-09 10:15:12 +01:00
esp_err_t lmic_init(void) {
2020-10-30 12:24:16 +01:00
_ASSERT(SEND_QUEUE_SIZE > 0);
2019-10-10 23:11:23 +02:00
LoraSendQueue = xQueueCreate(SEND_QUEUE_SIZE, sizeof(MessageBuffer_t));
if (LoraSendQueue == 0) {
ESP_LOGE(TAG, "Could not create LORA send queue. Aborting.");
return ESP_FAIL;
}
ESP_LOGI(TAG, "LORA send queue created, size %d Bytes",
SEND_QUEUE_SIZE * sizeof(MessageBuffer_t));
2020-12-09 10:15:12 +01:00
// setup LMIC stack
os_init_ex(&myPinmap); // initialize lmic run-time environment
// register a callback for downlink messages and lmic events.
// We aren't trying to write reentrant code, so pUserData is NULL.
// LMIC_reset() doesn't affect callbacks, so we can do this first.
LMIC_registerRxMessageCb(myRxCallback, NULL);
LMIC_registerEventCb(myEventCallback, NULL);
// to come with future LMIC version
// LMIC_registerBattLevelCb(myBattLevelCb, NULL);
// Reset the MAC state. Session and pending data transfers will be
// discarded.
LMIC_reset();
// This tells LMIC to make the receive windows bigger, in case your clock is
// faster or slower. This causes the transceiver to be earlier switched on,
// so consuming more power. You may sharpen (reduce) CLOCK_ERROR_PERCENTAGE
// in src/lmic_config.h if you are limited on battery.
#ifdef CLOCK_ERROR_PROCENTAGE
LMIC_setClockError(CLOCK_ERROR_PROCENTAGE * MAX_CLOCK_ERROR / 1000);
#endif
// Pass ABP parameters to LMIC_setSession
#ifdef LORA_ABP
setABPParameters(); // These parameters are defined as macro in loraconf.h
// load saved session from RTC, if we have one
if (RTC_runmode == RUNMODE_WAKEUP) {
LoadLMICFromRTC();
} else {
uint8_t appskey[sizeof(APPSKEY)];
uint8_t nwkskey[sizeof(NWKSKEY)];
memcpy_P(appskey, APPSKEY, sizeof(APPSKEY));
memcpy_P(nwkskey, NWKSKEY, sizeof(NWKSKEY));
LMIC_setSession(NETID, DEVADDR, nwkskey, appskey);
}
// Pass OTA parameters to LMIC_setSession
#else
// load saved session from RTC, if we have one
if (RTC_runmode == RUNMODE_WAKEUP) {
LoadLMICFromRTC();
}
// otherwise start join procedure if not already joined
else {
if (!LMIC_startJoining())
ESP_LOGI(TAG, "Already joined");
}
#endif
// start lmic loop task
2019-10-10 23:11:23 +02:00
ESP_LOGI(TAG, "Starting LMIC...");
xTaskCreatePinnedToCore(lmictask, // task function
"lmictask", // name of task
4096, // stack size of task
(void *)1, // parameter of the task
2, // priority of the task
2019-10-10 23:11:23 +02:00
&lmicTask, // task handle
1); // CPU core
2020-12-09 10:15:12 +01:00
// start lora send task
2019-10-10 23:11:23 +02:00
xTaskCreatePinnedToCore(lora_send, // task function
"lorasendtask", // name of task
3072, // stack size of task
(void *)1, // parameter of the task
1, // priority of the task
&lorasendTask, // task handle
1); // CPU core
return ESP_OK;
}
void lora_enqueuedata(MessageBuffer_t *message) {
// enqueue message in LORA send queue
if (xQueueSendToBack(LoraSendQueue, (void *)message, (TickType_t)0) !=
pdTRUE) {
2019-10-12 14:07:55 +02:00
snprintf(lmic_event_msg + 14, LMIC_EVENTMSG_LEN - 14, "<>");
2019-10-10 23:11:23 +02:00
ESP_LOGW(TAG, "LORA sendqueue is full");
2019-10-12 14:07:55 +02:00
} else {
// add Lora send queue length to display
snprintf(lmic_event_msg + 14, LMIC_EVENTMSG_LEN - 14, "%2u",
uxQueueMessagesWaiting(LoraSendQueue));
}
2019-10-10 23:11:23 +02:00
}
void lora_queuereset(void) { xQueueReset(LoraSendQueue); }
2020-12-09 10:15:12 +01:00
uint32_t lora_queuewaiting(void) {
return uxQueueMessagesWaiting(LoraSendQueue);
}
// LMIC loop task
2019-10-10 23:11:23 +02:00
void lmictask(void *pvParameters) {
2020-10-30 12:24:16 +01:00
_ASSERT((uint32_t)pvParameters == 1);
2019-10-10 23:11:23 +02:00
while (1) {
os_runloop_once(); // execute lmic scheduled jobs and events
delay(2); // yield to CPU
}
2020-12-09 10:15:12 +01:00
}
2019-10-10 23:11:23 +02:00
// lmic event handler
2019-12-25 23:21:31 +01:00
void myEventCallback(void *pUserData, ev_t ev) {
2019-10-10 23:11:23 +02:00
2019-10-11 12:24:27 +02:00
// using message descriptors from LMIC library
2019-10-10 23:11:23 +02:00
static const char *const evNames[] = {LMIC_EVENT_NAME_TABLE__INIT};
2019-10-12 14:07:55 +02:00
// get current length of lora send queue
uint8_t const msgWaiting = uxQueueMessagesWaiting(LoraSendQueue);
2019-10-10 23:11:23 +02:00
2019-10-11 12:24:27 +02:00
// get current event message
if (ev < sizeof(evNames) / sizeof(evNames[0]))
2019-10-12 14:07:55 +02:00
snprintf(lmic_event_msg, LMIC_EVENTMSG_LEN, "%-16s",
evNames[ev] + 3); // +3 to strip "EV_"
2019-10-11 12:24:27 +02:00
else
2019-10-13 17:22:30 +02:00
snprintf(lmic_event_msg, LMIC_EVENTMSG_LEN, "LMIC event %-4u ", ev);
2019-10-11 12:24:27 +02:00
// process current event message
2019-10-10 23:11:23 +02:00
switch (ev) {
2020-03-06 19:24:58 +01:00
case EV_TXCOMPLETE:
// -> processed in lora_send()
break;
case EV_RXCOMPLETE:
// -> processed in myRxCallback()
break;
2019-10-10 23:11:23 +02:00
case EV_JOINING:
// do the network-specific setup prior to join.
lora_setupForNetwork(true);
break;
case EV_JOINED:
// do the after join network-specific setup.
lora_setupForNetwork(false);
break;
2020-04-14 09:57:02 +02:00
case EV_JOIN_FAILED:
// must call LMIC_reset() to stop joining
// otherwise join procedure continues.
2020-12-09 10:15:12 +01:00
LMIC_reset();
2020-04-14 09:57:02 +02:00
break;
2019-10-11 12:24:27 +02:00
case EV_JOIN_TXCOMPLETE:
// replace descriptor from library with more descriptive term
2019-10-12 14:07:55 +02:00
snprintf(lmic_event_msg, LMIC_EVENTMSG_LEN, "%-16s", "JOIN_WAIT");
2019-10-11 12:24:27 +02:00
break;
2019-10-13 17:22:30 +02:00
default:
break;
2019-10-11 12:24:27 +02:00
}
2019-10-10 23:11:23 +02:00
2019-10-12 14:07:55 +02:00
// add Lora send queue length to display
if (msgWaiting)
snprintf(lmic_event_msg + 14, LMIC_EVENTMSG_LEN - 14, "%2u", msgWaiting);
2019-10-12 14:25:04 +02:00
// print event
ESP_LOGD(TAG, "%s", lmic_event_msg);
2019-10-10 23:11:23 +02:00
}
uint8_t myBattLevelCb(void *pUserData) {
2020-04-13 15:07:27 +02:00
// set the battery value to send by LMIC in MAC Command
// DevStatusAns. Available defines in lorabase.h:
// MCMD_DEVS_EXT_POWER = 0x00, // external power supply
// MCMD_DEVS_BATT_MIN = 0x01, // min battery value
// MCMD_DEVS_BATT_MAX = 0xFE, // max battery value
// MCMD_DEVS_BATT_NOINFO = 0xFF, // unknown battery level
// we calculate the applicable value from MCMD_DEVS_BATT_MIN to
// MCMD_DEVS_BATT_MAX from bat_percent value
uint8_t const batt_percent = read_battlevel();
2020-04-13 15:07:27 +02:00
if (batt_percent == 0)
2020-05-02 17:24:52 +02:00
return MCMD_DEVS_BATT_NOINFO;
2020-04-13 15:07:27 +02:00
else
#ifdef HAS_PMU
if (pmu.isVBUSPlug())
2020-05-02 17:24:52 +02:00
return MCMD_DEVS_EXT_POWER;
#elif defined HAS_IP5306
if (IP5306_GetPowerSource())
2020-05-02 17:24:52 +02:00
return MCMD_DEVS_EXT_POWER;
2020-04-13 15:07:27 +02:00
#endif // HAS_PMU
2020-09-26 21:21:28 +02:00
return (batt_percent / 100.0 * (MCMD_DEVS_BATT_MAX - MCMD_DEVS_BATT_MIN + 1));
2020-04-13 15:07:27 +02:00
}
2020-03-06 19:24:58 +01:00
// event EV_RXCOMPLETE message handler
2019-12-25 23:21:31 +01:00
void myRxCallback(void *pUserData, uint8_t port, const uint8_t *pMsg,
size_t nMsg) {
2019-10-10 23:11:23 +02:00
2020-03-06 19:24:58 +01:00
// display amount of received data
if (nMsg)
ESP_LOGI(TAG, "Received %u byte(s) of payload on port %u", nMsg, port);
else if (port)
ESP_LOGI(TAG, "Received empty message on port %u", port);
2019-10-10 23:11:23 +02:00
switch (port) {
2020-03-06 22:22:58 +01:00
// decode mac messages if we want to print those
2020-03-06 19:24:58 +01:00
#if (VERBOSE)
2019-10-10 23:11:23 +02:00
case MACPORT:
2020-03-06 19:24:58 +01:00
// decode downlink MAC commands
2020-03-06 22:22:58 +01:00
if (LMIC.dataBeg)
2020-03-07 00:03:05 +01:00
mac_decode(LMIC.frame, LMIC.dataBeg, true);
2020-03-06 19:24:58 +01:00
// decode uplink MAC commands
if (LMIC.pendMacLen)
2020-03-07 00:03:05 +01:00
mac_decode(LMIC.pendMacData, LMIC.pendMacLen, false);
2020-03-06 19:24:58 +01:00
break; // do not fallthrough to default, we are done
#endif
2019-10-10 23:11:23 +02:00
// rcommand received -> call interpreter
case RCMDPORT:
rcommand(pMsg, nMsg);
2020-10-09 22:44:52 +02:00
break;
2020-03-06 19:24:58 +01:00
// timeserver answer -> call timesync processor
#if (TIME_SYNC_LORASERVER)
case TIMEPORT:
// get and store gwtime from payload
2020-03-07 23:18:36 +01:00
timesync_serverAnswer(const_cast<uint8_t *>(pMsg), nMsg);
2020-10-09 22:44:52 +02:00
break;
2020-03-06 19:24:58 +01:00
#endif
2019-10-10 23:11:23 +02:00
} // switch
}
const char *getSfName(rps_t rps) {
const char *const t[] = {"FSK", "SF7", "SF8", "SF9",
"SF10", "SF11", "SF12", "SF?"};
return t[getSf(rps)];
}
const char *getBwName(rps_t rps) {
const char *const t[] = {"BW125", "BW250", "BW500", "BW?"};
return t[getBw(rps)];
}
const char *getCrName(rps_t rps) {
const char *const t[] = {"CR 4/5", "CR 4/6", "CR 4/7", "CR 4/8"};
return t[getCr(rps)];
}
2020-03-06 19:24:58 +01:00
#if (VERBOSE)
// decode LORAWAN MAC message
2020-09-26 21:21:28 +02:00
// see
// https://github.com/mcci-catena/arduino-lmic/blob/master/doc/LoRaWAN-at-a-glance.pdf
2020-03-07 00:03:05 +01:00
void mac_decode(const uint8_t cmd[], const uint8_t cmdlen, bool is_down) {
2020-03-06 19:24:58 +01:00
if (!cmdlen)
return;
uint8_t foundcmd[cmdlen], cursor = 0;
2020-03-07 00:03:05 +01:00
// select CID resolve table
const mac_t *p;
p = is_down ? MACdn_table : MACup_table;
const int tablesize = is_down ? MACdn_tSize : MACup_tSize;
2020-03-07 13:00:22 +01:00
const String MACdir = is_down ? "-->" : "<--";
2020-03-07 00:03:05 +01:00
2020-03-06 19:24:58 +01:00
while (cursor < cmdlen) {
2020-03-07 00:03:05 +01:00
// get number of commands in CID table
int i = tablesize;
2020-03-06 19:24:58 +01:00
2020-03-07 00:03:05 +01:00
// lookup cmd in CID table
2020-03-06 19:24:58 +01:00
while (i--) {
2020-03-07 00:03:05 +01:00
if (cmd[cursor] == (p + i)->cid) { // lookup command in CID table
cursor++; // strip 1 byte CID
if ((cursor + (p + i)->params) <= cmdlen) {
2020-03-06 19:24:58 +01:00
memmove(foundcmd, cmd + cursor,
2020-03-07 00:03:05 +01:00
(p + i)->params); // strip opcode from cmd array
cursor += (p + i)->params;
2020-03-08 16:15:16 +01:00
ESP_LOGD(TAG, "%s %s", MACdir, (p + i)->cmdname);
2020-03-06 19:24:58 +01:00
} else
2020-03-07 13:00:22 +01:00
ESP_LOGD(TAG, "%s MAC command 0x%02X with missing parameter(s)",
MACdir, (p + i)->cid);
2020-03-06 19:24:58 +01:00
break; // command found -> exit table lookup loop
} // end of command validation
} // end of command table lookup loop
if (i < 0) { // command not found -> skip it
2020-03-07 00:03:05 +01:00
ESP_LOGD(TAG, "%s Unknown MAC command 0x%02X", MACdir, cmd[cursor]);
2020-03-06 19:24:58 +01:00
cursor++;
}
} // command parsing loop
} // mac_decode()
#endif // VERBOSE
2020-12-09 10:15:12 +01:00
// following code snippet was taken from
// https://github.com/JackGruber/ESP32-LMIC-DeepSleep-example/blob/master/src/main.cpp
void SaveLMICToRTC(int deepsleep_sec) {
RTC_LMIC = LMIC;
// ESP32 can't track millis during DeepSleep and no option to advance
// millis after DeepSleep. Therefore reset DutyCyles
unsigned long now = millis();
// EU Like Bands
#if defined(CFG_LMIC_EU_like)
for (int i = 0; i < MAX_BANDS; i++) {
ostime_t correctedAvail =
RTC_LMIC.bands[i].avail -
((now / 1000.0 + deepsleep_sec) * OSTICKS_PER_SEC);
if (correctedAvail < 0) {
correctedAvail = 0;
}
RTC_LMIC.bands[i].avail = correctedAvail;
}
RTC_LMIC.globalDutyAvail = RTC_LMIC.globalDutyAvail -
((now / 1000.0 + deepsleep_sec) * OSTICKS_PER_SEC);
if (RTC_LMIC.globalDutyAvail < 0) {
RTC_LMIC.globalDutyAvail = 0;
}
#else
ESP_LOGW(TAG, "No DutyCycle recalculation function!");
#endif
ESP_LOGI(TAG, "LMIC state saved");
}
void LoadLMICFromRTC() {
LMIC = RTC_LMIC;
ESP_LOGI(TAG, "LMIC state loaded");
}
2019-08-31 15:19:49 +02:00
#endif // HAS_LORA