lmic event handler elaborated

This commit is contained in:
Verkehrsrot 2019-10-11 12:24:27 +02:00
parent e844879954
commit a54033296a

View File

@ -436,8 +436,16 @@ void lmictask(void *pvParameters) {
// lmic event handler // lmic event handler
void myEventCallback(void *pUserData, ev_t ev) { void myEventCallback(void *pUserData, ev_t ev) {
// using message descriptors from LMIC library
static const char *const evNames[] = {LMIC_EVENT_NAME_TABLE__INIT}; static const char *const evNames[] = {LMIC_EVENT_NAME_TABLE__INIT};
// get current event message
if (ev < sizeof(evNames) / sizeof(evNames[0]))
sprintf(lmic_event_msg, "%s", evNames[ev] + 3); // +3 to strip "EV_"
else
sprintf(lmic_event_msg, "LMIC event %d", ev);
// process current event message
switch (ev) { switch (ev) {
case EV_JOINING: case EV_JOINING:
// do the network-specific setup prior to join. // do the network-specific setup prior to join.
@ -448,13 +456,12 @@ void myEventCallback(void *pUserData, ev_t ev) {
// do the after join network-specific setup. // do the after join network-specific setup.
lora_setupForNetwork(false); lora_setupForNetwork(false);
break; break;
}
// get event message case EV_JOIN_TXCOMPLETE:
if (ev < sizeof(evNames) / sizeof(evNames[0])) // replace descriptor from library with more descriptive term
sprintf(lmic_event_msg, "%s", evNames[ev] + 3); // +3 to strip "EV_" lmic_event_msg = "JOIN_WAIT";
else break;
sprintf(lmic_event_msg, "LMIC event %d", ev); }
// print event // print event
ESP_LOGD(TAG, "%s", lmic_event_msg); ESP_LOGD(TAG, "%s", lmic_event_msg);