rpi-rfm69 icon indicating copy to clipboard operation
rpi-rfm69 copied to clipboard

Python RFM69 library for Raspberry Pi

Results 5 rpi-rfm69 issues
Sort by recently updated
recently updated
newest added

When automatic ACK mode is turned on, **_sendFrame is called from _interruptHandler**. _sendFrame than contains: `with self._sendLock:` `....self._setMode(RF69_MODE_TX)` `....self._sendLock.wait(1.0)` `self._setMode(RF69_MODE_RX)` which causes **interrupt to hang for 1s** and it is...

The existing thread safety was bolted on top of pre-existing code, and assumed that the existing code was (a) elegant and (b) correct. I suspect that this is leading to...

This is not a qualified bug report as I didn't have much time with debugging, but I tried all sorts of ways of using version 0.4.0 of this library and...

AFAICT, the only change actually worth merging is https://github.com/etrombly/RFM69/commit/3246e5b3548efd15e110b6bd0c2fc19a3e9a6cac

Hey there! First of all, thank you so much for making this repo it is genuinely amazing documentation wise. I have however run into various different problems potentially due to...