LoRaMac-node icon indicating copy to clipboard operation
LoRaMac-node copied to clipboard

Reference implementation and documentation of a LoRa network node.

Results 76 LoRaMac-node issues
Sort by recently updated
recently updated
newest added

The 1262 doesn't do this memset, but the 1272/1276 do. This means, in an interrupt, if the radio is put back in RX mode before the payload is extracted and...

This pull request moves the parameters AdrAckLimit and AdrAckDelay from the internal MacCtx data structure to NVM. The values are stored in `Nvm.MacGroup2.MacParams` and `Nvm.MacGroup2.MacParams` and are initialized in LoRaMacInitialization...

This pull request makes it possible for the application to override the two key parameters related to the listen before talk (LBT) feature: RSSI free channel threshold, and carrier sense...

There appear to be two regions that use listen before talk (LBT): KR920 and AS923. However, the two parameters related to LBT: RSSSI free channel threshold and carrier sense time...

The parameters AdrAckLimit and AdrAckDelay can be set remotely by the network server via ADR. As such, these parameter values should probably be backed by the NVM to make sure...

The various multicast management functions provided by the library modify data stored in NVM and thus need to signal to the NVM layer when the data changes. Closes #1339

The library provides a number of multicast management functions: LoRaMacMcChannelSetup, LoRaMacMcChannelDelete, LoRaMacMcChannelGetGroupId, and LoRaMacMcChannelSetupRxParams. Some of the functions manipulate data stored in the NVM. Thus, these functions should signal to...

I am working on an application that needs to be notified of uplink retransmissions. Since I haven't found a way to obtain retransmission notifications from vanilla LoRaMac-node, I have created...

The previous version of LoRaMacIsBusy returned true when invoked while the MAC is stopped. I believe this is incorrect. The MAC should not indicate that is is busy while it...

This PR includes a few fixes for class C MAC operation: - Make sure the radio is switched to continuous RX when starting in class C; - Put the radio...