Drzony
Drzony
As mentioned in #292 I'm posting some findings regarding the IRAM issues: We are having some discussions with Sam Guyer in [this FastLED issue](https://github.com/FastLED/FastLED/issues/835) One thing that we found out...
@Lord-Grey Corrected iterators in the file, also reduced the number of loops in discover
You're welcome
@crides The fetching is incorrect in your case. The sign is not in the data[1] and data[2] it's in data[0]. So: ```cpp if ((data[0] & 0x10) && data[1] != 0)...
Weird, I'm running relative mode on QMK (just got it merged into develop) and I don't seem to have this problem. (The code above is taken from my test code...
Also maybe I'm missing something in the code, but the SW_DR flag in REG 0x02 should be cleared after every packet read. It seems it's only there if the PINNACLE_TRIGGER...
From the spec: > To interrupt or alert the host when data is ready, Pinnacle uses a Hardware Data Ready (HW_DR) signal > (active HIGH) that is triggered by either...
@NickNonsense ```powershell conda create -n ledfx conda activate ledfx conda config --add channels conda-forge conda install aubio portaudio pywin32 pip install pipwin pipwin install pyaudio pip install ledfx ``` This...
NVAPI code for using the side channel: https://gist.github.com/drzony/1744b4f72dcd4fde309a125445c474a1
I'm working on a bit different project which uses Captive Portal. I have rewritten DNS code from scratch using AsyncUDP, extended it to handle most of DNS requests and it...