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
|
2022-02-28 22:35:35 +01:00
|
|
|
static const char TAG[] = __FILE__;
|
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
|
|
|
|
|
2021-01-01 15:55:22 +01:00
|
|
|
static QueueHandle_t LoraSendQueue;
|
2019-10-10 23:11:23 +02:00
|
|
|
TaskHandle_t lmicTask = NULL, lorasendTask = NULL;
|
2021-03-31 19:02:01 +02:00
|
|
|
char lmic_event_msg[LMIC_EVENTMSG_LEN]; // display buffer for LMIC event message
|
2019-10-10 23:11:23 +02:00
|
|
|
|
|
|
|
class MyHalConfig_t : public Arduino_LMIC::HalConfiguration_t {
|
|
|
|
|
|
|
|
public:
|
|
|
|
MyHalConfig_t(){};
|
2019-10-13 17:01:42 +02:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2019-10-13 17:01:42 +02:00
|
|
|
// virtual void end(void) override
|
|
|
|
|
|
|
|
// virtual ostime_t setModuleActive(bool state) override
|
|
|
|
};
|
2019-10-10 23:11:23 +02:00
|
|
|
|
2019-10-13 17:01:42 +02:00
|
|
|
static MyHalConfig_t myHalConfig{};
|
2019-10-10 23:11:23 +02:00
|
|
|
|
2019-10-13 17:01:42 +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},
|
2019-10-13 17:01:42 +02:00
|
|
|
.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
|
2021-03-03 10:21:49 +01:00
|
|
|
LMIC_setLinkCheckMode(1);
|
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
|
2020-02-26 00:40:09 +01:00
|
|
|
ESP_LOGI(TAG, "DEVaddr: 0x%08X | Network ID: 0x%06X | Network Type: %d",
|
2020-02-25 20:23:41 +01:00
|
|
|
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);
|
2020-02-25 20:23:41 +01:00
|
|
|
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];
|
2020-12-21 19:41:25 +01:00
|
|
|
esp_efuse_mac_get_default(dmac);
|
2019-10-10 23:11:23 +02:00
|
|
|
// 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)
|
|
|
|
|
2021-03-25 10:30:38 +01:00
|
|
|
// Display a key
|
|
|
|
void printKey(const char *name, const uint8_t *key, uint8_t len, bool lsb) {
|
|
|
|
const uint8_t *p;
|
|
|
|
char keystring[len + 1] = "", keybyte[3];
|
|
|
|
for (uint8_t i = 0; i < len; i++) {
|
|
|
|
p = lsb ? key + len - i - 1 : key + i;
|
|
|
|
snprintf(keybyte, 3, "%02X", *p);
|
|
|
|
strncat(keystring, keybyte, 2);
|
|
|
|
}
|
|
|
|
ESP_LOGI(TAG, "%s: %s", name, keystring);
|
|
|
|
}
|
|
|
|
|
2019-10-10 23:11:23 +02:00
|
|
|
// 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_getArtEui((u1_t *)buf);
|
|
|
|
printKey("AppEUI", buf, 8, true);
|
2022-01-28 19:51:59 +01:00
|
|
|
os_getDevEui((u1_t *)buf);
|
|
|
|
printKey("DevEUI", buf, 8, true);
|
2019-10-10 23:11:23 +02:00
|
|
|
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-03-03 12:53:30 +01:00
|
|
|
|
2020-12-09 10:15:12 +01:00
|
|
|
case LMIC_ERROR_SUCCESS:
|
2020-03-03 12:53:30 +01:00
|
|
|
#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);
|
2020-03-03 12:53:30 +01:00
|
|
|
#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
|
2020-12-09 11:01:54 +01:00
|
|
|
} // 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
|
|
|
|
|
|
|
|
// 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
|
2020-12-28 18:31:31 +01:00
|
|
|
if (RTC_runmode == RUNMODE_WAKEUP)
|
2020-12-09 10:15:12 +01:00
|
|
|
LoadLMICFromRTC();
|
2020-12-28 18:31:31 +01:00
|
|
|
if (!LMIC_startJoining())
|
|
|
|
ESP_LOGI(TAG, "Already joined");
|
2020-12-09 10:15:12 +01:00
|
|
|
#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
|
2022-02-13 18:41:43 +01:00
|
|
|
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
|
2022-01-26 16:32:54 +01:00
|
|
|
2, // priority of the task
|
2019-10-10 23:11:23 +02:00
|
|
|
&lorasendTask, // task handle
|
|
|
|
1); // CPU core
|
|
|
|
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lora_enqueuedata(MessageBuffer_t *message) {
|
|
|
|
// enqueue message in LORA send queue
|
2020-12-09 11:01:54 +01:00
|
|
|
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) {
|
2022-01-27 21:40:25 +01:00
|
|
|
os_runloop_once(); // execute lmic scheduled jobs and events
|
|
|
|
delay(2); // yield to CPU
|
2019-10-10 23:11:23 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
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,
|
2020-02-25 20:23:41 +01:00
|
|
|
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) {
|
|
|
|
|
|
|
|
// 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)];
|
|
|
|
}
|
|
|
|
|
2021-10-02 13:57:38 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* ttn-esp32 - The Things Network device library for ESP-IDF / SX127x
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018-2021 Manuel Bleichenbacher
|
|
|
|
*
|
|
|
|
* Licensed under MIT License
|
|
|
|
* https://opensource.org/licenses/MIT
|
|
|
|
*
|
|
|
|
* Functions for storing and retrieving TTN communication state from RTC memory.
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#define LMIC_OFFSET(field) __builtin_offsetof(struct lmic_t, field)
|
|
|
|
#define LMIC_DIST(field1, field2) (LMIC_OFFSET(field2) - LMIC_OFFSET(field1))
|
|
|
|
#define TTN_RTC_MEM_SIZE \
|
|
|
|
(sizeof(struct lmic_t) - LMIC_OFFSET(radio) - MAX_LEN_PAYLOAD - MAX_LEN_FRAME)
|
|
|
|
|
|
|
|
#define TTN_RTC_FLAG_VALUE 0xf8025b8a
|
|
|
|
|
|
|
|
RTC_DATA_ATTR uint8_t ttn_rtc_mem_buf[TTN_RTC_MEM_SIZE];
|
|
|
|
RTC_DATA_ATTR uint32_t ttn_rtc_flag;
|
|
|
|
|
|
|
|
void ttn_rtc_save() {
|
|
|
|
// Copy LMIC struct except client, osjob, pendTxData and frame
|
|
|
|
size_t len1 = LMIC_DIST(radio, pendTxData);
|
|
|
|
memcpy(ttn_rtc_mem_buf, &LMIC.radio, len1);
|
|
|
|
size_t len2 = LMIC_DIST(pendTxData, frame) - MAX_LEN_PAYLOAD;
|
|
|
|
memcpy(ttn_rtc_mem_buf + len1, (u1_t *)&LMIC.pendTxData + MAX_LEN_PAYLOAD,
|
|
|
|
len2);
|
|
|
|
size_t len3 = sizeof(struct lmic_t) - LMIC_OFFSET(frame) - MAX_LEN_FRAME;
|
|
|
|
memcpy(ttn_rtc_mem_buf + len1 + len2, (u1_t *)&LMIC.frame + MAX_LEN_FRAME,
|
|
|
|
len3);
|
|
|
|
|
|
|
|
ttn_rtc_flag = TTN_RTC_FLAG_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ttn_rtc_restore() {
|
|
|
|
if (ttn_rtc_flag != TTN_RTC_FLAG_VALUE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Restore data
|
|
|
|
size_t len1 = LMIC_DIST(radio, pendTxData);
|
|
|
|
memcpy(&LMIC.radio, ttn_rtc_mem_buf, len1);
|
|
|
|
memset(LMIC.pendTxData, 0, MAX_LEN_PAYLOAD);
|
|
|
|
size_t len2 = LMIC_DIST(pendTxData, frame) - MAX_LEN_PAYLOAD;
|
|
|
|
memcpy((u1_t *)&LMIC.pendTxData + MAX_LEN_PAYLOAD, ttn_rtc_mem_buf + len1,
|
|
|
|
len2);
|
|
|
|
memset(LMIC.frame, 0, MAX_LEN_FRAME);
|
|
|
|
size_t len3 = sizeof(struct lmic_t) - LMIC_OFFSET(frame) - MAX_LEN_FRAME;
|
|
|
|
memcpy((u1_t *)&LMIC.frame + MAX_LEN_FRAME, ttn_rtc_mem_buf + len1 + len2,
|
|
|
|
len3);
|
|
|
|
|
|
|
|
ttn_rtc_flag = 0xffffffff; // invalidate RTC data
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// following code includes snippets taken from
|
2020-12-09 10:15:12 +01:00
|
|
|
// https://github.com/JackGruber/ESP32-LMIC-DeepSleep-example/blob/master/src/main.cpp
|
|
|
|
|
|
|
|
void SaveLMICToRTC(int deepsleep_sec) {
|
|
|
|
|
|
|
|
// ESP32 can't track millis during DeepSleep and no option to advance
|
2021-10-02 13:57:38 +02:00
|
|
|
// millis after DeepSleep. Therefore reset DutyCyles before saving LMIC struct
|
2020-12-09 10:15:12 +01:00
|
|
|
|
|
|
|
unsigned long now = millis();
|
|
|
|
|
|
|
|
// EU Like Bands
|
2021-01-21 06:11:25 +01:00
|
|
|
#if CFG_LMIC_EU_like
|
2020-12-09 10:15:12 +01:00
|
|
|
for (int i = 0; i < MAX_BANDS; i++) {
|
|
|
|
ostime_t correctedAvail =
|
2021-10-02 13:57:38 +02:00
|
|
|
LMIC.bands[i].avail -
|
2020-12-09 10:15:12 +01:00
|
|
|
((now / 1000.0 + deepsleep_sec) * OSTICKS_PER_SEC);
|
|
|
|
if (correctedAvail < 0) {
|
|
|
|
correctedAvail = 0;
|
|
|
|
}
|
2021-10-02 13:57:38 +02:00
|
|
|
LMIC.bands[i].avail = correctedAvail;
|
2020-12-09 10:15:12 +01:00
|
|
|
}
|
|
|
|
|
2021-10-02 13:57:38 +02:00
|
|
|
LMIC.globalDutyAvail =
|
|
|
|
LMIC.globalDutyAvail - ((now / 1000.0 + deepsleep_sec) * OSTICKS_PER_SEC);
|
|
|
|
if (LMIC.globalDutyAvail < 0) {
|
|
|
|
LMIC.globalDutyAvail = 0;
|
2020-12-09 10:15:12 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
ESP_LOGW(TAG, "No DutyCycle recalculation function!");
|
|
|
|
#endif
|
|
|
|
|
2021-10-02 13:57:38 +02:00
|
|
|
ttn_rtc_save();
|
2020-12-09 10:15:12 +01:00
|
|
|
ESP_LOGI(TAG, "LMIC state saved");
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadLMICFromRTC() {
|
2021-10-02 13:57:38 +02:00
|
|
|
if (ttn_rtc_restore())
|
|
|
|
ESP_LOGI(TAG, "LMIC state loaded");
|
|
|
|
else {
|
|
|
|
ESP_LOGE(TAG, "LMIC state not found - resetting device");
|
|
|
|
do_reset(false); // coldstart
|
|
|
|
}
|
2020-12-09 10:15:12 +01:00
|
|
|
}
|
|
|
|
|
2019-08-31 15:19:49 +02:00
|
|
|
#endif // HAS_LORA
|