SX126x-Arduino icon indicating copy to clipboard operation
SX126x-Arduino copied to clipboard

Arduino library to use Semtech SX126x LoRa chips and modules to communicate

Results 9 SX126x-Arduino issues
Sort by recently updated
recently updated
newest added

Hello guys, Is it possible to use multicast with your stack? Is there any example of implementation on the node (firmware) side? thanks a lot!

I use ESP32 with E22-900M30S and nothing happens on Ping_pong example, but this library (https://github.com/StuartsProjects/SX12XX-LoRa) can transmit data ( but can't receive. ) I enable debug messages: ``` rst:0x1 (POWERON_RESET),boot:0x13...

Cannot change tx-power and data-rate from gateway requested, need to remove comment below // Channels[2] = (ChannelParams_t)AS923_LC3; // Channels[3] = (ChannelParams_t)AS923_LC4; // Channels[4] = (ChannelParams_t)AS923_LC5; // Channels[5] = (ChannelParams_t)AS923_LC6; //...

When config LoRAWAN ADR=0 the tx power cannot change need to remove ResetMacParameters(); https://github.com/beegee-tokyo/SX126x-Arduino/blob/master/src/mac/LoRaMac.cpp#L3285

Hi. There is a piece of code in the RadioBgIrqProcess function: ... BoardDisableIrq(); Required = false; BoardEnableIrq(); ... Why are the BoardDisableIrq() and BoardEnableIrq() functions empty for board "nrf52832" ?...

Hi, Thanks for a great library and all the examples, certainly makes it easier to get started. I had issues and days of troubleshooting when combining the deep sleep example...

Hello, If the arguments rxTime and sleepTime are in ms, then the call to SX126xSetRxDutyCycle is false in the code below (Radio.cpp): ``` void RadioSetRxDutyCycle(uint32_t rxTime, uint32_t sleepTime) { SX126xSetDioIrqParams(IRQ_RADIO_ALL...

Previously I am using the Radiolib library with below setting, it is working fine **Code with Radiolib:** SPIClass spi(HSPI); //HPSI -> SCLK: 14, MOSI: 13, MISO: 12 SPISettings spiSettings(2000000, MSBFIRST,...

Greetings, The modifications introduced in version 2.0.25 of this library generate an out-of-scope variable error during compilation. The exact code is this one: ```c++ { m_callbacks->lmh_conf_result(mcpsConfirm->AckReceived); // Workaround, reset MAC...