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

Tested on HW: nrf52832+sx1262 module. DIO1 used in interrupt mode, sx1262 used with TXCO, DIO3 as voltage source, DIO2 for TX/RX switch. Tested stack version: **v4.5.1, class C, US915 region**...

The callback OnTxData of LmHandler provide the parameter LmHandlerTxParams_t which contain the channel of the tx frame. But on the OnRxData callback, the LmHandlerRxParams_t doesn't provide this information. For logging...

Implementing the latest LoRaMAC release (a.k.a. 4.70) I noticed a strange behaviour in the Duty Cycle management using EU868. To provoke it, make a node try to join unsuccessfully using...

Fix register corruption due to colliding SPI transactions in FSK In FSK Tx, the Dio1 interrupt may already fire while the SPI transaction for SetOpMode is still in progress. This...

Hi, version used is tag v4.7.0. In `LoRaMac.c` function `StopRetransmission`. The `Nvm.MacGroup1.AdrAckCounter` is not incremented when a LoRa frame has been received (so `MacCtx.MacFlags.Bits.McpsInd` is set) on an RX window...

I was compiling my code with `-Wdouble-promotion` and noticed these warnings: ``` [...]/src/peripherals/mpl3115.c: In function 'MPL3115ReadBarometer': [...]/src/peripherals/mpl3115.c:266:51: warning: implicit conversion from 'float' to 'double' to match other operand of binary...

I am using LoRaMAC version 4.70 and face an issue with the application data not being sent. After a join procedure, the application layer is supposed to quickly send a...

The complete SPI transaction in SX1272WriteBuffer and SX1272ReadBuffer in sx1272.c is not protected by a critical section. SpiInOut in spi-board.c does protect the SPI transfer by a critical section, but...

Intention of this PR is to allow developers to build the LoRaMac sources as a static library for inclusion in their own projects. A separate directory is added to the...

Hi, We are attempting to approbate region KR920 and the test house reports failure on the listen-before-talk test. Looking at the following code snippet: https://github.com/Lora-net/LoRaMac-node/blob/2bf36bde72f68257eb96b5c00900619546bedca8/src/radio/sx126x/radio.c#L586-L618 The default return value `bool...