Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-28Fix typo in block code around interrups and clock adjustmnetsDaniel Garcia
2017-08-27Merge branch 'master' of https://github.com/FastLED/FastLEDDaniel Garcia
2017-08-27Fix def typo, remove reliance on __empty symbol for broken build ↵Daniel Garcia
environments that have neither yield nor empty
2017-08-26Fix FastLED version (#487)Nico
2017-08-23Typo fix (#484)Nico
2017-08-17Pull the SPI race condition fix over to the teensy 3.6 spi code as well. ↵v3.1.6Daniel Garcia
Fixes #419 for teensy 3.6 as well
2017-08-17Better handle places where yield isn't defined by the system. E.g. Fixing #413.Daniel Garcia
2017-08-17Fix #473 -- pull including bitswap and fastled_delay into a top level header ↵Daniel Garcia
file, reduces reliance on builders setting up include paths properly.
2017-08-17Fix #478 -- don't use a generic name for NOP in case other platforms mess ↵Daniel Garcia
with it.
2017-08-16Update release notes and bump version numbersDaniel Garcia
2017-08-16Fix #450 - guard the OctoWS2811 WS2813 timings/instance against an older ↵Daniel Garcia
version of OctoWS2811 that doesn't define the chip.
2017-08-16Fix #475, add support for the octows2811 adapterDaniel Garcia
2017-08-16Support for ESP32 (#474)Sam Guyer
Credit to Rina Shkrabova for the first cut.
2017-08-16Support ATtinyX41 boards. (#467)phardy
2017-05-29Added AVR asm version of ease8InOutQuad which is a little faster, and a ↵Mark Kriegsman
little smaller than the C version; it also preserves one additional low-order bit of precision so while it may not give exactly the same numeric results as the C in all cases, it presumably gives 'better' (smoother) ones.
2017-05-28Merge branch 'master' of https://github.com/FastLED/FastLEDMark Kriegsman
2017-05-28Update ease8InOutQuad for 'fixed' scale8.Mark Kriegsman
2017-05-23Support 6-channel parallel output on ESP 8266 (#452)Jan Losinski
* Implement 6 channel parallel output for ESP8266 This adds channel 4 and 5 to the set of possible GPIO channels for parallel output. Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de> * ESP8266: initialize only needed pins Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
2017-04-07Merge pull request #437 from PaulStoffregen/masterDaniel Garcia
Adjust millis on Teensy LC
2017-04-07Adjust millis on Teensy LCPaulStoffregen
2017-03-25Force gradient palettes to be aligned in memory on ARM. Only needed on some ↵Mark Kriegsman
ARM platforms, but rather than play whack-a-mole with future chipsets and their requirements, we'll just be a little extra careful here. Fixes #428.
2017-03-13Merge pull request #420 from mikeburg/bugs/419Daniel Garcia
Race condition fix for ARMHardwareSPIOutput::waitFully on Teensy 3.1/2
2017-03-05Race condition fix for ARMHardwareSPIOutput::waitFully on Teensy 3.1/3.2.lionsburg
SPI fifo byte push and TCF bit clear done using interrupts disable to prevent race condition between writeByte* routines and waitFully.
2017-02-22Updated hsv2rgb_spectrum for the fixed scale8. Fixes #412Mark Kriegsman
2017-02-22Merge branch 'master' of https://github.com/FastLED/FastLEDMark Kriegsman
2017-02-22Removed an ALWAYS_INLINE because avr-gcc can't be trusted with grown-up tools.Mark Kriegsman
2017-02-17Merge pull request #381 from mjbcopland/pixelset-fixDaniel Garcia
Fix CRGBArray operator=
2017-02-17Merge pull request #402 from kcouck/Teensy_3.6Daniel Garcia
Teensy 3.6 support
2017-02-02Added AVR asm version of blend8: smaller, faster. Marked blend8 as 'always ↵Mark Kriegsman
inline', as it probably should have been previously, since it results is smaller and faster code in almost every case, since the body is only about 12 AVR instructions. ATtiny uses 'C' version since the AVR assembly code uses the hardware multplier, which the 12-years-old-now ATtiny doesn't have.
2017-01-21Enable PORTB parallel outputKris Couck
2017-01-21Correct define to k66Kris Couck
2017-01-20Fixed loss-of-precision bug in pixel blending. Pixel blending should be a ↵Mark Kriegsman
little smoother now and free from error noise in the low bits. This includes palette colors returned from ColorFromPalette, which are now slightly smoother. Also introduced a new lib8tion function, blend8( byte, byte, fract8). The new pixel blending should have negligible effect on code size, and it is ever so slightly faster than the old version with the error. Fixes #404.
2017-01-16Fix SPI issue for SPI1Kris Couck
2017-01-16Add K66 (Teensy 3.6)Kris Couck
2017-01-15Updated scale16 and scale16by8 for AVR when FASTLED_SCALE8_FIXED is 1. ↵Mark Kriegsman
scale16(foo,65535) now equals foo. Updated DemoReel100 to stay within range of NUM_LEDS on non-AVR platforms. Fixes #368.
2017-01-14Merge pull request #382 from hsiboy/patch-1Daniel Garcia
Update MultiArrays.ino
2017-01-14Merge pull request #383 from hsiboy/patch-2Daniel Garcia
ArrayOfLedArrays.ino
2017-01-14Merge pull request #389 from benjamind/fix-esp8266-parallel-outputDaniel Garcia
Fixes ESP8266 parallel output
2017-01-14Merge pull request #400 from adafruit/masterDaniel Garcia
Add support for __SAMD21E18A__ (Adafruit Gemma M0) + typo
2017-01-14Add support for __SAMD21E18A__, Adafruit Gemma M0 (which uses that chip), ↵ladyada
and a tiny typo
2017-01-09Making 'HeatColor' finally aware of 'new' scale8 behavior. Fixes #284Mark Kriegsman
2016-12-19Reverted WAIT_TIME to 5Ben Delarre
2016-12-19Fixes ESP8266 parallel outputBen Delarre
2016-12-10Update ArrayOfLedArrays.inostuart taylor
Typo in comment, said four strips on three pins
2016-12-10Update MultiArrays.inostuart taylor
comment said *four* strips on three pins. Code is for three strips on three pins.
2016-12-09Fix CRGBArray operator=Michael Copland
2016-12-09Merge pull request #379 from jake-b/masterMark Kriegsman
Fix for crash caused when loading large palettes (Issue #378)
2016-12-08Fix for crash caused when loading large palettesJake Bordens
2016-10-19Merge pull request #357 from keestux/add_sodaq_autonomoDaniel Garcia
Add support for SODAQ Autonomo (SAMD21J18A)
2016-10-18Fix DUE parallel output when there are fewer than 8 lanes.Daniel Garcia