engeen-nl
engeen-nl
In the RadioLib code only bit 2 is set to 0. (I hope that's what SPIsetRegValue does). By calling: `writeRegister(REG_MODEM_CONFIG_3, 0x00);` You're clearing all bits, while it could be that...
Here's where I should do a pull request I guess, but I also have to test it later. For now: ``` void LoRaFSKClass::setGain(uint8_t gain) { // check allowed range if...
Or add another function to toggle a bit: LoRa.h: ``` void setRegisterBit(uint8_t reg, uint8_t bit, uint8_t set = 1); void clearRegisterBit(uint8_t reg, uint8_t bit) { return setRegisterBit(reg, bit, 0); }...
I can confirm I've seen the same behaviour for the MKR 1310. I measure 9 ms between the readings of the duplicate message. Sometimes a message just sent comes back...
I also struggled with this and expected a random byte from this function. Thanks for the example @Kongduino Can this be adjusted in the next version of the library?
Nice find! However, how do we implement this in the current LoRa.cpp? Can we add another condition on line 237? ``` if ((irqFlags & IRQ_RX_DONE_MASK) && (irqFlags & IRQ_PAYLOAD_CRC_ERROR_MASK) ==...
I had the same problem using the MKR 1310 with the RS485 shield when powering it trough the RS485 shield. Apparently the MKR 1310's BQ24195L needs to be configured in...
You're a genius, thank you so much! At least for me your fix on the mvc/simple-volt/ demo application is a working starting point / sample application that runs on a...