lnlp / LMIC-node

LMIC-node | One example to rule them all. LMIC-node is an example LoRaWAN application for a node that can be used with The Things Network. It demonstrates how to send uplink messages, how to receive downlink messages, how to implement a downlink command and it provides useful status information. With LMIC-node it is easy to get a working node quickly up and running. LMIC-node supports many popular (LoRa) development boards out of the box. It uses the Arduino framework, the LMIC LoRaWAN library and PlatformIO.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What are opmodes? Are they listed somewhere?

tipo1000A opened this issue · comments

As the title says LMIC-node prints opmodes like:
opmode=0x4
opmode=0x808
opmode=0x900
opmode=0x908
. . ,
What they mean?

Thanks,
Tipo

Opmodes are MAC operation modes. They are functionality of the LMIC library.

You can find the definition of the MAC operation modes with a brief description in lmic.h.

I can find opmodes 0x4 and 0x808 in lmic.h.

However, opmodes 0x900 and 0x908 are not in that list. How should I understand those modes?

opmodes 0x900 and 0x908 are not in that list. How should I understand those modes?

Opmodes are MAC operation modes. They are functionality of the LMIC library.

As the opmodes are provided by the LMIC library the best place for asking that question is the MCCI LMIC library repository.