Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | esp8266/espneopixel.c: Solve glitching LED issues with cpu at 80MHz. | Olivier Ortigues | 2016-11-07 |
| | | | | | | | | At the WS2812 driver level, a 400ns value was used for T0H (time high to send a 0 bit) but LED specification says it should be 350ns +- 150ns. Due to loop overhead the 400ns value could lead to T0H close to 500ns which is too close from the limit value and gave glitches (bad data to pixels) in some cases. This patch makes the calculated T0H value 350ns. | ||
* | esp8266: Make neopixel support configurable. | Paul Sokolovsky | 2016-10-09 |
| | | | | To save iRAM. | ||
* | esp8266/espneopixel: Disable IRQs during eps.neopixel_write. | Torsten Wagner | 2016-09-06 |
| | | | | | | Interrupts during neopixel_write causes timing problems and therefore wrong light patterns. Switching off IRQs should help to keep the strict timing schedule. | ||
* | esp8266/esp_mphal.h: Add mp_hal_ticks_cpu() for reuse. | Paul Sokolovsky | 2016-08-07 |
| | |||
* | esp8266: Add esp.neopixel_write function to bit-bang WS2812 data. | Damien George | 2016-03-26 |