Aaron Wisner

Results 63 comments of Aaron Wisner

Actually I think exactly what we are looking for is private C++ inheritance. The `RingStack` and `RingQueue` will both inherit from `RingBuf` privately. This will make all the public `RingBuf`...

The frequency values were auto-generated: https://github.com/wizard97/iSkipper/blob/master/tools/freq_gen/freq_header_gen.py. These values were actually exactly extracted from the SPI dumps of the iClicker2. Since the iClicker2 uses the same radio chipset (the SX1231) as...

Yeah, the promiscuousMode functionality was never quite implemented correctly for capturing the acks. The main reason for this is how these radios work. Basically, there is a concept of a...

Would you be interested in getting promiscuousMode working for all acks? I would like to get this functionality working and merged in.

Hi, We actually tried the random ack, and the remote did not accept it, so there is definitively some encoding going on. Also, the ack's that we have captured change,...

If your curious, here is some captured data for the 7 byte ack: https://github.com/wizard97/iSkipper/blob/master/data/base_response/1.txt

Even if you can't figure it out yourself, it would be really cool if you could capture a bunch of responses (along with the corresponding answer submissions), so we can...

xnorer has been broken after a recent merge from dev. I think the best strategy is just capture a bunch of data than can easily be analyzed locally with python.

First we need to see if the ack is deterministic (given the same remote, with the same answer, do you always get the same 7-byte ack back?), our initial findings...

Hi, The problem is the RFM69 library is not the same as the upstream one from Felix: https://github.com/LowPowerLab/RFM69. It did not support the necessary features, so I had to modify...