TMRh20
TMRh20
FYI just tested the interrupt example and pigpio doesn't seem to work on the RPi5 yet. ``` +---------------------------------------------------------+ |Sorry, this system does not appear to be a raspberry pi. |...
LOL. Well I don't know about you, but I'm taking a break.
Yeah, I had a feeling the GPIO changes would be slower than previous implementations, but never did any performance testing. Now that we have some working code for v2, caching...
Hey if it works it works. We should be able to get the same or better performance out of it than prior versions I would hope. I agree with keeping...
Nice work! Mostly tests fine for me, but I am seeing differences in the scanner example on RPi5, RPi4 and RPi3. The RPi2 seems to not care. Teh RPI4 comes...
Hmm, taking a look at RF24.cpp, I found something unusual that I haven't thought about in a while, but see the lines [here](https://github.com/nRF24/RF24/blob/efdc40aaefffd5001a86724328a1f1e31dc6e280/RF24.cpp#L93C1-L99C2) Essentially, on faster devices, I put in...
> I think with caching, we've hit the too fast problem. Yup, there needs to be some sort of GPIO/CSN delay for Linux now along with the faster MCUs. Will...
Yeah, I just tested it and I don't think debounce introduces a delay of 5us after toggling, it would be to prevent togging more often than 5us, so I don't...
I'm still getting the same erroneous results with the scanner examples with your current code. The CE pin is only toggled on transmit, and delays are added in the lib...
You are correct I figure, forgot to add the CE delay to RF24.cpp when testing. Now the scanner examples seem to work fine! My gettingstarted examples seem to work fine...