Michael Miller

Results 321 comments of Michael Miller

Note, SK6812 & WS2814 are not the same protocol from NPB, they differ in the reset timing and pulse timing. What does WLED map them to? Also include what Feature...

SK6812 (X8Sk6812Method) only has an 80us reset time. The WS2814 is spec'ed at a minimum of 280us. I would use the WS2812x method for WS2814 for best compatibility. It was...

You might also use it to test if a setup will fit in memory before instancing a bus object. A static call that takes the pixel count might help then....

Note that RMT API I am using is being depreciated. The Core3 branch of my library uses the new RMT APIs which may solve this issue in the long term....

Also note, the C3 (all the C chips?) is a single core. This is problematic with any routines that have long ISRs or long "high priority" level. And due to...

Some thoughts on RGB+W (including WW and even WWW) from the NPB perspective: The white output on the chips varies by the wavelength and power. Some are cold, some neutral,...

> Am I posting this in the wrong place? You are posting this request is the right place. Thank you for providing good details. It's just me on this on...

You will need to decode the backtrace for your built sketch. There are instructions online for doing this. It will provide the call stack that points to who's lock is...

Do you call `Show()` in more than one location? The error is stating that in the API call `gdma_reset()` (not my code) it is trying to take a lock (spin...

If you turn verbose debug output on, do you see anything else before the assert in the output? The spin lock is not within my code, it is inside a...