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

Hello, I would like to open a pull request to rename the `aes_encrpyt()` function found in `src/peripherals/soft-se/aes.*` files to something other than what it currently is, perhaps `aes_encrypt_block()` (`aes_decrypt()` would...

Hello, I would like to open a pull request to simply wrap each define in `src/peripherals/soft-se/se-identity.h` with #ifndef tags. For example: ``` /*! * App/Join server IEEE EUI (big endian)...

This happens at least on the NucleoL476 example board implementation. I had a quick look at the other STM32 examples and it appears to happen there too. The issue is...

LORAMAC_TX_CONFIG tested in LoRaMacChannelAdd() and LoRaMacChannelRemove() but never set. Shouldn't it be removed as code/time waste?

The [RtcGetCalendarValue function](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/boards/NucleoL476/rtc-board.c#L430) checks the RTC subsecond register for consistency but does not check the date or time registers. Because the code doesn't use the RTC shadow registers ([see here](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/boards/NucleoL476/rtc-board.c#L182)),...

Hi, On a Class B device, calling [LmHandlerJoin](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/apps/LoRaMac/common/LmHandler/LmHandler.c#L467) will call [LmHandlerJoinRequest](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/apps/LoRaMac/common/LmHandler/LmHandler.c#L439), which calls [LoRaMacMlmeRequest](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/mac/LoRaMac.c#L5315), which calls [ResetMacParameters](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/mac/LoRaMac.c#L3143), which calls [LoRaMacClassBInit](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/mac/LoRaMacClassB.c#L619). The issue is that the 3 timers in that function...

Hi, I noticed that if the call to NvmDataMgmtStore at [src/apps/LoRaMac/common/LmHandler/LmHandler.c line 389](https://github.com/Lora-net/LoRaMac-node/blob/6384af8f4c4a57016c83f3d34430f0f68855e695/src/apps/LoRaMac/common/LmHandler/LmHandler.c#L389) blocks while the radio is transmitting, the transmitter will stay on. This can cause problems with various...

adding support for using [VSCode DevContainers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) Provides a complete environment that is HostOS independent. Docker container is based on Ubuntu 22.04 with arm-gnu-toolchain 12.3. See doc/VSCode_DevContainer.md for usage instructions

Hi, We are use using the LoraWan Stack v4.6.0. We have observed that DL do not operate when testing the device in region AS923-1 + Class C with some Network...

When the MAC command SRV_MAC_LINK_ADR_REQ is received followed by only one byte MAC command the last one byte command will not be processed. In this case the macIndex will not...