-
Where could I find a Class B example? According to this link, there was a example, but I cannot find it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In recent versions of this project we decided to have a single example supporting all LoRaWAN classes. The By default the provided example is setup to use ClassA. LoRaMac-node/src/apps/LoRaMac/periodic-uplink-lpp/NucleoL073/main.c Lines 48 to 51 in 9a6c7dc Please change Something you also need to change is the uplink transmission periodicity in order to have the chance to open a few ping-slots in between uplinks. LoRaMac-node/src/apps/LoRaMac/periodic-uplink-lpp/NucleoL073/main.c Lines 53 to 62 in 9a6c7dc As first test I would change the values to from The expected end-device behavior is as follows:
|
Beta Was this translation helpful? Give feedback.
In recent versions of this project we decided to have a single example supporting all LoRaWAN classes.
The
periodic-uplink-lpp
example supports all 3 classes.By default the provided example is setup to use ClassA.
In order to use ClassB one must modify the below line on
main.c
file.LoRaMac-node/src/apps/LoRaMac/periodic-uplink-lpp/NucleoL073/main.c
Lines 48 to 51 in 9a6c7dc
Please change
CLASS_A
intoCLASS_B
Something you also need to change is the uplink transmission periodicity in order to have the chance to open a few ping-slots in between uplinks.
LoRaMac-node/src/ap…