From 368127e84850490e9449239379162f1809340b9c Mon Sep 17 00:00:00 2001 From: Cabillot Julien Date: Mon, 26 Nov 2018 00:49:19 +0100 Subject: [PATCH] Initial commit --- arduino/ColorPalette/ColorPalette.ino | 188 ++ arduino/ColorPalette/Makefile | 4 + arduino/ColorTemperature/ColorTemperature.ino | 85 + arduino/Cylon/Cylon.ino | 53 + arduino/DemoReel100/DemoReel100.ino | 126 + arduino/FastLED-3.1.0.zip | Bin 0 -> 273612 bytes .../Fire2012WithPalette.ino | 164 ++ arduino/Noise/Noise.ino | 112 + arduino/arduino-headless | 5 + arduino/slave/slave.ino | 38 + arduino/stripok.bkp/stripok.ino | 86 + arduino/stripok/stripok.ino | 31 + arduino/test/FastLED.cpp | 247 ++ arduino/test/FastLED.h | 490 ++++ arduino/test/LICENSE | 20 + arduino/test/PORTING.md | 29 + arduino/test/README.md | 85 + arduino/test/bitswap.h | 272 ++ arduino/test/chipsets.h | 556 ++++ arduino/test/color.h | 82 + arduino/test/colorpalettes.cpp | 174 ++ arduino/test/colorpalettes.h | 56 + arduino/test/colorutils.cpp | 817 ++++++ arduino/test/colorutils.h | 1165 ++++++++ arduino/test/controller.h | 587 +++++ arduino/test/dmx.h | 112 + arduino/test/docs/.Doxyfile.swp | Bin 0 -> 126976 bytes arduino/test/docs/Doxyfile | 2331 +++++++++++++++++ arduino/test/docs/mainpage.dox | 10 + .../examples/AnalogOutput/AnalogOutput.ino | 65 + arduino/test/examples/Blink/Blink.ino | 54 + .../examples/ColorPalette/ColorPalette.ino | 188 ++ .../ColorTemperature/ColorTemperature.ino | 85 + arduino/test/examples/Cylon/Cylon.ino | 53 + .../test/examples/DemoReel100/DemoReel100.ino | 126 + arduino/test/examples/Fire2012/Fire2012.ino | 105 + .../Fire2012WithPalette.ino | 164 ++ .../test/examples/FirstLight/FirstLight.ino | 78 + .../ArrayOfLedArrays/ArrayOfLedArrays.ino | 37 + .../MirroringSample/MirroringSample.ino | 44 + .../Multiple/MultiArrays/MultiArrays.ino | 52 + .../MultipleStripsInOneArray.ino | 34 + .../OctoWS2811Demo/OctoWS2811Demo.ino | 37 + .../ParallelOutputDemo/ParallelOutputDemo.ino | 47 + arduino/test/examples/Noise/Noise.ino | 112 + .../NoisePlayground/NoisePlayground.ino | 73 + .../NoisePlusPalette/NoisePlusPalette.ino | 273 ++ arduino/test/examples/Pintest/Pintest.ino | 105 + .../PJRCSpectrumAnalyzer.ino | 136 + .../examples/RGBCalibrate/RGBCalibrate.ino | 73 + .../test/examples/SmartMatrix/SmartMatrix.ino | 121 + arduino/test/examples/XYMatrix/XYMatrix.ino | 197 ++ arduino/test/extras/AppleII.s65 | 40 + arduino/test/extras/FastLED6502.s65 | 633 +++++ arduino/test/extras/RainbowDemo.bin.zip | Bin 0 -> 848 bytes arduino/test/extras/RainbowDemo.s65 | 89 + arduino/test/fastled_config.h | 22 + arduino/test/fastled_delay.h | 121 + arduino/test/fastled_progmem.h | 64 + arduino/test/fastpin.h | 202 ++ arduino/test/fastspi.h | 113 + arduino/test/fastspi_bitbang.h | 354 +++ arduino/test/fastspi_dma.h | 0 arduino/test/fastspi_nop.h | 59 + arduino/test/fastspi_ref.h | 89 + arduino/test/fastspi_types.h | 41 + arduino/test/hsv2rgb.cpp | 629 +++++ arduino/test/hsv2rgb.h | 89 + arduino/test/keywords.txt | 367 +++ arduino/test/led_sysdefs.h | 41 + arduino/test/lib8tion.cpp | 251 ++ arduino/test/lib8tion.h | 1083 ++++++++ arduino/test/lib8tion/math8.h | 357 +++ arduino/test/lib8tion/random8.h | 94 + arduino/test/lib8tion/scale8.h | 511 ++++ arduino/test/lib8tion/trig8.h | 259 ++ .../test/libraries/FastLED-3.1.0/.gitignore | 1 + .../test/libraries/FastLED-3.1.0/FastLED.cpp | 247 ++ .../test/libraries/FastLED-3.1.0/FastLED.h | 490 ++++ arduino/test/libraries/FastLED-3.1.0/LICENSE | 20 + .../test/libraries/FastLED-3.1.0/PORTING.md | 29 + .../test/libraries/FastLED-3.1.0/README.md | 85 + .../test/libraries/FastLED-3.1.0/bitswap.h | 272 ++ .../test/libraries/FastLED-3.1.0/chipsets.h | 556 ++++ arduino/test/libraries/FastLED-3.1.0/color.h | 82 + .../libraries/FastLED-3.1.0/colorpalettes.cpp | 174 ++ .../libraries/FastLED-3.1.0/colorpalettes.h | 56 + .../libraries/FastLED-3.1.0/colorutils.cpp | 817 ++++++ .../test/libraries/FastLED-3.1.0/colorutils.h | 1165 ++++++++ .../test/libraries/FastLED-3.1.0/controller.h | 587 +++++ arduino/test/libraries/FastLED-3.1.0/dmx.h | 112 + .../FastLED-3.1.0/docs/.Doxyfile.swp | Bin 0 -> 126976 bytes .../libraries/FastLED-3.1.0/docs/Doxyfile | 2331 +++++++++++++++++ .../libraries/FastLED-3.1.0/docs/mainpage.dox | 10 + .../examples/AnalogOutput/AnalogOutput.ino | 65 + .../FastLED-3.1.0/examples/Blink/Blink.ino | 54 + .../examples/ColorPalette/ColorPalette.ino | 188 ++ .../ColorTemperature/ColorTemperature.ino | 85 + .../FastLED-3.1.0/examples/Cylon/Cylon.ino | 53 + .../examples/DemoReel100/DemoReel100.ino | 126 + .../examples/Fire2012/Fire2012.ino | 105 + .../Fire2012WithPalette.ino | 164 ++ .../examples/FirstLight/FirstLight.ino | 78 + .../ArrayOfLedArrays/ArrayOfLedArrays.ino | 37 + .../MirroringSample/MirroringSample.ino | 44 + .../Multiple/MultiArrays/MultiArrays.ino | 52 + .../MultipleStripsInOneArray.ino | 34 + .../OctoWS2811Demo/OctoWS2811Demo.ino | 37 + .../ParallelOutputDemo/ParallelOutputDemo.ino | 47 + .../FastLED-3.1.0/examples/Noise/Noise.ino | 112 + .../NoisePlayground/NoisePlayground.ino | 73 + .../NoisePlusPalette/NoisePlusPalette.ino | 273 ++ .../examples/Pintest/Pintest.ino | 105 + .../PJRCSpectrumAnalyzer.ino | 136 + .../examples/RGBCalibrate/RGBCalibrate.ino | 73 + .../examples/SmartMatrix/SmartMatrix.ino | 121 + .../examples/XYMatrix/XYMatrix.ino | 197 ++ .../FastLED-3.1.0/extras/AppleII.s65 | 40 + .../FastLED-3.1.0/extras/FastLED6502.s65 | 633 +++++ .../FastLED-3.1.0/extras/RainbowDemo.bin.zip | Bin 0 -> 848 bytes .../FastLED-3.1.0/extras/RainbowDemo.s65 | 89 + .../libraries/FastLED-3.1.0/fastled_config.h | 22 + .../libraries/FastLED-3.1.0/fastled_delay.h | 121 + .../libraries/FastLED-3.1.0/fastled_progmem.h | 64 + .../test/libraries/FastLED-3.1.0/fastpin.h | 202 ++ .../test/libraries/FastLED-3.1.0/fastspi.h | 113 + .../libraries/FastLED-3.1.0/fastspi_bitbang.h | 354 +++ .../libraries/FastLED-3.1.0/fastspi_dma.h | 0 .../libraries/FastLED-3.1.0/fastspi_nop.h | 59 + .../libraries/FastLED-3.1.0/fastspi_ref.h | 89 + .../libraries/FastLED-3.1.0/fastspi_types.h | 41 + .../test/libraries/FastLED-3.1.0/hsv2rgb.cpp | 629 +++++ .../test/libraries/FastLED-3.1.0/hsv2rgb.h | 89 + .../test/libraries/FastLED-3.1.0/keywords.txt | 367 +++ .../libraries/FastLED-3.1.0/led_sysdefs.h | 41 + .../test/libraries/FastLED-3.1.0/lib8tion.cpp | 251 ++ .../test/libraries/FastLED-3.1.0/lib8tion.h | 1083 ++++++++ .../libraries/FastLED-3.1.0/lib8tion/math8.h | 357 +++ .../FastLED-3.1.0/lib8tion/random8.h | 94 + .../libraries/FastLED-3.1.0/lib8tion/scale8.h | 511 ++++ .../libraries/FastLED-3.1.0/lib8tion/trig8.h | 259 ++ .../FastLED-3.1.0/library.properties | 9 + .../test/libraries/FastLED-3.1.0/noise.cpp | 744 ++++++ arduino/test/libraries/FastLED-3.1.0/noise.h | 95 + .../test/libraries/FastLED-3.1.0/pixeltypes.h | 846 ++++++ .../test/libraries/FastLED-3.1.0/platforms.h | 28 + .../platforms/arm/common/m0clockless.h | 313 +++ .../platforms/arm/d21/clockless_arm_d21.h | 89 + .../platforms/arm/d21/fastled_arm_d21.h | 8 + .../platforms/arm/d21/fastpin_arm_d21.h | 95 + .../platforms/arm/d21/led_sysdefs_arm_d21.h | 26 + .../platforms/arm/k20/clockless_arm_k20.h | 145 + .../arm/k20/clockless_block_arm_k20.h | 396 +++ .../platforms/arm/k20/fastled_arm_k20.h | 14 + .../platforms/arm/k20/fastpin_arm_k20.h | 120 + .../platforms/arm/k20/fastspi_arm_k20.h | 446 ++++ .../platforms/arm/k20/led_sysdefs_arm_k20.h | 46 + .../platforms/arm/k20/octows2811_controller.h | 96 + .../platforms/arm/k20/smartmatrix_t3.h | 83 + .../platforms/arm/kl26/clockless_arm_kl26.h | 89 + .../platforms/arm/kl26/fastled_arm_kl26.h | 10 + .../platforms/arm/kl26/fastpin_arm_kl26.h | 88 + .../platforms/arm/kl26/fastspi_arm_kl26.h | 252 ++ .../platforms/arm/kl26/led_sysdefs_arm_kl26.h | 45 + .../platforms/arm/nrf51/clockless_arm_nrf51.h | 117 + .../platforms/arm/nrf51/fastled_arm_nrf51.h | 11 + .../platforms/arm/nrf51/fastpin_arm_nrf51.h | 119 + .../platforms/arm/nrf51/fastspi_arm_nrf51.h | 146 ++ .../arm/nrf51/led_sysdefs_arm_nrf51.h | 44 + .../platforms/arm/sam/clockless_arm_sam.h | 145 + .../arm/sam/clockless_block_arm_sam.h | 206 ++ .../platforms/arm/sam/fastled_arm_sam.h | 11 + .../platforms/arm/sam/fastpin_arm_sam.h | 137 + .../platforms/arm/sam/fastspi_arm_sam.h | 163 ++ .../platforms/arm/sam/led_sysdefs_arm_sam.h | 39 + .../platforms/arm/stm32/clockless_arm_stm32.h | 147 ++ .../platforms/arm/stm32/fastled_arm_stm32.h | 10 + .../platforms/arm/stm32/fastpin_arm_stm32.h | 105 + .../arm/stm32/led_sysdefs_arm_stm32.h | 47 + .../platforms/avr/clockless_trinket.h | 514 ++++ .../FastLED-3.1.0/platforms/avr/fastled_avr.h | 14 + .../FastLED-3.1.0/platforms/avr/fastpin_avr.h | 280 ++ .../FastLED-3.1.0/platforms/avr/fastspi_avr.h | 505 ++++ .../platforms/avr/led_sysdefs_avr.h | 52 + .../libraries/FastLED-3.1.0/power_mgt.cpp | 180 ++ .../test/libraries/FastLED-3.1.0/power_mgt.h | 65 + .../FastLED-3.1.0/preview_changes.txt | 19 + .../libraries/FastLED-3.1.0/release_notes.md | 127 + .../test/libraries/FastLED-3.1.0/wiring.cpp | 238 ++ arduino/test/libraries/FastLED.cpp | 247 ++ arduino/test/libraries/FastLED.h | 490 ++++ arduino/test/libraries/LICENSE | 20 + arduino/test/libraries/PORTING.md | 29 + arduino/test/libraries/README.md | 85 + arduino/test/libraries/bitswap.h | 272 ++ arduino/test/libraries/chipsets.h | 556 ++++ arduino/test/libraries/color.h | 82 + arduino/test/libraries/colorpalettes.cpp | 174 ++ arduino/test/libraries/colorpalettes.h | 56 + arduino/test/libraries/colorutils.cpp | 817 ++++++ arduino/test/libraries/colorutils.h | 1165 ++++++++ arduino/test/libraries/controller.h | 587 +++++ arduino/test/libraries/dmx.h | 112 + arduino/test/libraries/docs/.Doxyfile.swp | Bin 0 -> 126976 bytes arduino/test/libraries/docs/Doxyfile | 2331 +++++++++++++++++ arduino/test/libraries/docs/mainpage.dox | 10 + .../examples/AnalogOutput/AnalogOutput.ino | 65 + .../test/libraries/examples/Blink/Blink.ino | 54 + .../examples/ColorPalette/ColorPalette.ino | 188 ++ .../ColorTemperature/ColorTemperature.ino | 85 + .../test/libraries/examples/Cylon/Cylon.ino | 53 + .../examples/DemoReel100/DemoReel100.ino | 126 + .../libraries/examples/Fire2012/Fire2012.ino | 105 + .../Fire2012WithPalette.ino | 164 ++ .../examples/FirstLight/FirstLight.ino | 78 + .../ArrayOfLedArrays/ArrayOfLedArrays.ino | 37 + .../MirroringSample/MirroringSample.ino | 44 + .../Multiple/MultiArrays/MultiArrays.ino | 52 + .../MultipleStripsInOneArray.ino | 34 + .../OctoWS2811Demo/OctoWS2811Demo.ino | 37 + .../ParallelOutputDemo/ParallelOutputDemo.ino | 47 + .../test/libraries/examples/Noise/Noise.ino | 112 + .../NoisePlayground/NoisePlayground.ino | 73 + .../NoisePlusPalette/NoisePlusPalette.ino | 273 ++ .../libraries/examples/Pintest/Pintest.ino | 105 + .../PJRCSpectrumAnalyzer.ino | 136 + .../examples/RGBCalibrate/RGBCalibrate.ino | 73 + .../examples/SmartMatrix/SmartMatrix.ino | 121 + .../libraries/examples/XYMatrix/XYMatrix.ino | 197 ++ arduino/test/libraries/extras/AppleII.s65 | 40 + arduino/test/libraries/extras/FastLED6502.s65 | 633 +++++ .../test/libraries/extras/RainbowDemo.bin.zip | Bin 0 -> 848 bytes arduino/test/libraries/extras/RainbowDemo.s65 | 89 + arduino/test/libraries/fastled_config.h | 22 + arduino/test/libraries/fastled_delay.h | 121 + arduino/test/libraries/fastled_progmem.h | 64 + arduino/test/libraries/fastpin.h | 202 ++ arduino/test/libraries/fastspi.h | 113 + arduino/test/libraries/fastspi_bitbang.h | 354 +++ arduino/test/libraries/fastspi_dma.h | 0 arduino/test/libraries/fastspi_nop.h | 59 + arduino/test/libraries/fastspi_ref.h | 89 + arduino/test/libraries/fastspi_types.h | 41 + arduino/test/libraries/hsv2rgb.cpp | 629 +++++ arduino/test/libraries/hsv2rgb.h | 89 + arduino/test/libraries/keywords.txt | 367 +++ arduino/test/libraries/led_sysdefs.h | 41 + arduino/test/libraries/lib8tion.cpp | 251 ++ arduino/test/libraries/lib8tion.h | 1083 ++++++++ arduino/test/libraries/lib8tion/math8.h | 357 +++ arduino/test/libraries/lib8tion/random8.h | 94 + arduino/test/libraries/lib8tion/scale8.h | 511 ++++ arduino/test/libraries/lib8tion/trig8.h | 259 ++ arduino/test/libraries/library.properties | 9 + arduino/test/libraries/noise.cpp | 744 ++++++ arduino/test/libraries/noise.h | 95 + arduino/test/libraries/pixeltypes.h | 846 ++++++ arduino/test/libraries/platforms.h | 28 + .../platforms/arm/common/m0clockless.h | 313 +++ .../platforms/arm/d21/clockless_arm_d21.h | 89 + .../platforms/arm/d21/fastled_arm_d21.h | 8 + .../platforms/arm/d21/fastpin_arm_d21.h | 95 + .../platforms/arm/d21/led_sysdefs_arm_d21.h | 26 + .../platforms/arm/k20/clockless_arm_k20.h | 145 + .../arm/k20/clockless_block_arm_k20.h | 396 +++ .../platforms/arm/k20/fastled_arm_k20.h | 14 + .../platforms/arm/k20/fastpin_arm_k20.h | 120 + .../platforms/arm/k20/fastspi_arm_k20.h | 446 ++++ .../platforms/arm/k20/led_sysdefs_arm_k20.h | 46 + .../platforms/arm/k20/octows2811_controller.h | 96 + .../platforms/arm/k20/smartmatrix_t3.h | 83 + .../platforms/arm/kl26/clockless_arm_kl26.h | 89 + .../platforms/arm/kl26/fastled_arm_kl26.h | 10 + .../platforms/arm/kl26/fastpin_arm_kl26.h | 88 + .../platforms/arm/kl26/fastspi_arm_kl26.h | 252 ++ .../platforms/arm/kl26/led_sysdefs_arm_kl26.h | 45 + .../platforms/arm/nrf51/clockless_arm_nrf51.h | 117 + .../platforms/arm/nrf51/fastled_arm_nrf51.h | 11 + .../platforms/arm/nrf51/fastpin_arm_nrf51.h | 119 + .../platforms/arm/nrf51/fastspi_arm_nrf51.h | 146 ++ .../arm/nrf51/led_sysdefs_arm_nrf51.h | 44 + .../platforms/arm/sam/clockless_arm_sam.h | 145 + .../arm/sam/clockless_block_arm_sam.h | 206 ++ .../platforms/arm/sam/fastled_arm_sam.h | 11 + .../platforms/arm/sam/fastpin_arm_sam.h | 137 + .../platforms/arm/sam/fastspi_arm_sam.h | 163 ++ .../platforms/arm/sam/led_sysdefs_arm_sam.h | 39 + .../platforms/arm/stm32/clockless_arm_stm32.h | 147 ++ .../platforms/arm/stm32/fastled_arm_stm32.h | 10 + .../platforms/arm/stm32/fastpin_arm_stm32.h | 105 + .../arm/stm32/led_sysdefs_arm_stm32.h | 47 + .../platforms/avr/clockless_trinket.h | 514 ++++ .../libraries/platforms/avr/fastled_avr.h | 14 + .../libraries/platforms/avr/fastpin_avr.h | 280 ++ .../libraries/platforms/avr/fastspi_avr.h | 505 ++++ .../libraries/platforms/avr/led_sysdefs_avr.h | 52 + arduino/test/libraries/power_mgt.cpp | 180 ++ arduino/test/libraries/power_mgt.h | 65 + arduino/test/libraries/preview_changes.txt | 19 + arduino/test/libraries/release_notes.md | 127 + arduino/test/libraries/v3.1.0.zip | Bin 0 -> 273612 bytes arduino/test/libraries/wiring.cpp | 238 ++ arduino/test/library.properties | 9 + arduino/test/noise.cpp | 744 ++++++ arduino/test/noise.h | 95 + arduino/test/pixeltypes.h | 846 ++++++ arduino/test/platforms.h | 28 + .../test/platforms/arm/common/m0clockless.h | 313 +++ .../platforms/arm/d21/clockless_arm_d21.h | 89 + .../test/platforms/arm/d21/fastled_arm_d21.h | 8 + .../test/platforms/arm/d21/fastpin_arm_d21.h | 95 + .../platforms/arm/d21/led_sysdefs_arm_d21.h | 26 + .../platforms/arm/k20/clockless_arm_k20.h | 145 + .../arm/k20/clockless_block_arm_k20.h | 396 +++ .../test/platforms/arm/k20/fastled_arm_k20.h | 14 + .../test/platforms/arm/k20/fastpin_arm_k20.h | 120 + .../test/platforms/arm/k20/fastspi_arm_k20.h | 446 ++++ .../platforms/arm/k20/led_sysdefs_arm_k20.h | 46 + .../platforms/arm/k20/octows2811_controller.h | 96 + .../test/platforms/arm/k20/smartmatrix_t3.h | 83 + .../platforms/arm/kl26/clockless_arm_kl26.h | 89 + .../platforms/arm/kl26/fastled_arm_kl26.h | 10 + .../platforms/arm/kl26/fastpin_arm_kl26.h | 88 + .../platforms/arm/kl26/fastspi_arm_kl26.h | 252 ++ .../platforms/arm/kl26/led_sysdefs_arm_kl26.h | 45 + .../platforms/arm/nrf51/clockless_arm_nrf51.h | 117 + .../platforms/arm/nrf51/fastled_arm_nrf51.h | 11 + .../platforms/arm/nrf51/fastpin_arm_nrf51.h | 119 + .../platforms/arm/nrf51/fastspi_arm_nrf51.h | 146 ++ .../arm/nrf51/led_sysdefs_arm_nrf51.h | 44 + .../platforms/arm/sam/clockless_arm_sam.h | 145 + .../arm/sam/clockless_block_arm_sam.h | 206 ++ .../test/platforms/arm/sam/fastled_arm_sam.h | 11 + .../test/platforms/arm/sam/fastpin_arm_sam.h | 137 + .../test/platforms/arm/sam/fastspi_arm_sam.h | 163 ++ .../platforms/arm/sam/led_sysdefs_arm_sam.h | 39 + .../platforms/arm/stm32/clockless_arm_stm32.h | 147 ++ .../platforms/arm/stm32/fastled_arm_stm32.h | 10 + .../platforms/arm/stm32/fastpin_arm_stm32.h | 105 + .../arm/stm32/led_sysdefs_arm_stm32.h | 47 + .../test/platforms/avr/clockless_trinket.h | 514 ++++ arduino/test/platforms/avr/fastled_avr.h | 14 + arduino/test/platforms/avr/fastpin_avr.h | 280 ++ arduino/test/platforms/avr/fastspi_avr.h | 505 ++++ arduino/test/platforms/avr/led_sysdefs_avr.h | 52 + arduino/test/power_mgt.cpp | 180 ++ arduino/test/power_mgt.h | 65 + arduino/test/preview_changes.txt | 19 + arduino/test/release_notes.md | 127 + arduino/test/test.ino | 69 + arduino/test/wiring.cpp | 238 ++ ras/test.py | 40 + ras/test2.py | 13 + ras/test3.py | 12 + schema/rastable.fzz | Bin 0 -> 122891 bytes 355 files changed, 67999 insertions(+) create mode 100644 arduino/ColorPalette/ColorPalette.ino create mode 100644 arduino/ColorPalette/Makefile create mode 100644 arduino/ColorTemperature/ColorTemperature.ino create mode 100644 arduino/Cylon/Cylon.ino create mode 100644 arduino/DemoReel100/DemoReel100.ino create mode 100644 arduino/FastLED-3.1.0.zip create mode 100644 arduino/Fire2012WithPalette/Fire2012WithPalette.ino create mode 100644 arduino/Noise/Noise.ino create mode 100755 arduino/arduino-headless create mode 100644 arduino/slave/slave.ino create mode 100644 arduino/stripok.bkp/stripok.ino create mode 100644 arduino/stripok/stripok.ino create mode 100644 arduino/test/FastLED.cpp create mode 100644 arduino/test/FastLED.h create mode 100644 arduino/test/LICENSE create mode 100644 arduino/test/PORTING.md create mode 100644 arduino/test/README.md create mode 100644 arduino/test/bitswap.h create mode 100644 arduino/test/chipsets.h create mode 100644 arduino/test/color.h create mode 100644 arduino/test/colorpalettes.cpp create mode 100644 arduino/test/colorpalettes.h create mode 100644 arduino/test/colorutils.cpp create mode 100644 arduino/test/colorutils.h create mode 100644 arduino/test/controller.h create mode 100644 arduino/test/dmx.h create mode 100644 arduino/test/docs/.Doxyfile.swp create mode 100644 arduino/test/docs/Doxyfile create mode 100644 arduino/test/docs/mainpage.dox create mode 100644 arduino/test/examples/AnalogOutput/AnalogOutput.ino create mode 100644 arduino/test/examples/Blink/Blink.ino create mode 100644 arduino/test/examples/ColorPalette/ColorPalette.ino create mode 100644 arduino/test/examples/ColorTemperature/ColorTemperature.ino create mode 100644 arduino/test/examples/Cylon/Cylon.ino create mode 100644 arduino/test/examples/DemoReel100/DemoReel100.ino create mode 100644 arduino/test/examples/Fire2012/Fire2012.ino create mode 100644 arduino/test/examples/Fire2012WithPalette/Fire2012WithPalette.ino create mode 100644 arduino/test/examples/FirstLight/FirstLight.ino create mode 100644 arduino/test/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino create mode 100644 arduino/test/examples/Multiple/MirroringSample/MirroringSample.ino create mode 100644 arduino/test/examples/Multiple/MultiArrays/MultiArrays.ino create mode 100644 arduino/test/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino create mode 100644 arduino/test/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino create mode 100644 arduino/test/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino create mode 100644 arduino/test/examples/Noise/Noise.ino create mode 100644 arduino/test/examples/NoisePlayground/NoisePlayground.ino create mode 100644 arduino/test/examples/NoisePlusPalette/NoisePlusPalette.ino create mode 100644 arduino/test/examples/Pintest/Pintest.ino create mode 100644 arduino/test/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino create mode 100644 arduino/test/examples/RGBCalibrate/RGBCalibrate.ino create mode 100644 arduino/test/examples/SmartMatrix/SmartMatrix.ino create mode 100644 arduino/test/examples/XYMatrix/XYMatrix.ino create mode 100644 arduino/test/extras/AppleII.s65 create mode 100644 arduino/test/extras/FastLED6502.s65 create mode 100644 arduino/test/extras/RainbowDemo.bin.zip create mode 100644 arduino/test/extras/RainbowDemo.s65 create mode 100644 arduino/test/fastled_config.h create mode 100644 arduino/test/fastled_delay.h create mode 100644 arduino/test/fastled_progmem.h create mode 100644 arduino/test/fastpin.h create mode 100644 arduino/test/fastspi.h create mode 100644 arduino/test/fastspi_bitbang.h create mode 100644 arduino/test/fastspi_dma.h create mode 100644 arduino/test/fastspi_nop.h create mode 100644 arduino/test/fastspi_ref.h create mode 100644 arduino/test/fastspi_types.h create mode 100644 arduino/test/hsv2rgb.cpp create mode 100644 arduino/test/hsv2rgb.h create mode 100644 arduino/test/keywords.txt create mode 100644 arduino/test/led_sysdefs.h create mode 100644 arduino/test/lib8tion.cpp create mode 100644 arduino/test/lib8tion.h create mode 100644 arduino/test/lib8tion/math8.h create mode 100644 arduino/test/lib8tion/random8.h create mode 100644 arduino/test/lib8tion/scale8.h create mode 100644 arduino/test/lib8tion/trig8.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/.gitignore create mode 100644 arduino/test/libraries/FastLED-3.1.0/FastLED.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/FastLED.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/LICENSE create mode 100644 arduino/test/libraries/FastLED-3.1.0/PORTING.md create mode 100644 arduino/test/libraries/FastLED-3.1.0/README.md create mode 100644 arduino/test/libraries/FastLED-3.1.0/bitswap.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/chipsets.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/color.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/colorpalettes.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/colorpalettes.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/colorutils.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/colorutils.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/controller.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/dmx.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/docs/.Doxyfile.swp create mode 100644 arduino/test/libraries/FastLED-3.1.0/docs/Doxyfile create mode 100644 arduino/test/libraries/FastLED-3.1.0/docs/mainpage.dox create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/AnalogOutput/AnalogOutput.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Blink/Blink.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/ColorPalette/ColorPalette.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/ColorTemperature/ColorTemperature.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Cylon/Cylon.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/DemoReel100/DemoReel100.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Fire2012/Fire2012.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Fire2012WithPalette/Fire2012WithPalette.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/FirstLight/FirstLight.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/MirroringSample/MirroringSample.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/MultiArrays/MultiArrays.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Noise/Noise.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/NoisePlayground/NoisePlayground.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/NoisePlusPalette/NoisePlusPalette.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Pintest/Pintest.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/RGBCalibrate/RGBCalibrate.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/SmartMatrix/SmartMatrix.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/examples/XYMatrix/XYMatrix.ino create mode 100644 arduino/test/libraries/FastLED-3.1.0/extras/AppleII.s65 create mode 100644 arduino/test/libraries/FastLED-3.1.0/extras/FastLED6502.s65 create mode 100644 arduino/test/libraries/FastLED-3.1.0/extras/RainbowDemo.bin.zip create mode 100644 arduino/test/libraries/FastLED-3.1.0/extras/RainbowDemo.s65 create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastled_config.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastled_delay.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastled_progmem.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastpin.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi_bitbang.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi_dma.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi_nop.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi_ref.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/fastspi_types.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/hsv2rgb.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/hsv2rgb.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/keywords.txt create mode 100644 arduino/test/libraries/FastLED-3.1.0/led_sysdefs.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion/math8.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion/random8.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion/scale8.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/lib8tion/trig8.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/library.properties create mode 100644 arduino/test/libraries/FastLED-3.1.0/noise.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/noise.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/pixeltypes.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/common/m0clockless.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/d21/clockless_arm_d21.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/d21/fastled_arm_d21.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/d21/fastpin_arm_d21.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/d21/led_sysdefs_arm_d21.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/clockless_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/clockless_block_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/fastled_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/fastpin_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/fastspi_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/led_sysdefs_arm_k20.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/octows2811_controller.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/k20/smartmatrix_t3.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/kl26/clockless_arm_kl26.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/kl26/fastled_arm_kl26.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/kl26/fastpin_arm_kl26.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/kl26/fastspi_arm_kl26.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/kl26/led_sysdefs_arm_kl26.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/nrf51/clockless_arm_nrf51.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/nrf51/fastled_arm_nrf51.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/nrf51/fastpin_arm_nrf51.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/nrf51/fastspi_arm_nrf51.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/clockless_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/clockless_block_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/fastled_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/fastpin_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/fastspi_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/sam/led_sysdefs_arm_sam.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/stm32/clockless_arm_stm32.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/stm32/fastled_arm_stm32.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/stm32/fastpin_arm_stm32.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/arm/stm32/led_sysdefs_arm_stm32.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/avr/clockless_trinket.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/avr/fastled_avr.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/avr/fastpin_avr.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/avr/fastspi_avr.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/platforms/avr/led_sysdefs_avr.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/power_mgt.cpp create mode 100644 arduino/test/libraries/FastLED-3.1.0/power_mgt.h create mode 100644 arduino/test/libraries/FastLED-3.1.0/preview_changes.txt create mode 100644 arduino/test/libraries/FastLED-3.1.0/release_notes.md create mode 100644 arduino/test/libraries/FastLED-3.1.0/wiring.cpp create mode 100644 arduino/test/libraries/FastLED.cpp create mode 100644 arduino/test/libraries/FastLED.h create mode 100644 arduino/test/libraries/LICENSE create mode 100644 arduino/test/libraries/PORTING.md create mode 100644 arduino/test/libraries/README.md create mode 100644 arduino/test/libraries/bitswap.h create mode 100644 arduino/test/libraries/chipsets.h create mode 100644 arduino/test/libraries/color.h create mode 100644 arduino/test/libraries/colorpalettes.cpp create mode 100644 arduino/test/libraries/colorpalettes.h create mode 100644 arduino/test/libraries/colorutils.cpp create mode 100644 arduino/test/libraries/colorutils.h create mode 100644 arduino/test/libraries/controller.h create mode 100644 arduino/test/libraries/dmx.h create mode 100644 arduino/test/libraries/docs/.Doxyfile.swp create mode 100644 arduino/test/libraries/docs/Doxyfile create mode 100644 arduino/test/libraries/docs/mainpage.dox create mode 100644 arduino/test/libraries/examples/AnalogOutput/AnalogOutput.ino create mode 100644 arduino/test/libraries/examples/Blink/Blink.ino create mode 100644 arduino/test/libraries/examples/ColorPalette/ColorPalette.ino create mode 100644 arduino/test/libraries/examples/ColorTemperature/ColorTemperature.ino create mode 100644 arduino/test/libraries/examples/Cylon/Cylon.ino create mode 100644 arduino/test/libraries/examples/DemoReel100/DemoReel100.ino create mode 100644 arduino/test/libraries/examples/Fire2012/Fire2012.ino create mode 100644 arduino/test/libraries/examples/Fire2012WithPalette/Fire2012WithPalette.ino create mode 100644 arduino/test/libraries/examples/FirstLight/FirstLight.ino create mode 100644 arduino/test/libraries/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino create mode 100644 arduino/test/libraries/examples/Multiple/MirroringSample/MirroringSample.ino create mode 100644 arduino/test/libraries/examples/Multiple/MultiArrays/MultiArrays.ino create mode 100644 arduino/test/libraries/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino create mode 100644 arduino/test/libraries/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino create mode 100644 arduino/test/libraries/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino create mode 100644 arduino/test/libraries/examples/Noise/Noise.ino create mode 100644 arduino/test/libraries/examples/NoisePlayground/NoisePlayground.ino create mode 100644 arduino/test/libraries/examples/NoisePlusPalette/NoisePlusPalette.ino create mode 100644 arduino/test/libraries/examples/Pintest/Pintest.ino create mode 100644 arduino/test/libraries/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino create mode 100644 arduino/test/libraries/examples/RGBCalibrate/RGBCalibrate.ino create mode 100644 arduino/test/libraries/examples/SmartMatrix/SmartMatrix.ino create mode 100644 arduino/test/libraries/examples/XYMatrix/XYMatrix.ino create mode 100644 arduino/test/libraries/extras/AppleII.s65 create mode 100644 arduino/test/libraries/extras/FastLED6502.s65 create mode 100644 arduino/test/libraries/extras/RainbowDemo.bin.zip create mode 100644 arduino/test/libraries/extras/RainbowDemo.s65 create mode 100644 arduino/test/libraries/fastled_config.h create mode 100644 arduino/test/libraries/fastled_delay.h create mode 100644 arduino/test/libraries/fastled_progmem.h create mode 100644 arduino/test/libraries/fastpin.h create mode 100644 arduino/test/libraries/fastspi.h create mode 100644 arduino/test/libraries/fastspi_bitbang.h create mode 100644 arduino/test/libraries/fastspi_dma.h create mode 100644 arduino/test/libraries/fastspi_nop.h create mode 100644 arduino/test/libraries/fastspi_ref.h create mode 100644 arduino/test/libraries/fastspi_types.h create mode 100644 arduino/test/libraries/hsv2rgb.cpp create mode 100644 arduino/test/libraries/hsv2rgb.h create mode 100644 arduino/test/libraries/keywords.txt create mode 100644 arduino/test/libraries/led_sysdefs.h create mode 100644 arduino/test/libraries/lib8tion.cpp create mode 100644 arduino/test/libraries/lib8tion.h create mode 100644 arduino/test/libraries/lib8tion/math8.h create mode 100644 arduino/test/libraries/lib8tion/random8.h create mode 100644 arduino/test/libraries/lib8tion/scale8.h create mode 100644 arduino/test/libraries/lib8tion/trig8.h create mode 100644 arduino/test/libraries/library.properties create mode 100644 arduino/test/libraries/noise.cpp create mode 100644 arduino/test/libraries/noise.h create mode 100644 arduino/test/libraries/pixeltypes.h create mode 100644 arduino/test/libraries/platforms.h create mode 100644 arduino/test/libraries/platforms/arm/common/m0clockless.h create mode 100644 arduino/test/libraries/platforms/arm/d21/clockless_arm_d21.h create mode 100644 arduino/test/libraries/platforms/arm/d21/fastled_arm_d21.h create mode 100644 arduino/test/libraries/platforms/arm/d21/fastpin_arm_d21.h create mode 100644 arduino/test/libraries/platforms/arm/d21/led_sysdefs_arm_d21.h create mode 100644 arduino/test/libraries/platforms/arm/k20/clockless_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/clockless_block_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/fastled_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/fastpin_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/fastspi_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/led_sysdefs_arm_k20.h create mode 100644 arduino/test/libraries/platforms/arm/k20/octows2811_controller.h create mode 100644 arduino/test/libraries/platforms/arm/k20/smartmatrix_t3.h create mode 100644 arduino/test/libraries/platforms/arm/kl26/clockless_arm_kl26.h create mode 100644 arduino/test/libraries/platforms/arm/kl26/fastled_arm_kl26.h create mode 100644 arduino/test/libraries/platforms/arm/kl26/fastpin_arm_kl26.h create mode 100644 arduino/test/libraries/platforms/arm/kl26/fastspi_arm_kl26.h create mode 100644 arduino/test/libraries/platforms/arm/kl26/led_sysdefs_arm_kl26.h create mode 100644 arduino/test/libraries/platforms/arm/nrf51/clockless_arm_nrf51.h create mode 100644 arduino/test/libraries/platforms/arm/nrf51/fastled_arm_nrf51.h create mode 100644 arduino/test/libraries/platforms/arm/nrf51/fastpin_arm_nrf51.h create mode 100644 arduino/test/libraries/platforms/arm/nrf51/fastspi_arm_nrf51.h create mode 100644 arduino/test/libraries/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h create mode 100644 arduino/test/libraries/platforms/arm/sam/clockless_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/sam/clockless_block_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/sam/fastled_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/sam/fastpin_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/sam/fastspi_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/sam/led_sysdefs_arm_sam.h create mode 100644 arduino/test/libraries/platforms/arm/stm32/clockless_arm_stm32.h create mode 100644 arduino/test/libraries/platforms/arm/stm32/fastled_arm_stm32.h create mode 100644 arduino/test/libraries/platforms/arm/stm32/fastpin_arm_stm32.h create mode 100644 arduino/test/libraries/platforms/arm/stm32/led_sysdefs_arm_stm32.h create mode 100644 arduino/test/libraries/platforms/avr/clockless_trinket.h create mode 100644 arduino/test/libraries/platforms/avr/fastled_avr.h create mode 100644 arduino/test/libraries/platforms/avr/fastpin_avr.h create mode 100644 arduino/test/libraries/platforms/avr/fastspi_avr.h create mode 100644 arduino/test/libraries/platforms/avr/led_sysdefs_avr.h create mode 100644 arduino/test/libraries/power_mgt.cpp create mode 100644 arduino/test/libraries/power_mgt.h create mode 100644 arduino/test/libraries/preview_changes.txt create mode 100644 arduino/test/libraries/release_notes.md create mode 100644 arduino/test/libraries/v3.1.0.zip create mode 100644 arduino/test/libraries/wiring.cpp create mode 100644 arduino/test/library.properties create mode 100644 arduino/test/noise.cpp create mode 100644 arduino/test/noise.h create mode 100644 arduino/test/pixeltypes.h create mode 100644 arduino/test/platforms.h create mode 100644 arduino/test/platforms/arm/common/m0clockless.h create mode 100644 arduino/test/platforms/arm/d21/clockless_arm_d21.h create mode 100644 arduino/test/platforms/arm/d21/fastled_arm_d21.h create mode 100644 arduino/test/platforms/arm/d21/fastpin_arm_d21.h create mode 100644 arduino/test/platforms/arm/d21/led_sysdefs_arm_d21.h create mode 100644 arduino/test/platforms/arm/k20/clockless_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/clockless_block_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/fastled_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/fastpin_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/fastspi_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/led_sysdefs_arm_k20.h create mode 100644 arduino/test/platforms/arm/k20/octows2811_controller.h create mode 100644 arduino/test/platforms/arm/k20/smartmatrix_t3.h create mode 100644 arduino/test/platforms/arm/kl26/clockless_arm_kl26.h create mode 100644 arduino/test/platforms/arm/kl26/fastled_arm_kl26.h create mode 100644 arduino/test/platforms/arm/kl26/fastpin_arm_kl26.h create mode 100644 arduino/test/platforms/arm/kl26/fastspi_arm_kl26.h create mode 100644 arduino/test/platforms/arm/kl26/led_sysdefs_arm_kl26.h create mode 100644 arduino/test/platforms/arm/nrf51/clockless_arm_nrf51.h create mode 100644 arduino/test/platforms/arm/nrf51/fastled_arm_nrf51.h create mode 100644 arduino/test/platforms/arm/nrf51/fastpin_arm_nrf51.h create mode 100644 arduino/test/platforms/arm/nrf51/fastspi_arm_nrf51.h create mode 100644 arduino/test/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h create mode 100644 arduino/test/platforms/arm/sam/clockless_arm_sam.h create mode 100644 arduino/test/platforms/arm/sam/clockless_block_arm_sam.h create mode 100644 arduino/test/platforms/arm/sam/fastled_arm_sam.h create mode 100644 arduino/test/platforms/arm/sam/fastpin_arm_sam.h create mode 100644 arduino/test/platforms/arm/sam/fastspi_arm_sam.h create mode 100644 arduino/test/platforms/arm/sam/led_sysdefs_arm_sam.h create mode 100644 arduino/test/platforms/arm/stm32/clockless_arm_stm32.h create mode 100644 arduino/test/platforms/arm/stm32/fastled_arm_stm32.h create mode 100644 arduino/test/platforms/arm/stm32/fastpin_arm_stm32.h create mode 100644 arduino/test/platforms/arm/stm32/led_sysdefs_arm_stm32.h create mode 100644 arduino/test/platforms/avr/clockless_trinket.h create mode 100644 arduino/test/platforms/avr/fastled_avr.h create mode 100644 arduino/test/platforms/avr/fastpin_avr.h create mode 100644 arduino/test/platforms/avr/fastspi_avr.h create mode 100644 arduino/test/platforms/avr/led_sysdefs_avr.h create mode 100644 arduino/test/power_mgt.cpp create mode 100644 arduino/test/power_mgt.h create mode 100644 arduino/test/preview_changes.txt create mode 100644 arduino/test/release_notes.md create mode 100644 arduino/test/test.ino create mode 100644 arduino/test/wiring.cpp create mode 100644 ras/test.py create mode 100644 ras/test2.py create mode 100644 ras/test3.py create mode 100644 schema/rastable.fzz diff --git a/arduino/ColorPalette/ColorPalette.ino b/arduino/ColorPalette/ColorPalette.ino new file mode 100644 index 0000000..fcb731d --- /dev/null +++ b/arduino/ColorPalette/ColorPalette.ino @@ -0,0 +1,188 @@ +#include + +#define LED_PIN 6 +#define NUM_LEDS 6 +#define BRIGHTNESS 64 +#define LED_TYPE WS2811 +#define COLOR_ORDER GRB +CRGB leds[NUM_LEDS]; + +#define UPDATES_PER_SECOND 100 + +// This example shows several ways to set up and use 'palettes' of colors +// with FastLED. +// +// These compact palettes provide an easy way to re-colorize your +// animation on the fly, quickly, easily, and with low overhead. +// +// USING palettes is MUCH simpler in practice than in theory, so first just +// run this sketch, and watch the pretty lights as you then read through +// the code. Although this sketch has eight (or more) different color schemes, +// the entire sketch compiles down to about 6.5K on AVR. +// +// FastLED provides a few pre-configured color palettes, and makes it +// extremely easy to make up your own color schemes with palettes. +// +// Some notes on the more abstract 'theory and practice' of +// FastLED compact palettes are at the bottom of this file. + + + +CRGBPalette16 currentPalette; +TBlendType currentBlending; + +extern CRGBPalette16 myRedWhiteBluePalette; +extern const TProgmemPalette16 myRedWhiteBluePalette_p PROGMEM; + + +void setup() { + delay( 3000 ); // power-up safety delay + FastLED.addLeds(leds, NUM_LEDS).setCorrection( TypicalLEDStrip ); + FastLED.setBrightness( BRIGHTNESS ); + + currentPalette = RainbowColors_p; + currentBlending = LINEARBLEND; +} + + +void loop() +{ + ChangePalettePeriodically(); + + static uint8_t startIndex = 0; + startIndex = startIndex + 1; /* motion speed */ + + FillLEDsFromPaletteColors( startIndex); + + FastLED.show(); + FastLED.delay(1000 / UPDATES_PER_SECOND); +} + +void FillLEDsFromPaletteColors( uint8_t colorIndex) +{ + uint8_t brightness = 255; + + for( int i = 0; i < NUM_LEDS; i++) { + leds[i] = ColorFromPalette( currentPalette, colorIndex, brightness, currentBlending); + colorIndex += 3; + } +} + + +// There are several different palettes of colors demonstrated here. +// +// FastLED provides several 'preset' palettes: RainbowColors_p, RainbowStripeColors_p, +// OceanColors_p, CloudColors_p, LavaColors_p, ForestColors_p, and PartyColors_p. +// +// Additionally, you can manually define your own color palettes, or you can write +// code that creates color palettes on the fly. All are shown here. + +void ChangePalettePeriodically() +{ + uint8_t secondHand = (millis() / 1000) % 60; + static uint8_t lastSecond = 99; + + if( lastSecond != secondHand) { + lastSecond = secondHand; + if( secondHand == 0) { currentPalette = RainbowColors_p; currentBlending = LINEARBLEND; } + if( secondHand == 10) { currentPalette = RainbowStripeColors_p; currentBlending = NOBLEND; } + if( secondHand == 15) { currentPalette = RainbowStripeColors_p; currentBlending = LINEARBLEND; } + if( secondHand == 20) { SetupPurpleAndGreenPalette(); currentBlending = LINEARBLEND; } + if( secondHand == 25) { SetupTotallyRandomPalette(); currentBlending = LINEARBLEND; } + if( secondHand == 30) { SetupBlackAndWhiteStripedPalette(); currentBlending = NOBLEND; } + if( secondHand == 35) { SetupBlackAndWhiteStripedPalette(); currentBlending = LINEARBLEND; } + if( secondHand == 40) { currentPalette = CloudColors_p; currentBlending = LINEARBLEND; } + if( secondHand == 45) { currentPalette = PartyColors_p; currentBlending = LINEARBLEND; } + if( secondHand == 50) { currentPalette = myRedWhiteBluePalette_p; currentBlending = NOBLEND; } + if( secondHand == 55) { currentPalette = myRedWhiteBluePalette_p; currentBlending = LINEARBLEND; } + } +} + +// This function fills the palette with totally random colors. +void SetupTotallyRandomPalette() +{ + for( int i = 0; i < 16; i++) { + currentPalette[i] = CHSV( random8(), 255, random8()); + } +} + +// This function sets up a palette of black and white stripes, +// using code. Since the palette is effectively an array of +// sixteen CRGB colors, the various fill_* functions can be used +// to set them up. +void SetupBlackAndWhiteStripedPalette() +{ + // 'black out' all 16 palette entries... + fill_solid( currentPalette, 16, CRGB::Black); + // and set every fourth one to white. + currentPalette[0] = CRGB::White; + currentPalette[4] = CRGB::White; + currentPalette[8] = CRGB::White; + currentPalette[12] = CRGB::White; + +} + +// This function sets up a palette of purple and green stripes. +void SetupPurpleAndGreenPalette() +{ + CRGB purple = CHSV( HUE_PURPLE, 255, 255); + CRGB green = CHSV( HUE_GREEN, 255, 255); + CRGB black = CRGB::Black; + + currentPalette = CRGBPalette16( + green, green, black, black, + purple, purple, black, black, + green, green, black, black, + purple, purple, black, black ); +} + + +// This example shows how to set up a static color palette +// which is stored in PROGMEM (flash), which is almost always more +// plentiful than RAM. A static PROGMEM palette like this +// takes up 64 bytes of flash. +const TProgmemPalette16 myRedWhiteBluePalette_p PROGMEM = +{ + CRGB::Red, + CRGB::Gray, // 'white' is too bright compared to red and blue + CRGB::Blue, + CRGB::Black, + + CRGB::Red, + CRGB::Gray, + CRGB::Blue, + CRGB::Black, + + CRGB::Red, + CRGB::Red, + CRGB::Gray, + CRGB::Gray, + CRGB::Blue, + CRGB::Blue, + CRGB::Black, + CRGB::Black +}; + + + +// Additionl notes on FastLED compact palettes: +// +// Normally, in computer graphics, the palette (or "color lookup table") +// has 256 entries, each containing a specific 24-bit RGB color. You can then +// index into the color palette using a simple 8-bit (one byte) value. +// A 256-entry color palette takes up 768 bytes of RAM, which on Arduino +// is quite possibly "too many" bytes. +// +// FastLED does offer traditional 256-element palettes, for setups that +// can afford the 768-byte cost in RAM. +// +// However, FastLED also offers a compact alternative. FastLED offers +// palettes that store 16 distinct entries, but can be accessed AS IF +// they actually have 256 entries; this is accomplished by interpolating +// between the 16 explicit entries to create fifteen intermediate palette +// entries between each pair. +// +// So for example, if you set the first two explicit entries of a compact +// palette to Green (0,255,0) and Blue (0,0,255), and then retrieved +// the first sixteen entries from the virtual palette (of 256), you'd get +// Green, followed by a smooth gradient from green-to-blue, and then Blue. diff --git a/arduino/ColorPalette/Makefile b/arduino/ColorPalette/Makefile new file mode 100644 index 0000000..64452f5 --- /dev/null +++ b/arduino/ColorPalette/Makefile @@ -0,0 +1,4 @@ +%.ino: + arduino-headless --preserve-temp-files --board arduino:avr:uno --port /dev/ttyACM0 --upload $@ +toto: + arduino-headless --preserve-temp-files --board arduino:avr:uno --port /dev/ttyACM0 --upload $@ diff --git a/arduino/ColorTemperature/ColorTemperature.ino b/arduino/ColorTemperature/ColorTemperature.ino new file mode 100644 index 0000000..987a68f --- /dev/null +++ b/arduino/ColorTemperature/ColorTemperature.ino @@ -0,0 +1,85 @@ +#include + +#define LED_PIN 6 + +// Information about the LED strip itself +#define NUM_LEDS 6 +#define CHIPSET WS2812 +#define COLOR_ORDER GRB +CRGB leds[NUM_LEDS]; + +#define BRIGHTNESS 128 + + +// FastLED v2.1 provides two color-management controls: +// (1) color correction settings for each LED strip, and +// (2) master control of the overall output 'color temperature' +// +// THIS EXAMPLE demonstrates the second, "color temperature" control. +// It shows a simple rainbow animation first with one temperature profile, +// and a few seconds later, with a different temperature profile. +// +// The first pixel of the strip will show the color temperature. +// +// HELPFUL HINTS for "seeing" the effect in this demo: +// * Don't look directly at the LED pixels. Shine the LEDs aganst +// a white wall, table, or piece of paper, and look at the reflected light. +// +// * If you watch it for a bit, and then walk away, and then come back +// to it, you'll probably be able to "see" whether it's currently using +// the 'redder' or the 'bluer' temperature profile, even not counting +// the lowest 'indicator' pixel. +// +// +// FastLED provides these pre-conigured incandescent color profiles: +// Candle, Tungsten40W, Tungsten100W, Halogen, CarbonArc, +// HighNoonSun, DirectSunlight, OvercastSky, ClearBlueSky, +// FastLED provides these pre-configured gaseous-light color profiles: +// WarmFluorescent, StandardFluorescent, CoolWhiteFluorescent, +// FullSpectrumFluorescent, GrowLightFluorescent, BlackLightFluorescent, +// MercuryVapor, SodiumVapor, MetalHalide, HighPressureSodium, +// FastLED also provides an "Uncorrected temperature" profile +// UncorrectedTemperature; + +#define TEMPERATURE_1 Tungsten100W +#define TEMPERATURE_2 OvercastSky + +// How many seconds to show each temperature before switching +#define DISPLAYTIME 20 +// How many seconds to show black between switches +#define BLACKTIME 3 + +void loop() +{ + // draw a generic, no-name rainbow + static uint8_t starthue = 0; + fill_rainbow( leds + 5, NUM_LEDS - 5, --starthue, 20); + + // Choose which 'color temperature' profile to enable. + uint8_t secs = (millis() / 1000) % (DISPLAYTIME * 2); + if( secs < DISPLAYTIME) { + FastLED.setTemperature( TEMPERATURE_1 ); // first temperature + leds[0] = TEMPERATURE_1; // show indicator pixel + } else { + FastLED.setTemperature( TEMPERATURE_2 ); // second temperature + leds[0] = TEMPERATURE_2; // show indicator pixel + } + + // Black out the LEDs for a few secnds between color changes + // to let the eyes and brains adjust + if( (secs % DISPLAYTIME) < BLACKTIME) { + memset8( leds, 0, NUM_LEDS * sizeof(CRGB)); + } + + FastLED.show(); + FastLED.delay(8); +} + +void setup() { + delay( 3000 ); // power-up safety delay + // It's important to set the color correction for your LED strip here, + // so that colors can be more accurately rendered through the 'temperature' profiles + FastLED.addLeds(leds, NUM_LEDS).setCorrection( TypicalSMD5050 ); + FastLED.setBrightness( BRIGHTNESS ); +} + diff --git a/arduino/Cylon/Cylon.ino b/arduino/Cylon/Cylon.ino new file mode 100644 index 0000000..40a23d0 --- /dev/null +++ b/arduino/Cylon/Cylon.ino @@ -0,0 +1,53 @@ +#include "FastLED.h" + +// How many leds in your strip? +#define NUM_LEDS 6 + +// For led chips like Neopixels, which have a data line, ground, and power, you just +// need to define DATA_PIN. For led chipsets that are SPI based (four wires - data, clock, +// ground, and power), like the LPD8806, define both DATA_PIN and CLOCK_PIN +#define DATA_PIN 6 +#define CLOCK_PIN 13 + +// Define the array of leds +CRGB leds[NUM_LEDS]; + +void setup() { + Serial.begin(57600); + Serial.println("resetting"); + LEDS.addLeds(leds,NUM_LEDS); + LEDS.setBrightness(84); +} + +void fadeall() { for(int i = 0; i < NUM_LEDS; i++) { leds[i].nscale8(250); } } + +void loop() { + static uint8_t hue = 0; + Serial.print("x"); + // First slide the led in one direction + for(int i = 0; i < NUM_LEDS; i++) { + // Set the i'th led to red + leds[i] = CHSV(hue++, 255, 255); + // Show the leds + FastLED.show(); + // now that we've shown the leds, reset the i'th led to black + // leds[i] = CRGB::Black; + fadeall(); + // Wait a little bit before we loop around and do it again + delay(10); + } + Serial.print("x"); + + // Now go in the other direction. + for(int i = (NUM_LEDS)-1; i >= 0; i--) { + // Set the i'th led to red + leds[i] = CHSV(hue++, 255, 255); + // Show the leds + FastLED.show(); + // now that we've shown the leds, reset the i'th led to black + // leds[i] = CRGB::Black; + fadeall(); + // Wait a little bit before we loop around and do it again + delay(10); + } +} diff --git a/arduino/DemoReel100/DemoReel100.ino b/arduino/DemoReel100/DemoReel100.ino new file mode 100644 index 0000000..df88ab6 --- /dev/null +++ b/arduino/DemoReel100/DemoReel100.ino @@ -0,0 +1,126 @@ +#include "FastLED.h" + +FASTLED_USING_NAMESPACE + +// FastLED "100-lines-of-code" demo reel, showing just a few +// of the kinds of animation patterns you can quickly and easily +// compose using FastLED. +// +// This example also shows one easy way to define multiple +// animations patterns and have them automatically rotate. +// +// -Mark Kriegsman, December 2014 + +#if defined(FASTLED_VERSION) && (FASTLED_VERSION < 3001000) +#warning "Requires FastLED 3.1 or later; check github for latest code." +#endif + +#define DATA_PIN 6 +//#define CLK_PIN 4 +#define LED_TYPE WS2812 +#define COLOR_ORDER GRB +#define NUM_LEDS 6 +CRGB leds[NUM_LEDS]; + +#define BRIGHTNESS 96 +#define FRAMES_PER_SECOND 120 + +void setup() { + delay(3000); // 3 second delay for recovery + + // tell FastLED about the LED strip configuration + FastLED.addLeds(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); + //FastLED.addLeds(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); + + // set master brightness control + FastLED.setBrightness(BRIGHTNESS); +} + + +// List of patterns to cycle through. Each is defined as a separate function below. +typedef void (*SimplePatternList[])(); +SimplePatternList gPatterns = { rainbow, rainbowWithGlitter, confetti, sinelon, juggle, bpm }; + +uint8_t gCurrentPatternNumber = 0; // Index number of which pattern is current +uint8_t gHue = 0; // rotating "base color" used by many of the patterns + +void loop() +{ + // Call the current pattern function once, updating the 'leds' array + gPatterns[gCurrentPatternNumber](); + + // send the 'leds' array out to the actual LED strip + FastLED.show(); + // insert a delay to keep the framerate modest + FastLED.delay(1000/FRAMES_PER_SECOND); + + // do some periodic updates + EVERY_N_MILLISECONDS( 20 ) { gHue++; } // slowly cycle the "base color" through the rainbow + EVERY_N_SECONDS( 10 ) { nextPattern(); } // change patterns periodically +} + +#define ARRAY_SIZE(A) (sizeof(A) / sizeof((A)[0])) + +void nextPattern() +{ + // add one to the current pattern number, and wrap around at the end + gCurrentPatternNumber = (gCurrentPatternNumber + 1) % ARRAY_SIZE( gPatterns); +} + +void rainbow() +{ + // FastLED's built-in rainbow generator + fill_rainbow( leds, NUM_LEDS, gHue, 7); +} + +void rainbowWithGlitter() +{ + // built-in FastLED rainbow, plus some random sparkly glitter + rainbow(); + addGlitter(80); +} + +void addGlitter( fract8 chanceOfGlitter) +{ + if( random8() < chanceOfGlitter) { + leds[ random16(NUM_LEDS) ] += CRGB::White; + } +} + +void confetti() +{ + // random colored speckles that blink in and fade smoothly + fadeToBlackBy( leds, NUM_LEDS, 10); + int pos = random16(NUM_LEDS); + leds[pos] += CHSV( gHue + random8(64), 200, 255); +} + +void sinelon() +{ + // a colored dot sweeping back and forth, with fading trails + fadeToBlackBy( leds, NUM_LEDS, 20); + int pos = beatsin16(13,0,NUM_LEDS); + leds[pos] += CHSV( gHue, 255, 192); +} + +void bpm() +{ + // colored stripes pulsing at a defined Beats-Per-Minute (BPM) + uint8_t BeatsPerMinute = 62; + CRGBPalette16 palette = PartyColors_p; + uint8_t beat = beatsin8( BeatsPerMinute, 64, 255); + for( int i = 0; i < NUM_LEDS; i++) { //9948 + leds[i] = ColorFromPalette(palette, gHue+(i*2), beat-gHue+(i*10)); + } +} + +void juggle() { + // eight colored dots, weaving in and out of sync with each other + fadeToBlackBy( leds, NUM_LEDS, 20); + byte dothue = 0; + for( int i = 0; i < 8; i++) { + leds[beatsin16(i+7,0,NUM_LEDS)] |= CHSV(dothue, 200, 255); + dothue += 32; + } +} + diff --git a/arduino/FastLED-3.1.0.zip b/arduino/FastLED-3.1.0.zip new file mode 100644 index 0000000000000000000000000000000000000000..c9785b7549466df23efea421c88fafdd179bd90d GIT binary patch literal 273612 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

B7U<*XB$%^HlNp(UCEkv< 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

  • *z%=G` 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

    %bzq1Cb9xum zn-wO?n)kz_H@?Ue9U*y9?|OO-4W5tdK~9H9!obw>k-BbQwx&JishLob0DEcQ__z+| z_=wndl^LTi*d2MXT{_?&u*pWl2tyA0wB1CNnS(TUvCpbD(HuSVduoI556#)R?<700 zt=TnNRDd?iDcKn|HbKjzi|wwFY(hOQqfpf~-BS@O~o zG^HJp^2~Y(6X(@F6sKy5>GZAWj13YJ+2U7bFhtpY`V0gLfowjXt99;U&pgMcf@M#0 z9FQc@!Ge^2pR*oEn!1Xg5TYxoBw)@ zVz)&l+E_gXBz#xN7~^Mv#ZEnGH*v0_YBx`YeOZxf|HY)!39VZje@N+K1C6x`eFEUO zm_^{ z6F8Mv(O?s4;@lR(CUAo0ahd57f+0~DlKuTLJlUt0Irh@8e zd0i`s!u!mem0iNemnoCZHQZk2N1MI|JMA6! zc%CIGShB|&i;2c?R@4V9F1wE=cp*yBttT)|ma6TI+TUSKB=4I=W;49evUk1+wiv3>-?gzezA3#2V_kh0y4e&tl_t^ix2`&NO!2Z`ge@_O={r_2T z4)_j!fNz7BfN^jupxS=3;QrvF_y8UY%3v7$9QaxAJ?#JQf){{sa8K|J`~Wepzs2uO z@F4I{_y82oUjf^}HlTWbw*qg3cB0?HDf|My6XkSHj8|&(GZkDAWfpX*jF;d~IisYd zD&K6YnI1NEOnVXjqg2t)Z%54DzzH$&Tm60U1eptXR= zB*%H4o3ukqd#TQXmw;yc-yT%g1)ZN+Wuf#!RqDij17=E z5RX%peRh;OadB*vz_#P(<~#N)c^|x7&VVl`X5Xpz!P-;(H zppx%U|8d(!D%=KCU)?qsTiG_Xh}|={Z7_Q*M1Qf67=rxks91;7C<@9dE+VWYS)RVJ zCFdcvpK%g%S@xMFT$^7DhrTVu_=lFC_mQoXMig$aT`%Jh=`>OmuSgrV2A$gyl|uBk z2FIrk7j|s#yQt7RQm)~NrwqMf2BE$UszP?Gnx?htYbi0RynMVuwuc=S$kha0dm>JX zTHA=Y#588OOtV32>B=?IWeov5dLhG-h19RPC34_|-=&tys6(oZ9G~Cfdspxwv(%AJ^2}m{MCYx4Q6&{~-z-&i{gfT#RgN7CNZ;m;`epf| zrbx@n94ASJ!gyWWVnML_ec7=rEmolA6t^92*X$fV?wN1^rqJ73##JS2TT3akxQ<6SiY*cUTZNlz3o{Fc!-c06cZ;kfuDFl zi1MwPN7f7%+bFzcT05lk6=scfa%1%LgfNBmBXu-&3_fu6;1M>`;ekx$^>xOdlV!DW znQjSpi!5sSZT+9Q8IfWCa6jTZe-{{mazK-QDLb60Jf4TSA+fcn#bRlM zK2Z?ZU(6L`^v%&wU$7gC&8(_$mcm-p%l=^|BN@H+R6kUpCD=yKlpLoZWU#L#XyoBZ zS~k`Vbj?J?_V)~wOp}YF`WQp8 zG#wZY!<8$7;dC;KqOttDrS@I|(H+cUTd(T>VM6!(TCo4)`Tq}N>%RaT1&;t*zy;td z*!_P2ehoYx90iX6zXU#n-G37Ff%Cuvz^AbJpA0Sms`dZ-U=&;k?g>7JjsIEjF7Rhy z8Jr7lz~28;@HX%w@Io*J&H;Z$ho26v1Xq9^U_1CScK?gO6Tz>5hXLjOp9?;LAK)#Z z0qWogI1GLU==}e)z;SRP*ahwZ?hgJ6pTH`(2HXeS8~o%p)HVd~099~b@ICwhp9H@P zt_LT;aqu9Z+J5f_PXMCx<3aLIY_>l6d)0x7PHS3gCBw%`l)-c|m5O)V)f5h$>7%Y7 zN%;0%he*@=zK$(fI#n|0QIbb(3P9M5t~#*a?m4vsR9 z4J!S2^KaU{8h4W5kQeEBvq3amQ+vOviRylxHnq?M8a+!rwpS<>u4+=CeMz|oQYsJd zN!nwy(^n5q77vnZyl;GjL$DT;G6RK8va15`>MBvy*tk53W}CHJ2BKx0lf>m>$^|zu zE!xAA%e3?|Sv2DVoL!jcAB$cepNbnZ4F`rsy0B*vp6hh>xJ@j6Y+8~kdyS+ig4!aX z2~V5Skk_ef=l7g2Q$LS$BbjDO56X;21&HJ9r6!W5NJS+>44UiS@I5edeusM~ax8_n zXYcS>|Kt(MY{Y`#ww&U2kD=@fbFJ zXv+Sc-IS440|$mvQN`B1ai>xD!HD#0Es{9J=1jmTllq85Hm}Ss(`J@P6<~^zIi~+i zeI!Vt#cL4x$*pk69`gjHT+tA|UkL;;!nV)rfdd2S4v>=L49%-ZVULwv#Y`dg(oM;Z zvYA=0-AW@1-Y*xCx?Pa3U_PYUokfiS&nU3(|xQ=52dEUl<9C#d#D>w$cX$wpyY zY`!tE%Pc3V%b4{@VveJ3wd1K_E#>HB`XU0pOKuG73IlT1%gprVDi-=8(lM=+&i30G zB6j9(4fVo8MBP$HL=L|@m}Z?~*zGliJT+Azzuen9 z1haD_-7RrmB7dUL+qYO>5>ef0{SYArAso+wP%>xuVYvstl|)SH{R%#uw(g2(SlI^R$wwCpGo&a zk=z+dCn6zn(()z|H@w~u!oKS(!P3pcfFvYx4q{yzg*T1zA+`CY`RU8cTU!kdJ)T&W zQ)nAu3yuRcboTP(!zy!ocJA1*>k`qMmJ-?H?#0}0mh=jNA$Ot->(TfiG|$e#(O^b< zwD)~ivuV;%2dkc;>UHtgS)Y;k=P~0@+G$rS)tD`=PTi8(PEUr!ITRD%8BD@lX^hf? zU3&@>G4Q#Opv%VMiOC~0XHHm+^S8v@KG4^N%eT zD~*rSI6dI&F-zo1*U)KhcwYbi-Wa2gl1)nd|Ege^{xi1z*THkZFt`=?G&cToz_URG zEP{K14`Syl|Gx$%!QH@J!H==|e*|6&R15H~;0_?(_xC5*|8D?u;4a_;*!}MWj{}bd z@xH%%@%x9d`=0;?!2s9{R2T5;*!|B1PXt3?5U3vDX7D-e{-=V=!FRFqUkJv6&Hrs| z`#%CY_y0_wv;Y0z-?8uC0)7(=0G;)}8@MZY-)-m{*a~!3;A!BY;FrOdpx-}%_ks5U z(Q_57{mgrEgF%zNB;@WB#q}kGC%)?Xt+&h{c!E|-u#we&8 z+XmH>^!7fpv*gPNIhzP?v{xNI)P59lTbk+Jmg$J?gJNLLVkR~F%s5Q8ARB7jD{Yst z!?4**ov`~XmyTB!Or4@Z6o>Zgy#Dk=1-|L5t>w=!3lo9i-cgMpRKAg?GEeF*`b+!8 zENm-?7r6ku^(P_)?-gl-UR zw1UVMjjha*DahLDIOO4pxoRt1Cm$54D5^7=Y*3nTliaN=q=6A?OAbvVGt-0+IV*FL zXX7a$q1}yGL0z6GMzQ3M!jRnZIf16=TC|ZY)k_7PEOZrxeBv8RvZJlB$XYQjVLPZ; z;c!&%Vzb7`o<`ir1d*7%Kzm_a?y1xw z$@-j9j?g>k2Gf)W1fTcIJZ_#GfjSvaoP=Z;bwAjV;o*e&TQoyk$*QD# zHEvat$HkVrzGQtcWzITJt!gxM83S>utX1y;G*HmCU6ISOREI8yGI*Nwft>Hxw;26@ zL&j)VA9gZsoYIRcW>{$M^X}EWk-etnpZ`*@_-U*N33CJJBD>>OD{?0$Ih-YDFPag) zTV3oe(^VzIxVnN8hG$^-A?@e7=GI^X^dadaHlN9kktaZtCO6y)Sq-wn}pmQydarLBzIe~Uzv5jsb1 z**-k2?k~+01}2H8gnU=tb0=*Fti=o|JE^d4Qu@x_Nldq?&Hx+UT*UNtCCP6p6@xs} zLd+5}HRLQK4+A%x7?_VHUEB@GWb_#^mTU{em@Jbvu@R%Rt2~pe>GT}Yveu{v=mO7L zupDiYH_o$Hdy5&SZKG2s$BMjmF^MJ_yT!9If>hTYdKEgQW=%6S zHPJti@n_y-opJ*+u!b&q<0VEiaFf1Krrvnkk3~XesGrj8MiJg4k3C6HHr=;vQ;zr|8KzFp9OaT@8tu>!Gpl(u;EUiN!Lz_1xB=V#bwIWJc7VHqzr()& z40s24JGd68p5Kq4*_(i3`l8=8Apg(xj!s!1Wp3-h)RY8*T#=ZoGZiWktrC73izo4L_CHQvtjCNd9lqxuP0oikH%{HeiyLs)H8mwQOq?a zWxfyXVDZ}0NmDz@%iF4ifw+1pu(8yQO%^4!y)Sw+>4nrJb?%DN$&jw&Y0TNz8%o%; z1;!W5?up-^dv1HrC0C%h10j{2-UCx~&0dx%U~UmqU#~ke%5`v8^k*u5-4d1(LXI8A zDl|F`yb~&JKcVaC-2I_>$_{XeyI#z6v`QmtBa}jk1c?zivY<58m>^bw5jO~QR=9-* z!*?*j&_#k{CDvA!J zF_s4C&t^$7B z5Yn#j>uhA7H}YvkC3zK^-(uH|o~HGtMwOv@dN4n0K6|PjL75WiY~}fR4!!ETI^0GB za6OTCQYLkn&5cp|5a=L>PvoUJE>_|jI-?;rnC70E5XO`P&5LWcR&>6cnZ-)b-4piF z!thYx;yw}yB_eb@x{-V=1cf-bru*1JQ6#hRQ+thvrS#X=Rj40TfC*|ACdT%|KE<|I zLU{(I92`Vd5S6l%6y`{K9cv^x_8~g(QJh|N<34@Ot5~FSylT#jvyUyHr~C{7ApH zwSA&PJ&)v~FR>l1B^;P@kp=&gn$IMP&g1c5aXtzrGDi?$x7MuulDHF-se<{!#B}{8 zCQ93qOmY+uOQDmnBlpG??T!;GA9#oy@bN>gec#+pF7jt!W^z*fvNLrmEQ;e5MN>WW zuQgN1q(q#+5nHn?Biq45)@~yR>oO-Lk{PwQC+lumWx%*zO-V+@;PRh7G(4EO)|9e3 z7oB;|g-zQycgIEBJ9(E!ixJ_@xEqITemqfgg#0PPUs$P}ELU-2yGcq4fD#OO-KD+A zW2sppgpLiUy8d#7{Bt2MY`>twIcOT!W(%k*{iGq zTe!O5BW63>!geRC?T|DXC57>o=dU5Kb$G(c%!SURlG=8nyd0pFqFA{bF|`yjB+v3g z_6SDWMQv6Y?{#EtH#cs6?{!;T#v@O*cN&|u?VZNq41KK-5-}R4lYn^$Zq-^u2|3iTkeAC#>@}NKQ>=n|9xLv{~YrW8)ulF~{4! z3RfdCgQqM#RPN3UQ+!kvd$NBzEp4I12P@;kNZq!P!je}o$mWRYBdCok*@RYs#xg^q z=qeIG_ua92=2QJ!^T34`BzYjSW9>#KkLxmxg7nR)*?MJ#bAW>y3D^5fO+hX0T9WWW z;49zRN^~n5#RG52$)-ZDRoJqStEN<=um|w1bgrZe8I|OSVHo@P+x(xg9vq)e)koaz zt_yQMjq_f%jFE3?bD0oCCgdv~v9ho#$&-dt(yu`Z!j+`gz*4CHr8?<+a2P|Pe@hk? z&DN~wk^L{T^&~yv z6>NUh|9cnqeHGjfd=$I>@t_4{=ieLL3&_s@FYqQX1AYm-2fO|{unGJJw){VU7lRjp zCxRz{UEpib<@dpUU^Eham;}378=g@iQB#Uj)xzH@OJj$1YdY9T$~Nkrmw%WV>Yp4q zFf_KGO>6q#R=YyggBAdO7MnQTO*F}pTn{HhZFa0xg9RUU(1W_fX&X35JT_!(}r^P@ht(h9c>K>XLBaz()6!RA1ww~LdD92W< zQI8`ns%qkA;=lx_I))}GLOZ>;e`;tjwq=|7x|G2zH8&RUJa;IPZ&;#UTZFk-Z2I`i zOATfG9eUTPq|dfZj83fEyd;xiN48UsNKgl$o`kfXXn`(wXav^qSqchzJADx!k+zyI zYl4nwa(zPz-wW9alse2!K@<_l9mw95AvAvVPj=i1jFoEXIMpeotDGp$@RYi$e5v4E zmJWV%geZdkp^mlnn+8#`t7V;L=8JBmbH8=kqMRDR4dJf`SAl;t^%YoTx2~m;sNvms zN2*I3tpaa{B^hL`I4@m^uBh1mGu51FN6nr2gORC^h-KgKYmqrn?6Ej8+GRtKtA4rc z-OH$ZQ(7rsE*Zj+y2^2-Y4bYz*{mHEwv=f;ZLA=P&+Tm|B_m9m)YM!ywOE;NUVg!4 zv#olAuPQ9H3s`aPHLMQ5e;&|jSM{=qn8RZF|c3o2%>QOFQca>3NsAgD89FeAv?x>d(l6}(^sMSZZHI^7IpI|qqo<{P_Z?qp_qlDHQ+3_B!)X-^V3uHnO1XgNPL~Ub^8qw?_ zkt&I&-c6h^zio8NbmA10(h_FXSzswNpVB9WQ^L-y`-GY+ySHtdomGNC>ETavQn+BN-fHKkvh<|6Ds{>SqxfC zq;XOespE1lDNQ=6pesCN-&s*ut0_6)S#5>Ea+NqDS$AV)v^lI}_Ih*rqJLuP&K{G; zDJ)9g71=2LR>;t}YnPF);(VkG($}{w5Z?t^o^JX31mg6f4Jty#c_$WR*dNUe<8@DP za%f$e%xrg{C!0j*L9mds3%T!FC}yUPGp7v%EeUG+f)D*ogE7om`*Si{O8eM@+GZkw za)h{n%%aXUXHq%x0fUXpDC^JfnrW6faGek#T@DJ8c+G&Iq>4t0A>TBPm;HY)OxouL z`~OI=|9^t5{}xaILtp^h8hjnQ|25#%;A!Buz#i~J?EilQuLX|;cLD#2{r_j+o#18Q zrCk+gTQC;3;aEJDp&&Y6^sL&1Na|&1Iqt@C3q4T1OwoFa31&!eu58! z4}nL4ZQ$p@_in>|0^pCqGr(_yJzz7q1NabrgAamNfR}@-!8zcE(D<|9c|i1*Ut#Tk z+IV1}b=V&x{l#v#R&^I;;p{cuM+V~(K_X+l8u%VG28TTlGebLLtZIp zV06$tsbLK$%hn9xbu5BJrCSHNFvO&V?q+!50g}~{Rk;W%AoQ%gu{cM+v`bfwNFn(Yk^OS=S zZpesjH)EDb6bSE)#u{+Jb4pWf>T+V0XoH>@+!uI8tmtxATZitrkXeK0mU#$-vyF-d z-Q#7ER8349F;6ooHm4m^!=cqMDIHfF-aM0%#*4*&$;{l0cN;pH!tlZpH41A<2b~tf zo@FVXa570xPn_079?Yj)$^?LX@@$zJ|0eks-PEg)F%e`&+d^GiXn5=^mhttDIm`C3 zQf}c3)>GPe7tU-46f##V#XMFRTN4w*W4du`Jyt``&BYQ*#jn(e)357nuKMbR@|r;{y_vP#@gTt^D#{=9A=(GG*x$|4eyv$U3+p|Soc z94{Lp<6!0_l7B5&u4E^z$S#5KlvgHI$=H)ibxaF3-FPnCgsZtRB{Ol(hBi#1b61|u z5ru6nb?jPBjtWF38=haIfdE^!XUTj)=f%x$o?nYq$FwaUv-S~}geLXytkRr@-ks`Q zB$R89(8MA+HeBv-S@lBN?`~DpJDi7>x})I?;5cjMzZ*t?TGm zB$e0$5hA?-@y~XrvLW&xnTfI1=;aADUk~SpZH%!b9IbUSgK0*AsZ3mXfE2ft3L9q+ zVTFN+dtiU71!qcnH}99m+V(7Sh+74nsLC_m=sh0nFZO#egCOhngh5cJuGDvuqO3OK zJXe$3-I09i1uAxlmQ|vcIHBS*L~d^+?T#L&c`+Ts+#U46z90Q=v22sR9SE-mwaaGo zfZ)y0ZfmPWORg>aq)3Otw)hxCnc$zlDb$rTP>2M-Y|cw>@iHg$P3P~axTZQHJ%>vx z71nspGj-Blvm9AG!BfF-PKvd64JJW~UaeE7Zr|)eC8k6o2|^@=HKA#;)Sz%dPneA0 zCarowU)mZB(Y?kZX9|5K(aY#ybAr_=`=UpNzdUU?*PvwsdT`M;P!dITm7qEiJ{Ola zlAPmZc_}RJ2+KfxQ{-D&_O%HL_IYyYUE;$HBU%mV`zPo$(#on+|Do1;j|p{|0*lU{wM6;^BCEp{89`C=~uD!zXEQ@= z2k%cR?RbT>K2$VbUm0;tGwvQHl+y43TS&J)e1uI2!h0vbTYFa2M>~Z^Kn+|(+(g4Y0 zcB5PPyWE`ZOR9ZERXEAMb4CBa@Sv3n7#`qgyLO4(T9F(`OL~}qa3gNE+6rO3U=Qu> zFH*>dXu$^8X`6bVdwLWpYth6cQfl;>25Gt9Xc;m-^?f{jTuNnu>si8(xc)Nn<;Jm~ zGDS>3Q{5^j=6mI#w>P#Ior$ z80;LMj+BfYbI}&T=lGmS>7(2LOx+to7JdjKF_q&)$X}4yThMoH&Ev++MKIU=?p1ur zC7oO;(2dUEj&>EjVTy-qkl61@qO#j;fr3-YtE=H`xLAeq7*Hh9LgQC zh_Lw81BoPVKuNC=B}R|_Z%-(0%Tdd?Vk8if3=6B1oZboRj89{v3Mg&g-72(9s?rB?1Ywz*+i0}3u$Xj=2$BrovAhwcj0i6z_}p!g`!V~uITKrFA_JG6qXG0 zv>xs6bj+RHVHA((i>QhFB^%9ECyhxHmq(~baGHB3X>Y?fFZzIkHzv9gjK-a$5IwUN z5R(-hHrdb`R&V~wMQ#$W$M^yRrb{EEjm#$DUIlC2kZdP)rsEvqLG~}4> z>$WTj{Uw!nj%>Mw2l#mvnI{(5GGA$uYhtDz3>}h6*aCEEn5NE0bz|@M3Joc=ZhfM` zu=kp8%M&s-aJ^UTm`nxQYTq@YZ^V~Rpi5g|OL4$eBq9 zHT#&0E#*?u()q!vpWz0G`7Ozx)!IU>Ee|pl&pE$YX`(tM6*Z{VNCcDu3d;*y)SxQM zHz_JlWBOG;+~5kbFnx$@>daquA%mJoZYhsCLpa!l0Tj4-sa&$EA{hquTflY~ynAZq z)N3eScXsMEB#B|`D5_H7YlsM$W1-lmgqo%$F=L~NdD_bsIkFI4Q06T#=P)hZv^5iM zL|fOI2?JVt&2ZyJrD}WZe5KyDXacWqWYL7@C5y)QB%)ha_V16|lGKMYAVg6RGm?hn zS(o4|xZAh`Gj+Vj<5il%e0TPUk#(X#Tff!9kD>ptLGYGsxPg4c`C?=IVnlOM5sV1k zu0ur{d&8QB*IBv{gN7uF@{jNE&8@LB`7^?}JPQTAtY2q(ifCr()?|8FX+y_*OgiR` z8_`LfjcX!x1eELu&yEX41q!9O+XVm9ELm?jw|gJbxAUUHNlp}U=TP{F8tZxxyL4fp zcju1ne0=An4=F4yky^%TVUsHKUc%RDWk+m7?<^pe{S6viK^leaOdZXTq8qD*30WaK z6iL3iqD4qf1)|b+NzW=KrkxAICPcMUIkNvTV|$(-?EmRtqy8nf{$GHXgFgTVK>^$! zd6~^UcmKW9~c5Z#_oS5xE`DU$HBwF z5%BXs^#D~X;CI0xa5cCTTmrs_FW{x%=|Fh_7lK{j9^mfaBlrX!1Ga!K;0yQ^_yqWU z@ED-`0aP1M_X9itd=j6)lY#OBM!{{sC-4cVZou{6QD7BZ06vdT;4R=JH~}6BqW3TrIPY(`Hayn{!@<{S1ont}-VIv}7ES95{koGnDER4l7awUyB(Q~^G zCKZ(3B9x+8`Y%1A)=fOPpKuo4ODUOB5#45Gw85B9^kOxuwaUb$9>{d7#5_uLL6JCg zRD$%(MhwrRDy~-$@W6}vHl#$!6t)8?nvd9pV27UBKJ-i$_vsW^$a75MBpcczX(LZe zF{_)SK|d>OCH&OH?Zbf%%V*pd)tbsug}h{${o$jO#_|ZAO`sT_>~hsR=Jb91c0Np! zDDFH}9tx);GF!J`$zl(}Htd?wIfYvvCTD)t{Z!eXTBWeuNybB^RA`f)jXQ(1iMyK} z$|IjMxw1Nv%P$M?JPJFzBnP;8yf&@}M)GKJo4&bJ;fi1^7Bl(mCUh1Ird?PJe5}Ix z1Hb0YrGe&C%Lz|iA6d9kPwiGW(T}zk>}EbZY)3E>E&aobFV+-nv@G?EG0~9zJVNPZ z6#G@?#s;75in*Rl?JXp8!9lz=`NZd`tD9(Sd?Tt}S2mVp%hAHbvr8Md0w`WRH^Fdv z6_TSKy=0G>NE{>ZLL8xDgP$vhmPXBTbk!9&6hzHOeJQfBu5rYHm8eYmOy*y@ORR5S*4J|zfq4B?lis|A^YV-aYwlK& zDs5SLe94zZ@KR+6g!dFld`8zrs%J=bp>@&lW=w}-bU`bM`}o?LhRAo?R49EY{g<-P z+DkvI!ENMRGznyAz-lD8ieV^iLQ53uaCfaOVN4Cl2IXTaU}Hsq2+Yf|+r&F>UJv)J z&{Voq61_za=vXLm+w>I}*&)*zb6@@MXf7#5&al$rZneF`dwqM3Q@4lmuGECx2ybu5 z1hv*R)#2Cxw{D-P9ILFr1SLy5&|lm3R%S>&wW&TjtKwSnMx!XD3y(T6xSesFSNXj+Ge zoNg(*uTNrbh-4vr@6X&jIev(o6Olk$r;B#abMU;1pogd=iEBHVb9li`?+0no+&$K6 zo2eZpvgOlo~f1Lr?0ltb&{}muxe-c~_E&@6Sa8K~p*z~KQ0VcuSz+J(Q zvG0EbUJD)$eolX5&wm!Y06ZT&4m=iY2RC5X{}Ff{I0`NS_XYO>KZO`S0e=L36ITZ@zZ}Tce=DefMQ{)BA#D670M!h%e}2Z+ zn9S$h-2GUI(P%L9Egy|yDTOK=rd{CXtip4H3bF)^+luN0K~id|n)GsCW4>>>+@zMD zR4P+^X2~s}kc4~L)4CF7bhq2J{RfNVY!=g;4qW#>f%((V!}n8d?##;QwT#=~oQ+S- zktD{_&SYM25646Ij*nkCO_i7Zll`M3!&5~Pb2q#+Lo*xG6=4??1!S-ZWtHv{4`Rrz=@z1U%vFgkPyYJv2WlzF>} zNvS5fC#SJB#-90BDks+`6 zB7uLAqFso@r<`VDlV)PqC9-gt{BPv+$1dM2;)9wh?V`hX_6?@*s5Z+fnKg}cgyfwd zD)hxvOh}MqUfF<1K*F>MBWC|535Rx>m2y)TqMe4H=2RU*g9~B{^#sDVNeUr?5!ROwt>GOVdq*c_Zz)k$YMN9NPa zaUwHNI@IMv%lY3C8|uQ%A~F;R$tSGY9 zDPj;)B2QRlJRK4ZC3~qFMBZwc=X#w|AjV;0`WR{GrS`q{F%*}~jUy)E-Mt&K;Pou@ zn`-h!KS(1>48qc&=>W;JE8!{Ao}OkbAeGRrfYPxL93gDftx$_7*lv1A%5y1wI~h(| zOw>T)gLO_8Uw^AfjLA=^v%Ga=b!>X-;9kO8>DuA94Mje>&XF2ULMrao5v5|4&OT_i zL=8$i1gXykDaTmT@|@jH;hYRBpeUbvbZbPJp zO^^;rBvCtqLQa}GIZ*OLNa(Yt(6?(NT3T1~sE?f<^}b!=z!u?@z z4!>D1`O~2+!AzMlHI}UtHp_g!ojqtOp(Z3`X+({jm&uGxQfuaF$XR*jtOSWq9QQVR z?vO1Q|D6USozrRVLh2-3#dkgC5BH~Wy~v((PVTOI9X+)Af0*xfCSCUb(O{N-3Y-6J z;H}_!;JIJ~+!?%|FT4-P{_h130-wdse;4>O@DlK1FbQr2K99}+=iqVRv7iKWAK)*7 zKgaH00q21`1D*fZy#Q|l&j!B-t^ogqo&P5A3@`>pL5%n74!}2pGMEGR2A{#se>?b7 z5Pbk6{C->TXW02V2k<0tIoJap01Dv$ws$T-mR?o8A3-9iTUWiM@=)|1219zBe&jVg zTH0`?yJx18?&+rc%s^nY>-2LD)7_^z-94F33Q4>r0v9oAiO&$rXsLjT&rT{`=i+U zcY{@ME4T_g13ZSU|0uX0oB_wd)!>=nacuq1f&0KTkp2H}*!o`vp9YVBp8~VsX+ZJ* z-vz$|6z^9(fG)KFCXSCzo*-9WX|MA$TsOoqzaEc#jvu!R0cU2%F-*zxpOaDAA?{@| zXf4E*%5^Cw1&Z7w50qfD5Wwe#+9J?z{;+b#OdQ)Czv=ltE1CISgPdDHa`N9zE}KQP zAefa7gU~d__spsR-vV4H(<_Dhl-w#Wqa<8+a%g4HV#sP@1HlRo4pBO^v`B$0l2ZaD zA>y$lZh8~OeyWJ86>To&I*BM5;&mCDmW3L_RBjK)ykT3T3WG`lG&Ypu;KNnj^&$r= zv}6KTgAT%=)PIdwbn(&*7Rc{5`fO57Ld1h~#ZUqzdd+w5ji;)h4)wIx2v*=svpHd&MtIKI`8 z@Gr09XrGP@aqx{Y47ZM-tjtwzOp&#evW+w`RPtJC za9N05vmsV$?dS}ek}krw66P}0C19RaX(p9mVNqNw3kn*oP|M#nbLR(3hqtvttW!dH zqtbo2vf+?Y{ErRVFNvtZP{z8^5p5kxJ&!z>R8zC1+Pbb>AyR+?g`sS%c3TiR;(WOK zLQI4`sjRMcnh9a;Sha6k9Z=2aojKQMNK{eHaws0GJ~u?!j@K16+)|AslpBd!d)AgX z`Sz$W7=|izq5K+>vLSoW+*ft%1sOBQ!5Nzd4@XjGf-1gji{^(fuQ+59J)}9wKj~*= zJlVZOLGIZLZTjn#(>pRzFv56o`?RTfrG|%FglI6V`nD-3za2tZKc9pc8x4xn?iN$& zf!%B>d)hyezv2RC()V1q%8TQMo!!;!re$HQ*zdFERpi(hnWjlqd$L_YswNX{2lel(3yii62K`~s4d<2*hgPP!Hs{~BZks8NVJnL zg#AptM`(o0D543xPM(<6ClsTdKWu0`aWVeAIJjPkRQE~pW%$+EUpjf|GVd~p_4CN< z`F4Mw`3sm?#s9Ct=6^FbsOp(P=zRa9 z*z)&*bKpjB19&cY4p6PXbKn5@8*KRp!EXVb^ z*{B7><*!Q6+R+wt4%z;G|A&NKs6C30?OOLx>P^?$jhZ$7T=c9kll8UI3r&3G&PTNo zDuHHoMP|w;wF+&b7*gT(4$1)HUU4kZ+mzZAIQUNSh7w=1eM#Qesz>En3#yVu3{rPu^ui2JuS1iP z|HAbytc>Vbvs0X=jN>y(W}P}&Z00ENUYxz@s%P$;;?T3SM!bSLA&?FSOp>TAh1JgC zS|zPeB+6DG4HkYvKeyaIw6+or9v`5>!@e-|d}>7oqXBo~`E^X|+~FLKD`Z)TmRNyK zre((nZGb9TD8Zx8OfDHK*DXF~571XRl$}w7TL9>U^}v3&Fu?KY8ckdB3cXWwA)lWvbS_r^g))Fl1n+{?@spZoCH#V! zkj`r1G%ZO~a*SIQZl?)z4+Uu`P0xriP^b;KU!=T&y+RG|55)niOG{!Aqpa$_#muZU zQdy4XoS~$RhncJlVEZfVMX};wHgh2i2w`a_y@j94%>_Qs$`giIPWKg+xneDvB5TQV zTrshjCy{{PQy(>$K*;v=o7@qd#vCf9tJ)x+edYDmH0YRwg_r5F=G5$)yLDn_{>X{r zqcvQMI7sjvYB6Vf5K|<2bPrE=bv5yg!YiretU1`zc+bM0^0yaPL)Z+74Hug5Yioe8 zC+do<74G6bbW<+_;fNmUgb%X#dOHPjE@dj^u(Ws&*4A~s7{-B9^}#FBn6^anaU!M7^ZA0oMfZf|HGJ_#q)gAp|BP=;#8JG3FQnpyN3EDd#k3bI(3q5Srw!suN%mrsNkRN-n5J={~rWD0ZxI}fSbYhfG4o~e*x&;z?Xm*gYN*} z4j#njzYC0j3ivE`|7XAl!JmR|H2{;)9-W??tR9}8t=g_hBKgd*$YJfPJ1U~KTP3Gq zofC_b)w#KO|8BP8d);}DRZou3k4Z1Rpxt)PLujlbz9&9p|B`dqy2mP5bk)~8H#SjK zlKfnJFgUBE4n?(=1>i;!Vv=jSyo9am>Ik)T@cu@`=YECZCo zKF0j>jnHbc`1kYgq-$TG0L>jH2`-$!E^!lg5bM;5{7XrY#|N!tRO`aBlLB54D7$xE z%-7@H>wD9v?b`L5`q>c9HP+*O!^4#u_$YSHd^W=>&LUCE0Bi=08)`_E6R$og)GA~+cTZ3Z) zb=)Ei$@r4#5=#|UYe+$f%SUr(UslYCe3-&qk}{ma;MNGVO8maOakfDbj!>h^iyg=+ zv?3o{x`0-+X0S0Fl2SkQ#{OVAhmFZhJzhrUi;Y0_)X-rWQxsxb1)FAOy)m9y&YgVi zB>{91r&w0OMw&B!M2cu-s{=hnhhjw)Ycv}Bj6qf+;!EmTSP{#^@rDk@Hoj)%p(HUtyJ$~^+mIR8Y2d2M6p|Y%QhIG77wT&!8@a#l z_GNVa(U}trpF#rCc|w{Iq@cZ&y~ISuN{C4t-bHs?cRFh#B|@1w^u4tPr%&bOR6Q|U zfHcJ~cxm)y)fXcSsQK@-S0w+MEI1Xde9T;#2ourtRGc zDCN5)o@X4W{zW>sYz_D4k?f;VJz6acC`=#idOBmSI_NE!>1+5*u~y`$^1Z_cc3MRy zv&WGN6V)zZ5_eGYD$AUtpp5d&8&*j_ST|Z4cbgx6Jx;F>%~?dc;$8BL z7UG_-SuMo9s}cSg7j|;f0++rKRiX1Szl`WV>r!2!6&Cyw?Bes)s59X8pj%OR#nyKc zjh-rRgo#$_ZFEJVAZ82Es9I1OJjAkCkPW@ykvK)6nX#}q-OVsHH;Q+-gQlio?Li=o zbbV`)eZ%=V4pnoVO@JPY{J!@rK=8Ky)%afCs|%V2n#)%7`l7{bxUX<|aOcdBcY5f6 z<-q2%K+!}9FJ8o0F3kb$g|ilIMJ*YfPii|g?9u|h7Uu~fs+KVRhb@l!uozyqv&@Zn zD%9BGrc+HA(;X$IUWOo1QcqMLPSNdXUL*}Z3en8Gc#^fei3o1#G7w)}T9@&bRzK7s zZ9t`|{PiJ?-AWfCZCw)3d=sUDZqa$3-?c(9R{DVEln%o!2EH*QmTa!9bR3)x!q>_j z-Oja$PJ&95bhITE(8?$4#g_ZQnQ4Se5eh0sal@Y!Cvo-0n9s~18iX(P zdlw^!K^M{~O+uS(7c8PMDmJUjd4f5f|NmiZRK@>a6YT%rz~=ux@M7?-;34e%Pk|4B z_XC~#uY&Ick7M(H4*W0hVekXsC7>UCBltMB|Hr_4focJq0nY;uV*9@#_yInNt$z=A z3s645v%t52f5z7TBKS?9`v13q5%9I(>EN^2{mTE>T>wYHzhLV>0sa!`-2cx2o%>h4 zzd`T`?Ekj{<^HdL0niV=0en69V|)N_0&fH_0{?*B|309+|JQ;Bm;#evA9z2u{~v-) z@IvrU*#7?;{5-f1{1@;8;Ke|>|DT4=?*{JzZv&$HTY>*G^L=8pO3B=b@mXE!Ysqif zDuZJrkS>pH5w_aXT$ZC8>|NUq5~$VlIUd(&yifmHB;PN!tSRc zfQTR)2)lZ?Bb%)?+}7l6L{&nvBi@iMQI(35l+W1*!DNk=j@xUiB@7!}(5k*_^Q0}E ziJ(QVV}exQ4H~1~XvL!|t7}axffQ1Z#Ing{Kj0Xh*%MJZ<+IS!491Js(6)?bK9e2u zC~rX2vA^OodFk``?{5~v3|zzEOElIzEf0UCDLp4qTmxYxvR*9-ifMi}=2_D%T%!1Ae<{8O!V3d}Lk> zuNkSxDwVz1Vv3VfP>bJ}H(1zq#FD=FGI4Z z7A1!5ZiTxhIi{xKqLLA~bnG2v<3bj7Y)aojGw`0{pTzTd=(=n8h_AclZ4J;~;l(2H z3^O{(Ag|}`eof;K^G{p07wP=ia&o(x#lc^-u{Lo{QvOXwlv%#G0xTXwKZs&ue!0u4 z>%_y6?hCg|2;tW{{0wG4ZtyQ9rzSB{@cMDf$IK!H+ULQF2Ez$`45Ai z0=Ix;;EUM&?*}b#5PSpp7`FajfjfYs41jM2-vs^?yZ=tm1j-FK0czkG;P=yV{b&tbLJV*&$rAL_pJl^;Gtw&NJFD@HKgcN^;ODK zaIwKz>KV=~NOpucqw=-16`Jtm@fbE{9rD^>GT0g-Nvdc^tsbXnsfo=I_UflL$cGNp zMGHD)fj(^&w$;lS6P9}zT%2vR49;odTsFdXp@<|;x53f2XL-96F`-Iwqu9hZSSA5m z-q}m3(b84wiYqOirkVn086pV_KC=za+hZ@UuPI}kP^)4z9;M{lFqAS3srf?@9s;lw zJ`szOP@vLyjH1aYgTgTqg??ELgdQ%#XfSKuwI5?B^vW!_P~jHF4MKvhZ&?pxP@0a$ zsG6CH#(mM9y=ZMzqYe(C*x58 z?c}h@7fY3u$-#9wYt)ZqG*ZgNcD7h~r}>X4t+b=NxM-}%jnnUhpf}6W51KNWFN3e;@&_64Hi3Cr6Aw6qun^6?QVYYqfbq+&j&@FfgbggRgTdgM zwac3#XThR`RvU%tPbED}LPa4CsA1=uf(9UZTQ`Fkl!6_?Yk`akeq^yY3)k9Ao#Lw+ zAPpPaO;n2)caw^tmw8&Cuc@Y8xnPTZAJMO(l|s8Vrt8*y0z?2b5+h6kheH@@@O3HQ)>RHBYKxlIy(rZ){!mK zYaFbvgj)j5FF7&Jf;ACmDIoezxTZrgRU6%KrNqURjnP@DWRRC*N z&Yj*yyh2hg@zBiR?InroYlW*IyYu-NF~pUzw|~a9NET8Pm$kj=f;& z*zrwFr-%}{*X+&Q2yb_X@FI7s^5h2f%@ok4i{oSf;mJ@r0dx`Vp^Pg;Kf;!wWD2%y zJM>v!v}@EvhsL^9oU|9CYT*02qlt8li+4#9C8>KUbHqUS) zn5+23!iMNi!EA-8^d%kSRkkH+ZjuczEq2W;G*liITB?3%w2*X2<*SMZlQY*G+o>%@ zFqECB8ktQJc21)VYsJtC_alXm^$>juW`M$_s$CRQahOxRvz=g~I}DvKf{yU3bXniXya~J%{44hSC&Ax>KLURUHo^13N3iej z2D;bpERenbnWu9{A^0T_@AVtu=YPP)zZXn_ec*BI{m+3v2Oj~V=^Mb4{Yy^Kxnt9_ z_~J<|o{N6bVg}m`o45o+#hKGhPL6P-9?v;WiQ24=;LT1?snT0g2uuqo!rTKB6|O`# z$&)9Q#ZyZ$xl5aHrro5A!#2^J-Od&R%5#Alq}YUhjTfczQS@<1yxWsX%ah2ACvf0X z83F8}{JC{|LrFDcE4hA6dwE-k#MrNV6Xg4qnDAHDQ{11R_gVt6o!>OILQgIa$#($X~bBeTN;t0_`?l_0uvI+vwm5Uv2%`m2$~n0S38iNk<>o* zs7JR6kqj*NFY<$S13SW}{>`bQn_^+8YAz}-Dz{>+3bW|_F*R8i&&i5a*l1f<$=Y8v zz5$hUqPZGRXDnkg-K}@$VHY180wSR2sc^+KAw( z_Ztne1``iy#WIi(%<`Sno(rofQO^{d@L{%+abGg$LAs?vR$(`5A5Z6Q78$`J;##wj$U2}#_Bayo*!b*3ZJb(d<5P$8cyBkNcxq5Qo@k1^nzd9v69*6``A(wC zOdPVlyuKhe2w9HEuNEiYm4fT;{P4FyUB?M)>}a>&QUEmlVpKvdhMNv)FN6t@PqF1f zBt;f2I|PginLU3eYoZ~x^h^5!VY`#0gS>59jVTJ~>16v&zOs6os#n&kRHqo5pBo<) zuN4N@-XvwPi>x8ZT#>6ZfoU&88CoVDqWX+6f1VsB0=l-qAZ%QH((== z)>OY8uh!-d&rbNAHLkREFLPNve0X;Jba zl|FA7(&&~SM2>Vsi!0#9BIFIf;`UZ|iY-uyeA$NUel8=axH3+Z$ZfBvZw)kj#THW9 zzQZ_0Wi^gxcV~@(c)5>oq9ktmw-a1A4fnBqlU_z=b4Tac zM|6>{)}RSz2AYmLXn1tZ`i{yVBg5XM&$W0IRBP@iOTe$L8T3jXF1CGj(M$c6?ym5C z4jIs1@*JfAn)LVA?bNp#1F~_~xDt#hcit=!vc9m;S|)s=!_a0}>U?&IH-pT!)s(E9 zZp$f%?GAbbxdc6=i*ehyPG!sEz{E(sqW{SZH2%+yW=JxQ^Bq5V%$f%h) zNm7Str?s3>Og6coQh+O_R>u87{E=36_B~n&>$gOU4uMn_7rDH5F|e<*(?-wUcEGY2 z%@1GSf?JutasYfzR%_F8%vE@E%feE!u1%N~O9qBmks_`UN5SoW4y2bD3O3ERNKxEm zLP3hov7CnT;|H8Nypta|h-E+2 zc5qhl2``zFlxpfN{jg~3c53eH#~HR$y}9oQg)%Xn-oz)$>(O;QG;Q2Ra zci2Ap9u3}#TS_hXe+Sq=`us;1g<*WmkDZ6uqUp){Hmj4bOd>0HyhY6jXNxvCMWeq= zkZ@!_+)`&S_VW0Xy&?Xx*E?u#oL!_vSfbfqu`yNp!Wikn5#2MO(H$Yew#a{vF5?;D zy+^qY7E&JD*;v(W(>B0S&TG(vfm#besV%j>hNrL9ME2_|qjxN;g|R^Mu^qHfGUt5W zD}AJ&hz;i?bs40K6UyfKOoa{~U-l02cXq0X!S1CZKG8)dc(kHvi|r{Xjkd)dW=hKh_2OlI(u) z4sb8H3n&lZdhif-|GU9G;77m~kbmGB@ELpnzXsk7R4?!za2PxbTn*$O_(<>zyo~?; zU+n)!z{B7};DcZn90Z@n5AX}`~dF*_XE`icq8~hpxOYB;uBDPzzv|< z|E~atz)e840b=d{J^TZz^Q#LW*?h-JVNH2+lG+q%oQ91B*Fi&$Sx+0l#k>vAX)&7& zLoQ9v)JXb!wRu$KRjtj2`|1&J>@M2zFz{MZKUA?!3eOgj%aq~J91{~833BF^>dC5Y zUNO(Rn`CkAnhkT!6QH&h(X_+HWw+I)lE&Oxy1l4Qvv>QBNj%Tdd$36@N(1I!baYpWD35JPlo7eZJ|yo=QBM$nuV652fwR9g&NW+y?J zn0d78UUciY(L{wP)i4P(EQsZoe!ID9lH6%4N2V!Dv4u1bZaHh?k|I{e2q1%n;}RE5 zHk;5@i&^9sy|*+va$+I{^2s0O*$bISqoFxilxl;3g`#16B0OAN<=$xo zbUugtJW{zyN?Tj`fa^QT2VDOm`4(2{m}8z~HC(w#q7-%)$70#|v@(lWu(A=^G8U)- ziM?Qjl0-;LG+SxaSLG-*rl~=W)H5y3cAgD^og#syXiZi77Lv@s%{e|(rPR%Mv@=3g z)?S2NWJb-7Oywb4SVJbw)O$uKCx|CjLQkuE0rRsFaQ0Q(iCqQeGPCT3ax=IzQ!*B8IZ(WWm^H7n}Hd;y*>8UntxwmEkD=#~K%pT|?b+VB2 z(pnxU%vZ5R7)z-a9YfG!kb9$i+&(lNd{rh635A@PtWB8fZFFX4eqt^-Q+kC- zD|i`r9DDwkz^lR4K(_p^0oDDx2mA=Q8C(Od2G0b4k3Ii5_(f0yPY3UPIvFHbalgt;!cx z(2k-z!E%WTkfrKq!RU4D?%~V&F@E1SkJy0i(1n6g5KOKS8(gR|CIe!sp&QwnD=O>H zJc%}#(lV#jTo2|xKnxQ>j z-k`u6Iz7WLu0(@b4IDa%i@3gV1|bX`WJxbJRSid!Bc*(KXsfX~#D3Ol z9*DMl*~>tCb77;)iPfRQb$43PdZ=!-Pb%r?{=I-E{oEdSw_v8r*S^Lt&QBoV!L!&AosRom2 zuFQv}c~FGNRzrP}D!wp~xIhW4#Kjc9>D$^~8XoqL*n!HOueU0=@Qkb3x@JsbB4;{_ zW#omlXt2oh!Of>&G>gN_=*s4`!*8YT^{KpV=lj2#rt-S&UiGr z3T10kS17W8$`aa3q^p?n#u-@_G-n4geAN|qZX-cmeAz3uJI;h`Z)f-)nh)yq_hSsNs~dx-Yr{NEai z?;SGViAQnGAB5b1`kG1TEiPyqR`dm$%heCHoA8NBtFImVV*3OI9dZ1dP?&KG|$7lL`` zRG5G?duvZJc94t&AIMf^w9;3&0OZqDu!nFWd(kkS+>VJt$mWeN%|nkWPm1=hxbb{RZ3=C{FDkwPv{KaET#BqHt zDt&&v=87k}XDvmwK*pIJ#`3U?50Tt$Qa5O#w4jHjWcF8N+4}!`s*YwN=JnDTtH&Kg z;hlU0TaCo`X5H1RIOO1U4+fn6H!oH1^OUkKgjtH#*j!5O|zq5700O`nU>pB@<&5)Qf3J^cPIw z&wF;g#1gu${+tFPDXI^A@zAS|Af`Ccc825Ad#6YE)_JLMSz~$z6xG`Hc&c?JS9zW! zD640)!6gh0Xm7K=ywn7_9$>jUQ_OK98S2ihch^pmP8Vpbo~t82AGA z{{7%2_z&QJV)O5U?**s8%fZdy32gpf2ls-zfNK9OfI9dl@Dcj(zSx&bG@P$|{R#!H zP~Zv$u2A3#1+Gxw3I(oE;NL3++!qoJNzY!5@gGHT0?4L-2*OiEe{!7$5T!`AUz zM$PDtKCM&sZ1T@w)?gygL=8isxU+N|*WLtKWm3qC$eLCC2yWp%b%qGA4(@t(cppwS z^C=P`8b3~<0@7V-(_^^zVtU$nqOyCAu8GUA*U{LN#{lWe24`I*`2+BA-r z+UPO!y!7Hz$A?5wChR-++{Sa#_;)DqNNCC&)G1xX99MEaZs|Hj^H6H~J!TXR-FZuc zcEgcPge<}CJ&YkH3u|x?BqcYRInFdMHI@`uVNShPOml&J5ZvQ#rWOz2O9_YS&6}h* z>Q)=sn&pw`leW=dlQMccJeC~SD%@N;^rXf_4ZNqiVOvogeUA_fwlax__(&`}7h4|B zz5SgY+qhcGmc!ddVHymP@9v}tQ7?H8HmoqCO++Nv3JJ!T-tw|)fW+PQ?VBSisfxjK zqti3vb^_I1Z>jEc;Rq_$uba}w%JfLSvSAM*hWC?cxh5a0`9y=4(VWc2{^b5zMGzx& zeQlFkVRi$Pa#TCpVk~-`2#0EYs}`nWlXeKE=<}RBB8n~YvatN{k#D&l#(KdFdk^H` z_8$283v+}rzsd2fxv}Ikok`psD6*dI2@V$7?Z5h3`byiWNQ*m!*O>^@jAm2UNph{= R(g?aXVTY!oZ)xAY{|`H!2>1X1 literal 0 HcmV?d00001 diff --git a/arduino/test/docs/Doxyfile b/arduino/test/docs/Doxyfile new file mode 100644 index 0000000..aa55681 --- /dev/null +++ b/arduino/test/docs/Doxyfile @@ -0,0 +1,2331 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "FastLED" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 3.1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = YES + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = . lib8tion + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = M0-clocklessnotes.md TODO.md + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html/docs/3.1 + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /

  • *z%=G` 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

    %bzq1Cb9xum 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 R(g?aXVTY!oZ)xAY{|`H!2>1X1 literal 0 HcmV?d00001 diff --git a/arduino/test/libraries/FastLED-3.1.0/docs/Doxyfile b/arduino/test/libraries/FastLED-3.1.0/docs/Doxyfile new file mode 100644 index 0000000..aa55681 --- /dev/null +++ b/arduino/test/libraries/FastLED-3.1.0/docs/Doxyfile @@ -0,0 +1,2331 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "FastLED" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 3.1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = YES + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = . lib8tion + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = M0-clocklessnotes.md TODO.md + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html/docs/3.1 + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /

  • *z%=G` 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

    B7U<*XB$%^HlNp(UCEkv< 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

    ~AW! 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 YB;AhAbg*SG?HTrV3_C|_`$&iX14IGxMgRZ+ literal 0 HcmV?d00001 diff --git a/arduino/test/libraries/wiring.cpp b/arduino/test/libraries/wiring.cpp new file mode 100644 index 0000000..b2af51c --- /dev/null +++ b/arduino/test/libraries/wiring.cpp @@ -0,0 +1,238 @@ +#define FASTLED_INTERNAL +#include "FastLED.h" + +FASTLED_USING_NAMESPACE + +#if 0 + +#if defined(FASTLED_AVR) && !defined(TEENSYDUINO) && !defined(LIB8_ATTINY) +extern "C" { +// the prescaler is set so that timer0 ticks every 64 clock cycles, and the +// the overflow handler is called every 256 ticks. +#define MICROSECONDS_PER_TIMER0_OVERFLOW (clockCyclesToMicroseconds(64 * 256)) + +typedef union { unsigned long _long; uint8_t raw[4]; } tBytesForLong; +// tBytesForLong FastLED_timer0_overflow_count; +volatile unsigned long FastLED_timer0_overflow_count=0; +volatile unsigned long FastLED_timer0_millis = 0; + +LIB8STATIC void __attribute__((always_inline)) fastinc32 (volatile uint32_t & _long) { + uint8_t b = ++((tBytesForLong&)_long).raw[0]; + if(!b) { + b = ++((tBytesForLong&)_long).raw[1]; + if(!b) { + b = ++((tBytesForLong&)_long).raw[2]; + if(!b) { + ++((tBytesForLong&)_long).raw[3]; + } + } + } +} + +#if defined(__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) +ISR(TIM0_OVF_vect) +#else +ISR(TIMER0_OVF_vect) +#endif +{ + fastinc32(FastLED_timer0_overflow_count); + // FastLED_timer0_overflow_count++; +} + +// there are 1024 microseconds per overflow counter tick. +unsigned long millis() +{ + unsigned long m; + uint8_t oldSREG = SREG; + + // disable interrupts while we read FastLED_timer0_millis or we might get an + // inconsistent value (e.g. in the middle of a write to FastLED_timer0_millis) + cli(); + m = FastLED_timer0_overflow_count; //._long; + SREG = oldSREG; + + return (m*(MICROSECONDS_PER_TIMER0_OVERFLOW/8))/(1000/8); +} + +unsigned long micros() { + unsigned long m; + uint8_t oldSREG = SREG, t; + + cli(); + m = FastLED_timer0_overflow_count; // ._long; +#if defined(TCNT0) + t = TCNT0; +#elif defined(TCNT0L) + t = TCNT0L; +#else + #error TIMER 0 not defined +#endif + + +#ifdef TIFR0 + if ((TIFR0 & _BV(TOV0)) && (t < 255)) + m++; +#else + if ((TIFR & _BV(TOV0)) && (t < 255)) + m++; +#endif + + SREG = oldSREG; + + return ((m << 8) + t) * (64 / clockCyclesPerMicrosecond()); +} + +void delay(unsigned long ms) +{ + uint16_t start = (uint16_t)micros(); + + while (ms > 0) { + if (((uint16_t)micros() - start) >= 1000) { + ms--; + start += 1000; + } + } +} + +#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) +void init() +{ + // this needs to be called before setup() or some functions won't + // work there + sei(); + + // on the ATmega168, timer 0 is also used for fast hardware pwm + // (using phase-correct PWM would mean that timer 0 overflowed half as often + // resulting in different millis() behavior on the ATmega8 and ATmega168) +#if defined(TCCR0A) && defined(WGM01) + sbi(TCCR0A, WGM01); + sbi(TCCR0A, WGM00); +#endif + + // set timer 0 prescale factor to 64 +#if defined(__AVR_ATmega128__) + // CPU specific: different values for the ATmega128 + sbi(TCCR0, CS02); +#elif defined(TCCR0) && defined(CS01) && defined(CS00) + // this combination is for the standard atmega8 + sbi(TCCR0, CS01); + sbi(TCCR0, CS00); +#elif defined(TCCR0B) && defined(CS01) && defined(CS00) + // this combination is for the standard 168/328/1280/2560 + sbi(TCCR0B, CS01); + sbi(TCCR0B, CS00); +#elif defined(TCCR0A) && defined(CS01) && defined(CS00) + // this combination is for the __AVR_ATmega645__ series + sbi(TCCR0A, CS01); + sbi(TCCR0A, CS00); +#else + #error Timer 0 prescale factor 64 not set correctly +#endif + + // enable timer 0 overflow interrupt +#if defined(TIMSK) && defined(TOIE0) + sbi(TIMSK, TOIE0); +#elif defined(TIMSK0) && defined(TOIE0) + sbi(TIMSK0, TOIE0); +#else + #error Timer 0 overflow interrupt not set correctly +#endif + + // timers 1 and 2 are used for phase-correct hardware pwm + // this is better for motors as it ensures an even waveform + // note, however, that fast pwm mode can achieve a frequency of up + // 8 MHz (with a 16 MHz clock) at 50% duty cycle + +#if defined(TCCR1B) && defined(CS11) && defined(CS10) + TCCR1B = 0; + + // set timer 1 prescale factor to 64 + sbi(TCCR1B, CS11); +#if F_CPU >= 8000000L + sbi(TCCR1B, CS10); +#endif +#elif defined(TCCR1) && defined(CS11) && defined(CS10) + sbi(TCCR1, CS11); +#if F_CPU >= 8000000L + sbi(TCCR1, CS10); +#endif +#endif + // put timer 1 in 8-bit phase correct pwm mode +#if defined(TCCR1A) && defined(WGM10) + sbi(TCCR1A, WGM10); +#elif defined(TCCR1) + #warning this needs to be finished +#endif + + // set timer 2 prescale factor to 64 +#if defined(TCCR2) && defined(CS22) + sbi(TCCR2, CS22); +#elif defined(TCCR2B) && defined(CS22) + sbi(TCCR2B, CS22); +#else + #warning Timer 2 not finished (may not be present on this CPU) +#endif + + // configure timer 2 for phase correct pwm (8-bit) +#if defined(TCCR2) && defined(WGM20) + sbi(TCCR2, WGM20); +#elif defined(TCCR2A) && defined(WGM20) + sbi(TCCR2A, WGM20); +#else + #warning Timer 2 not finished (may not be present on this CPU) +#endif + +#if defined(TCCR3B) && defined(CS31) && defined(WGM30) + sbi(TCCR3B, CS31); // set timer 3 prescale factor to 64 + sbi(TCCR3B, CS30); + sbi(TCCR3A, WGM30); // put timer 3 in 8-bit phase correct pwm mode +#endif + +#if defined(TCCR4A) && defined(TCCR4B) && defined(TCCR4D) /* beginning of timer4 block for 32U4 and similar */ + sbi(TCCR4B, CS42); // set timer4 prescale factor to 64 + sbi(TCCR4B, CS41); + sbi(TCCR4B, CS40); + sbi(TCCR4D, WGM40); // put timer 4 in phase- and frequency-correct PWM mode + sbi(TCCR4A, PWM4A); // enable PWM mode for comparator OCR4A + sbi(TCCR4C, PWM4D); // enable PWM mode for comparator OCR4D +#else /* beginning of timer4 block for ATMEGA1280 and ATMEGA2560 */ +#if defined(TCCR4B) && defined(CS41) && defined(WGM40) + sbi(TCCR4B, CS41); // set timer 4 prescale factor to 64 + sbi(TCCR4B, CS40); + sbi(TCCR4A, WGM40); // put timer 4 in 8-bit phase correct pwm mode +#endif +#endif /* end timer4 block for ATMEGA1280/2560 and similar */ + +#if defined(TCCR5B) && defined(CS51) && defined(WGM50) + sbi(TCCR5B, CS51); // set timer 5 prescale factor to 64 + sbi(TCCR5B, CS50); + sbi(TCCR5A, WGM50); // put timer 5 in 8-bit phase correct pwm mode +#endif + +#if defined(ADCSRA) + // set a2d prescale factor to 128 + // 16 MHz / 128 = 125 KHz, inside the desired 50-200 KHz range. + // XXX: this will not work properly for other clock speeds, and + // this code should use F_CPU to determine the prescale factor. + sbi(ADCSRA, ADPS2); + sbi(ADCSRA, ADPS1); + sbi(ADCSRA, ADPS0); + + // enable a2d conversions + sbi(ADCSRA, ADEN); +#endif + + // the bootloader connects pins 0 and 1 to the USART; disconnect them + // here so they can be used as normal digital i/o; they will be + // reconnected in Serial.begin() +#if defined(UCSRB) + UCSRB = 0; +#elif defined(UCSR0B) + UCSR0B = 0; +#endif +} +}; +#endif + +#endif + diff --git a/arduino/test/library.properties b/arduino/test/library.properties new file mode 100644 index 0000000..f5093f3 --- /dev/null +++ b/arduino/test/library.properties @@ -0,0 +1,9 @@ +name=FastLED +version=3.1.0 +author=Daniel Garcia +maintainer=Daniel Garcia +sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions. +paragraph=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions. +category=Display +url=https://github.com/FastLED/FastLED +architectures=* diff --git a/arduino/test/noise.cpp b/arduino/test/noise.cpp new file mode 100644 index 0000000..190e74e --- /dev/null +++ b/arduino/test/noise.cpp @@ -0,0 +1,744 @@ +#define FASTLED_INTERNAL +#include "FastLED.h" + +FASTLED_NAMESPACE_BEGIN + +#define P(x) FL_PGM_READ_BYTE_NEAR(p + x) + +FL_PROGMEM static uint8_t const p[] = { 151,160,137,91,90,15, + 131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,8,99,37,240,21,10,23, + 190, 6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,35,11,32,57,177,33, + 88,237,149,56,87,174,20,125,136,171,168, 68,175,74,165,71,134,139,48,27,166, + 77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,55,46,245,40,244, + 102,143,54, 65,25,63,161, 1,216,80,73,209,76,132,187,208, 89,18,169,200,196, + 135,130,116,188,159,86,164,100,109,198,173,186, 3,64,52,217,226,250,124,123, + 5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,189,28,42, + 223,183,170,213,119,248,152, 2,44,154,163, 70,221,153,101,155,167, 43,172,9, + 129,22,39,253, 19,98,108,110,79,113,224,232,178,185, 112,104,218,246,97,228, + 251,34,242,193,238,210,144,12,191,179,162,241, 81,51,145,235,249,14,239,107, + 49,192,214, 31,181,199,106,157,184, 84,204,176,115,121,50,45,127, 4,150,254, + 138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180,151 + }; + +// +// #define FADE_12 +#define FADE_16 + +#ifdef FADE_12 +#define FADE logfade12 +#define LERP(a,b,u) lerp15by12(a,b,u) +#else +#define FADE(x) scale16(x,x) +#define LERP(a,b,u) lerp15by16(a,b,u) +#endif +static int16_t inline __attribute__((always_inline)) grad16(uint8_t hash, int16_t x, int16_t y, int16_t z) { +#if 0 + switch(hash & 0xF) { + case 0: return (( x) + ( y))>>1; + case 1: return ((-x) + ( y))>>1; + case 2: return (( x) + (-y))>>1; + case 3: return ((-x) + (-y))>>1; + case 4: return (( x) + ( z))>>1; + case 5: return ((-x) + ( z))>>1; + case 6: return (( x) + (-z))>>1; + case 7: return ((-x) + (-z))>>1; + case 8: return (( y) + ( z))>>1; + case 9: return ((-y) + ( z))>>1; + case 10: return (( y) + (-z))>>1; + case 11: return ((-y) + (-z))>>1; + case 12: return (( y) + ( x))>>1; + case 13: return ((-y) + ( z))>>1; + case 14: return (( y) + (-x))>>1; + case 15: return ((-y) + (-z))>>1; + } +#else + hash = hash&15; + int16_t u = hash<8?x:y; + int16_t v = hash<4?y:hash==12||hash==14?x:z; + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return (u+v)>>1; +#endif +} + +static int16_t inline __attribute__((always_inline)) grad16(uint8_t hash, int16_t x, int16_t y) { + hash = hash & 7; + int16_t u,v; + if(hash < 4) { u = x; v = y; } else { u = y; v = x; } + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return (u+v)>>1; +} + +static int16_t inline __attribute__((always_inline)) grad16(uint8_t hash, int16_t x) { + hash = hash & 15; + int16_t u,v; + if(hash > 8) { u=x;v=x; } + else if(hash < 4) { u=x;v=1; } + else { u=1;v=x; } + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return (u+v)>>1; +} + +// selectBasedOnHashBit performs this: +// result = (hash & (1<>1; + case 1: return ((-x) + ( y))>>1; + case 2: return (( x) + (-y))>>1; + case 3: return ((-x) + (-y))>>1; + case 4: return (( x) + ( z))>>1; + case 5: return ((-x) + ( z))>>1; + case 6: return (( x) + (-z))>>1; + case 7: return ((-x) + (-z))>>1; + case 8: return (( y) + ( z))>>1; + case 9: return ((-y) + ( z))>>1; + case 10: return (( y) + (-z))>>1; + case 11: return ((-y) + (-z))>>1; + case 12: return (( y) + ( x))>>1; + case 13: return ((-y) + ( z))>>1; + case 14: return (( y) + (-x))>>1; + case 15: return ((-y) + (-z))>>1; + } +#else + + hash &= 0xF; + + int8_t u, v; + //u = (hash&8)?y:x; + u = selectBasedOnHashBit( hash, 3, y, x); + +#if 1 + v = hash<4?y:hash==12||hash==14?x:z; +#else + // Verbose version for analysis; generates idenitical code. + if( hash < 4) { // 00 01 02 03 + v = y; + } else { + if( hash==12 || hash==14) { // 0C 0E + v = x; + } else { + v = z; // 04 05 06 07 08 09 0A 0B 0D 0F + } + } +#endif + + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return avg7(u,v); +#endif +} + +static int8_t inline __attribute__((always_inline)) grad8(uint8_t hash, int8_t x, int8_t y) +{ + // since the tests below can be done bit-wise on the bottom + // three bits, there's no need to mask off the higher bits + // hash = hash & 7; + + int8_t u,v; + if( hash & 4) { + u = y; v = x; + } else { + u = x; v = y; + } + + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return avg7(u,v); +} + +static int8_t inline __attribute__((always_inline)) grad8(uint8_t hash, int8_t x) +{ + // since the tests below can be done bit-wise on the bottom + // four bits, there's no need to mask off the higher bits + // hash = hash & 15; + + int8_t u,v; + if(hash & 8) { + u=x; v=x; + } else { + if(hash & 4) { + u=1; v=x; + } else { + u=x; v=1; + } + } + + if(hash&1) { u = -u; } + if(hash&2) { v = -v; } + + return avg7(u,v); +} + + +#ifdef FADE_12 +uint16_t logfade12(uint16_t val) { + return scale16(val,val)>>4; +} + +static int16_t inline __attribute__((always_inline)) lerp15by12( int16_t a, int16_t b, fract16 frac) +{ + //if(1) return (lerp(frac,a,b)); + int16_t result; + if( b > a) { + uint16_t delta = b - a; + uint16_t scaled = scale16(delta,frac<<4); + result = a + scaled; + } else { + uint16_t delta = a - b; + uint16_t scaled = scale16(delta,frac<<4); + result = a - scaled; + } + return result; +} +#endif + +static int8_t inline __attribute__((always_inline)) lerp7by8( int8_t a, int8_t b, fract8 frac) +{ + // int8_t delta = b - a; + // int16_t prod = (uint16_t)delta * (uint16_t)frac; + // int8_t scaled = prod >> 8; + // int8_t result = a + scaled; + // return result; + int8_t result; + if( b > a) { + uint8_t delta = b - a; + uint8_t scaled = scale8( delta, frac); + result = a + scaled; + } else { + uint8_t delta = a - b; + uint8_t scaled = scale8( delta, frac); + result = a - scaled; + } + return result; +} + +int16_t inoise16_raw(uint32_t x, uint32_t y, uint32_t z) +{ + // Find the unit cube containing the point + uint8_t X = (x>>16)&0xFF; + uint8_t Y = (y>>16)&0xFF; + uint8_t Z = (z>>16)&0xFF; + + // Hash cube corner coordinates + uint8_t A = P(X)+Y; + uint8_t AA = P(A)+Z; + uint8_t AB = P(A+1)+Z; + uint8_t B = P(X+1)+Y; + uint8_t BA = P(B) + Z; + uint8_t BB = P(B+1)+Z; + + // Get the relative position of the point in the cube + uint16_t u = x & 0xFFFF; + uint16_t v = y & 0xFFFF; + uint16_t w = z & 0xFFFF; + + // Get a signed version of the above for the grad function + int16_t xx = (u >> 1) & 0x7FFF; + int16_t yy = (v >> 1) & 0x7FFF; + int16_t zz = (w >> 1) & 0x7FFF; + uint16_t N = 0x8000L; + + u = FADE(u); v = FADE(v); w = FADE(w); + + + // skip the log fade adjustment for the moment, otherwise here we would + // adjust fade values for u,v,w + int16_t X1 = LERP(grad16(P(AA), xx, yy, zz), grad16(P(BA), xx - N, yy, zz), u); + int16_t X2 = LERP(grad16(P(AB), xx, yy-N, zz), grad16(P(BB), xx - N, yy - N, zz), u); + int16_t X3 = LERP(grad16(P(AA+1), xx, yy, zz-N), grad16(P(BA+1), xx - N, yy, zz-N), u); + int16_t X4 = LERP(grad16(P(AB+1), xx, yy-N, zz-N), grad16(P(BB+1), xx - N, yy - N, zz - N), u); + + int16_t Y1 = LERP(X1,X2,v); + int16_t Y2 = LERP(X3,X4,v); + + int16_t ans = LERP(Y1,Y2,w); + + return ans; +} + +uint16_t inoise16(uint32_t x, uint32_t y, uint32_t z) { + int32_t ans = inoise16_raw(x,y,z); + ans = ans + 19052L; + uint32_t pan = ans; + return (pan*220L)>>7; + // // return scale16by8(pan,220)<<1; + // return ((inoise16_raw(x,y,z)+19052)*220)>>7; + // return scale16by8(inoise16_raw(x,y,z)+19052,220)<<1; +} + +int16_t inoise16_raw(uint32_t x, uint32_t y) +{ + // Find the unit cube containing the point + uint8_t X = x>>16; + uint8_t Y = y>>16; + + // Hash cube corner coordinates + uint8_t A = P(X)+Y; + uint8_t AA = P(A); + uint8_t AB = P(A+1); + uint8_t B = P(X+1)+Y; + uint8_t BA = P(B); + uint8_t BB = P(B+1); + + // Get the relative position of the point in the cube + uint16_t u = x & 0xFFFF; + uint16_t v = y & 0xFFFF; + + // Get a signed version of the above for the grad function + int16_t xx = (u >> 1) & 0x7FFF; + int16_t yy = (v >> 1) & 0x7FFF; + uint16_t N = 0x8000L; + + u = FADE(u); v = FADE(v); + + int16_t X1 = LERP(grad16(P(AA), xx, yy), grad16(P(BA), xx - N, yy), u); + int16_t X2 = LERP(grad16(P(AB), xx, yy-N), grad16(P(BB), xx - N, yy - N), u); + + int16_t ans = LERP(X1,X2,v); + + return ans; +} + +uint16_t inoise16(uint32_t x, uint32_t y) { + int32_t ans = inoise16_raw(x,y); + ans = ans + 17308L; + uint32_t pan = ans; + return (pan*242L)>>7; + // return (uint32_t)(((int32_t)inoise16_raw(x,y)+(uint32_t)17308)*242)>>7; + // return scale16by8(inoise16_raw(x,y)+17308,242)<<1; +} + +int16_t inoise16_raw(uint32_t x) +{ + // Find the unit cube containing the point + uint8_t X = x>>16; + + // Hash cube corner coordinates + uint8_t A = P(X); + uint8_t AA = P(A); + uint8_t B = P(X+1); + uint8_t BA = P(B); + + // Get the relative position of the point in the cube + uint16_t u = x & 0xFFFF; + + // Get a signed version of the above for the grad function + int16_t xx = (u >> 1) & 0x7FFF; + uint16_t N = 0x8000L; + + u = FADE(u); + + int16_t ans = LERP(grad16(P(AA), xx), grad16(P(BA), xx - N), u); + + return ans; +} + +uint16_t inoise16(uint32_t x) { + return ((uint32_t)((int32_t)inoise16_raw(x) + 17308L)) << 1; +} + +int8_t inoise8_raw(uint16_t x, uint16_t y, uint16_t z) +{ + // Find the unit cube containing the point + uint8_t X = x>>8; + uint8_t Y = y>>8; + uint8_t Z = z>>8; + + // Hash cube corner coordinates + uint8_t A = P(X)+Y; + uint8_t AA = P(A)+Z; + uint8_t AB = P(A+1)+Z; + uint8_t B = P(X+1)+Y; + uint8_t BA = P(B) + Z; + uint8_t BB = P(B+1)+Z; + + // Get the relative position of the point in the cube + uint8_t u = x; + uint8_t v = y; + uint8_t w = z; + + // Get a signed version of the above for the grad function + int8_t xx = ((uint8_t)(x)>>1) & 0x7F; + int8_t yy = ((uint8_t)(y)>>1) & 0x7F; + int8_t zz = ((uint8_t)(z)>>1) & 0x7F; + uint8_t N = 0x80; + + // u = FADE(u); v = FADE(v); w = FADE(w); + u = scale8_LEAVING_R1_DIRTY(u,u); v = scale8_LEAVING_R1_DIRTY(v,v); w = scale8(w,w); + + int8_t X1 = lerp7by8(grad8(P(AA), xx, yy, zz), grad8(P(BA), xx - N, yy, zz), u); + int8_t X2 = lerp7by8(grad8(P(AB), xx, yy-N, zz), grad8(P(BB), xx - N, yy - N, zz), u); + int8_t X3 = lerp7by8(grad8(P(AA+1), xx, yy, zz-N), grad8(P(BA+1), xx - N, yy, zz-N), u); + int8_t X4 = lerp7by8(grad8(P(AB+1), xx, yy-N, zz-N), grad8(P(BB+1), xx - N, yy - N, zz - N), u); + + int8_t Y1 = lerp7by8(X1,X2,v); + int8_t Y2 = lerp7by8(X3,X4,v); + + int8_t ans = lerp7by8(Y1,Y2,w); + + return ans; +} + +uint8_t inoise8(uint16_t x, uint16_t y, uint16_t z) { + return scale8(76+(inoise8_raw(x,y,z)),215)<<1; +} + +int8_t inoise8_raw(uint16_t x, uint16_t y) +{ + // Find the unit cube containing the point + uint8_t X = x>>8; + uint8_t Y = y>>8; + + // Hash cube corner coordinates + uint8_t A = P(X)+Y; + uint8_t AA = P(A); + uint8_t AB = P(A+1); + uint8_t B = P(X+1)+Y; + uint8_t BA = P(B); + uint8_t BB = P(B+1); + + // Get the relative position of the point in the cube + uint8_t u = x; + uint8_t v = y; + + // Get a signed version of the above for the grad function + int8_t xx = ((uint8_t)(x)>>1) & 0x7F; + int8_t yy = ((uint8_t)(y)>>1) & 0x7F; + uint8_t N = 0x80; + + // u = FADE(u); v = FADE(v); w = FADE(w); + u = scale8_LEAVING_R1_DIRTY(u,u); v = scale8(v,v); + + int8_t X1 = lerp7by8(grad8(P(AA), xx, yy), grad8(P(BA), xx - N, yy), u); + int8_t X2 = lerp7by8(grad8(P(AB), xx, yy-N), grad8(P(BB), xx - N, yy - N), u); + + int8_t ans = lerp7by8(X1,X2,v); + + return ans; + // return scale8((70+(ans)),234)<<1; +} + +uint8_t inoise8(uint16_t x, uint16_t y) { + return scale8(69+inoise8_raw(x,y),237)<<1; +} + +int8_t inoise8_raw(uint16_t x) +{ + // Find the unit cube containing the point + uint8_t X = x>>8; + + // Hash cube corner coordinates + uint8_t A = P(X); + uint8_t AA = P(A); + uint8_t B = P(X+1); + uint8_t BA = P(B); + + // Get the relative position of the point in the cube + uint8_t u = x; + + // Get a signed version of the above for the grad function + int8_t xx = ((uint8_t)(x)>>1) & 0x7F; + uint8_t N = 0x80; + + u = scale8(u,u); + + int8_t ans = lerp7by8(grad8(P(AA), xx), grad8(P(BA), xx - N), u); + + return ans; + // return scale8((70+(ans)),234)<<1; +} + +uint8_t inoise8(uint16_t x) { + return scale8(69+inoise8_raw(x), 255)<<1; +} + +// struct q44 { +// uint8_t i:4; +// uint8_t f:4; +// q44(uint8_t _i, uint8_t _f) {i=_i; f=_f; } +// }; + +// uint32_t mul44(uint32_t v, q44 mulby44) { +// return (v *mulby44.i) + ((v * mulby44.f) >> 4); +// } +// +// uint16_t mul44_16(uint16_t v, q44 mulby44) { +// return (v *mulby44.i) + ((v * mulby44.f) >> 4); +// } + +void fill_raw_noise8(uint8_t *pData, uint8_t num_points, uint8_t octaves, uint16_t x, int scale, uint16_t time) { + uint32_t _xx = x; + uint32_t scx = scale; + for(int o = 0; o < octaves; o++) { + for(int i = 0,xx=_xx; i < num_points; i++, xx+=scx) { + pData[i] = qadd8(pData[i],inoise8(xx,time)>>o); + } + + _xx <<= 1; + scx <<= 1; + } +} + +void fill_raw_noise16into8(uint8_t *pData, uint8_t num_points, uint8_t octaves, uint32_t x, int scale, uint32_t time) { + uint32_t _xx = x; + uint32_t scx = scale; + for(int o = 0; o < octaves; o++) { + for(int i = 0,xx=_xx; i < num_points; i++, xx+=scx) { + uint32_t accum = (inoise16(xx,time))>>o; + accum += (pData[i]<<8); + if(accum > 65535) { accum = 65535; } + pData[i] = accum>>8; + } + + _xx <<= 1; + scx <<= 1; + } +} + +void fill_raw_2dnoise8(uint8_t *pData, int width, int height, uint8_t octaves, q44 freq44, fract8 amplitude, int skip, uint16_t x, int scalex, uint16_t y, int scaley, uint16_t time) { + if(octaves > 1) { + fill_raw_2dnoise8(pData, width, height, octaves-1, freq44, amplitude, skip+1, x*freq44, freq44 * scalex, y*freq44, freq44 * scaley, time); + } else { + // amplitude is always 255 on the lowest level + amplitude=255; + } + + scalex *= skip; + scaley *= skip; + + fract8 invamp = 255-amplitude; + uint16_t xx = x; + for(int i = 0; i < height; i++, y+=scaley) { + uint8_t *pRow = pData + (i*width); + xx = x; + for(int j = 0; j < width; j++, xx+=scalex) { + uint8_t noise_base = inoise8(xx,y,time); + noise_base = (0x80 & noise_base) ? (noise_base - 127) : (127 - noise_base); + noise_base = scale8(noise_base<<1,amplitude); + if(skip == 1) { + pRow[j] = scale8(pRow[j],invamp) + noise_base; + } else { + for(int ii = i; ii<(i+skip) && ii 1) { + fill_raw_2dnoise16(pData, width, height, octaves-1, freq88, amplitude, skip, x *freq88 , scalex *freq88, y * freq88, scaley * freq88, time); + } else { + // amplitude is always 255 on the lowest level + amplitude=65535; + } + + scalex *= skip; + scaley *= skip; + fract16 invamp = 65535-amplitude; + for(int i = 0; i < height; i+=skip, y+=scaley) { + uint16_t *pRow = pData + (i*width); + for(int j = 0,xx=x; j < width; j+=skip, xx+=scalex) { + uint16_t noise_base = inoise16(xx,y,time); + noise_base = (0x8000 & noise_base) ? noise_base - (32767) : 32767 - noise_base; + noise_base = scale16(noise_base<<1, amplitude); + if(skip==1) { + pRow[j] = scale16(pRow[j],invamp) + noise_base; + } else { + for(int ii = i; ii<(i+skip) && ii 1) { + fill_raw_2dnoise16into8(pData, width, height, octaves-1, freq44, amplitude, skip+1, x*freq44, scalex *freq44, y*freq44, scaley * freq44, time); + } else { + // amplitude is always 255 on the lowest level + amplitude=255; + } + + scalex *= skip; + scaley *= skip; + uint32_t xx; + fract8 invamp = 255-amplitude; + for(int i = 0; i < height; i+=skip, y+=scaley) { + uint8_t *pRow = pData + (i*width); + xx = x; + for(int j = 0; j < width; j+=skip, xx+=scalex) { + uint16_t noise_base = inoise16(xx,y,time); + noise_base = (0x8000 & noise_base) ? noise_base - (32767) : 32767 - noise_base; + noise_base = scale8(noise_base>>7,amplitude); + if(skip==1) { + pRow[j] = qadd8(scale8(pRow[j],invamp),noise_base); + } else { + for(int ii = i; ii<(i+skip) && ii>= 1; leds[wb+pos] += (led>>=1); + } else { + leds[wb+pos] = led; + } + } + } +} + +void fill_2dnoise16(CRGB *leds, int width, int height, bool serpentine, + uint8_t octaves, uint32_t x, int xscale, uint32_t y, int yscale, uint32_t time, + uint8_t hue_octaves, uint16_t hue_x, int hue_xscale, uint16_t hue_y, uint16_t hue_yscale,uint16_t hue_time, bool blend, uint16_t hue_shift) { + uint8_t V[height][width]; + uint8_t H[height][width]; + + memset(V,0,height*width); + memset(H,0,height*width); + + fill_raw_2dnoise16into8((uint8_t*)V,width,height,octaves,q44(2,0),171,1,x,xscale,y,yscale,time); + // fill_raw_2dnoise16into8((uint8_t*)V,width,height,octaves,x,xscale,y,yscale,time); + // fill_raw_2dnoise8((uint8_t*)V,width,height,hue_octaves,x,xscale,y,yscale,time); + fill_raw_2dnoise8((uint8_t*)H,width,height,hue_octaves,hue_x,hue_xscale,hue_y,hue_yscale,hue_time); + + + int w1 = width-1; + int h1 = height-1; + hue_shift >>= 8; + + for(int i = 0; i < height; i++) { + int wb = i*width; + for(int j = 0; j < width; j++) { + CRGB led(CHSV(hue_shift + (H[h1-i][w1-j]),196,V[i][j])); + + int pos = j; + if(serpentine && (i & 0x1)) { + pos = w1-j; + } + + if(blend) { + leds[wb+pos] >>= 1; leds[wb+pos] += (led>>=1); + } else { + leds[wb+pos] = led; + } + } + } +} + +FASTLED_NAMESPACE_END diff --git a/arduino/test/noise.h b/arduino/test/noise.h new file mode 100644 index 0000000..b968815 --- /dev/null +++ b/arduino/test/noise.h @@ -0,0 +1,95 @@ +#ifndef __INC_NOISE_H +#define __INC_NOISE_H + +FASTLED_NAMESPACE_BEGIN + +///@file noise.h +/// Noise functions provided by the library. + +///@defgroup Noise Noise functions +///Simplex noise function definitions +///@{ +/// @name scaled 16 bit noise functions +///@{ +/// 16 bit, fixed point implementation of perlin's Simplex Noise. Coordinates are +/// 16.16 fixed point values, 32 bit integers with integral coordinates in the high 16 +/// bits and fractional in the low 16 bits, and the function takes 1d, 2d, and 3d coordinate +/// values. These functions are scaled to return 0-65535 + +extern uint16_t inoise16(uint32_t x, uint32_t y, uint32_t z); +extern uint16_t inoise16(uint32_t x, uint32_t y); +extern uint16_t inoise16(uint32_t x); +///@} + +/// @name raw 16 bit noise functions +//@{ +/// 16 bit raw versions of the noise functions. These values are not scaled/altered and have +/// output values roughly in the range (-18k,18k) +extern int16_t inoise16_raw(uint32_t x, uint32_t y, uint32_t z); +extern int16_t inoise16_raw(uint32_t x, uint32_t y); +extern int16_t inoise16_raw(uint32_t x); +///@} + +/// @name 8 bit scaled noise functions +///@{ +/// 8 bit, fixed point implementation of perlin's Simplex Noise. Coordinates are +/// 8.8 fixed point values, 16 bit integers with integral coordinates in the high 8 +/// bits and fractional in the low 8 bits, and the function takes 1d, 2d, and 3d coordinate +/// values. These functions are scaled to return 0-255 +extern uint8_t inoise8(uint16_t x, uint16_t y, uint16_t z); +extern uint8_t inoise8(uint16_t x, uint16_t y); +extern uint8_t inoise8(uint16_t x); +///@} + +/// @name 8 bit raw noise functions +///@{ +/// 8 bit raw versions of the noise functions. These values are not scaled/altered and have +/// output values roughly in the range (-70,70) +extern int8_t inoise8_raw(uint16_t x, uint16_t y, uint16_t z); +extern int8_t inoise8_raw(uint16_t x, uint16_t y); +extern int8_t inoise8_raw(uint16_t x); +///@} + +///@name raw fill functions +///@{ +/// Raw noise fill functions - fill into a 1d or 2d array of 8-bit values using either 8-bit noise or 16-bit noise +/// functions. +///@param pData the array of data to write into +///@param num_points the number of points of noise to compute +///@param octaves the number of octaves to use for noise +///@param x the x position in the noise field +///@param y the y position in the noise field for 2d functions +///@param scalex the scale (distance) between x points when filling in noise +///@param scaley the scale (distance) between y points when filling in noise +///@param time the time position for the noise field +void fill_raw_noise8(uint8_t *pData, uint8_t num_points, uint8_t octaves, uint16_t x, int scalex, uint16_t time); +void fill_raw_noise16into8(uint8_t *pData, uint8_t num_points, uint8_t octaves, uint32_t x, int scalex, uint32_t time); +void fill_raw_2dnoise8(uint8_t *pData, int width, int height, uint8_t octaves, uint16_t x, int scalex, uint16_t y, int scaley, uint16_t time); +void fill_raw_2dnoise16into8(uint8_t *pData, int width, int height, uint8_t octaves, uint32_t x, int scalex, uint32_t y, int scaley, uint32_t time); + +void fill_raw_2dnoise16(uint16_t *pData, int width, int height, uint8_t octaves, q88 freq88, fract16 amplitude, int skip, uint32_t x, int scalex, uint32_t y, int scaley, uint32_t time); +void fill_raw_2dnoise16into8(uint8_t *pData, int width, int height, uint8_t octaves, q44 freq44, fract8 amplitude, int skip, uint32_t x, int scalex, uint32_t y, int scaley, uint32_t time); +///@} + +///@name fill functions +///@{ +/// fill functions to fill leds with values based on noise functions. These functions use the fill_raw_* functions as appropriate. +void fill_noise8(CRGB *leds, int num_leds, + uint8_t octaves, uint16_t x, int scale, + uint8_t hue_octaves, uint16_t hue_x, int hue_scale, + uint16_t time); +void fill_noise16(CRGB *leds, int num_leds, + uint8_t octaves, uint16_t x, int scale, + uint8_t hue_octaves, uint16_t hue_x, int hue_scale, + uint16_t time); +void fill_2dnoise8(CRGB *leds, int width, int height, bool serpentine, + uint8_t octaves, uint16_t x, int xscale, uint16_t y, int yscale, uint16_t time, + uint8_t hue_octaves, uint16_t hue_x, int hue_xscale, uint16_t hue_y, uint16_t hue_yscale,uint16_t hue_time,bool blend); +void fill_2dnoise16(CRGB *leds, int width, int height, bool serpentine, + uint8_t octaves, uint32_t x, int xscale, uint32_t y, int yscale, uint32_t time, + uint8_t hue_octaves, uint16_t hue_x, int hue_xscale, uint16_t hue_y, uint16_t hue_yscale,uint16_t hue_time, bool blend, uint16_t hue_shift=0); + +FASTLED_NAMESPACE_END +///@} + +#endif diff --git a/arduino/test/pixeltypes.h b/arduino/test/pixeltypes.h new file mode 100644 index 0000000..2ad2c78 --- /dev/null +++ b/arduino/test/pixeltypes.h @@ -0,0 +1,846 @@ +#ifndef __INC_PIXELS_H +#define __INC_PIXELS_H + +#include +#include "lib8tion.h" +#include "color.h" + +FASTLED_NAMESPACE_BEGIN + +struct CRGB; +struct CHSV; + +///@defgroup Pixeltypes CHSV and CRGB type definitions +///@{ + +/// Forward declaration of hsv2rgb_rainbow here, +/// to avoid circular dependencies. +extern void hsv2rgb_rainbow( const CHSV& hsv, CRGB& rgb); + +/// Representation of an HSV pixel (hue, saturation, value (aka brightness)). +struct CHSV { + union { + struct { + union { + uint8_t hue; + uint8_t h; }; + union { + uint8_t saturation; + uint8_t sat; + uint8_t s; }; + union { + uint8_t value; + uint8_t val; + uint8_t v; }; + }; + uint8_t raw[3]; + }; + + // default values are UNITIALIZED + inline CHSV() __attribute__((always_inline)) + { + } + + // allow construction from H, S, V + inline CHSV( uint8_t ih, uint8_t is, uint8_t iv) __attribute__((always_inline)) + : h(ih), s(is), v(iv) + { + } + + // allow copy construction + inline CHSV(const CHSV& rhs) __attribute__((always_inline)) + { + h = rhs.h; + s = rhs.s; + v = rhs.v; + } + + inline CHSV& operator= (const CHSV& rhs) __attribute__((always_inline)) + { + h = rhs.h; + s = rhs.s; + v = rhs.v; + return *this; + } + + inline CHSV& setHSV(uint8_t ih, uint8_t is, uint8_t iv) __attribute__((always_inline)) + { + h = ih; + s = is; + v = iv; + return *this; + } +}; + +/// Pre-defined hue values for HSV objects +typedef enum { + HUE_RED = 0, + HUE_ORANGE = 32, + HUE_YELLOW = 64, + HUE_GREEN = 96, + HUE_AQUA = 128, + HUE_BLUE = 160, + HUE_PURPLE = 192, + HUE_PINK = 224 +} HSVHue; + +/// Representation of an RGB pixel (Red, Green, Blue) +struct CRGB { + union { + struct { + union { + uint8_t r; + uint8_t red; + }; + union { + uint8_t g; + uint8_t green; + }; + union { + uint8_t b; + uint8_t blue; + }; + }; + uint8_t raw[3]; + }; + + inline uint8_t& operator[] (uint8_t x) __attribute__((always_inline)) + { + return raw[x]; + } + + inline const uint8_t& operator[] (uint8_t x) const __attribute__((always_inline)) + { + return raw[x]; + } + + // default values are UNINITIALIZED + inline CRGB() __attribute__((always_inline)) + { + } + + // allow construction from R, G, B + inline CRGB( uint8_t ir, uint8_t ig, uint8_t ib) __attribute__((always_inline)) + : r(ir), g(ig), b(ib) + { + } + + // allow construction from 32-bit (really 24-bit) bit 0xRRGGBB color code + inline CRGB( uint32_t colorcode) __attribute__((always_inline)) + : r((colorcode >> 16) & 0xFF), g((colorcode >> 8) & 0xFF), b((colorcode >> 0) & 0xFF) + { + } + + inline CRGB( LEDColorCorrection colorcode) __attribute__((always_inline)) + : r((colorcode >> 16) & 0xFF), g((colorcode >> 8) & 0xFF), b((colorcode >> 0) & 0xFF) + { + + } + + inline CRGB( ColorTemperature colorcode) __attribute__((always_inline)) + : r((colorcode >> 16) & 0xFF), g((colorcode >> 8) & 0xFF), b((colorcode >> 0) & 0xFF) + { + + } + + // allow copy construction + inline CRGB(const CRGB& rhs) __attribute__((always_inline)) + { + r = rhs.r; + g = rhs.g; + b = rhs.b; + } + + // allow construction from HSV color + inline CRGB(const CHSV& rhs) __attribute__((always_inline)) + { + hsv2rgb_rainbow( rhs, *this); + } + + // allow assignment from one RGB struct to another + inline CRGB& operator= (const CRGB& rhs) __attribute__((always_inline)) + { + r = rhs.r; + g = rhs.g; + b = rhs.b; + return *this; + } + + // allow assignment from 32-bit (really 24-bit) 0xRRGGBB color code + inline CRGB& operator= (const uint32_t colorcode) __attribute__((always_inline)) + { + r = (colorcode >> 16) & 0xFF; + g = (colorcode >> 8) & 0xFF; + b = (colorcode >> 0) & 0xFF; + return *this; + } + + // allow assignment from R, G, and B + inline CRGB& setRGB (uint8_t nr, uint8_t ng, uint8_t nb) __attribute__((always_inline)) + { + r = nr; + g = ng; + b = nb; + return *this; + } + + // allow assignment from H, S, and V + inline CRGB& setHSV (uint8_t hue, uint8_t sat, uint8_t val) __attribute__((always_inline)) + { + hsv2rgb_rainbow( CHSV(hue, sat, val), *this); + return *this; + } + + // allow assignment from just a Hue, saturation and value automatically at max. + inline CRGB& setHue (uint8_t hue) __attribute__((always_inline)) + { + hsv2rgb_rainbow( CHSV(hue, 255, 255), *this); + return *this; + } + + // allow assignment from HSV color + inline CRGB& operator= (const CHSV& rhs) __attribute__((always_inline)) + { + hsv2rgb_rainbow( rhs, *this); + return *this; + } + + // allow assignment from 32-bit (really 24-bit) 0xRRGGBB color code + inline CRGB& setColorCode (uint32_t colorcode) __attribute__((always_inline)) + { + r = (colorcode >> 16) & 0xFF; + g = (colorcode >> 8) & 0xFF; + b = (colorcode >> 0) & 0xFF; + return *this; + } + + + // add one RGB to another, saturating at 0xFF for each channel + inline CRGB& operator+= (const CRGB& rhs ) + { + r = qadd8( r, rhs.r); + g = qadd8( g, rhs.g); + b = qadd8( b, rhs.b); + return *this; + } + + // add a contstant to each channel, saturating at 0xFF + // this is NOT an operator+= overload because the compiler + // can't usefully decide when it's being passed a 32-bit + // constant (e.g. CRGB::Red) and an 8-bit one (CRGB::Blue) + inline CRGB& addToRGB (uint8_t d ) + { + r = qadd8( r, d); + g = qadd8( g, d); + b = qadd8( b, d); + return *this; + } + + // subtract one RGB from another, saturating at 0x00 for each channel + inline CRGB& operator-= (const CRGB& rhs ) + { + r = qsub8( r, rhs.r); + g = qsub8( g, rhs.g); + b = qsub8( b, rhs.b); + return *this; + } + + // subtract a constant from each channel, saturating at 0x00 + // this is NOT an operator+= overload because the compiler + // can't usefully decide when it's being passed a 32-bit + // constant (e.g. CRGB::Red) and an 8-bit one (CRGB::Blue) + inline CRGB& subtractFromRGB(uint8_t d ) + { + r = qsub8( r, d); + g = qsub8( g, d); + b = qsub8( b, d); + return *this; + } + + // subtract a constant of '1' from each channel, saturating at 0x00 + inline CRGB& operator-- () __attribute__((always_inline)) + { + subtractFromRGB(1); + return *this; + } + + // subtract a constant of '1' from each channel, saturating at 0x00 + inline CRGB operator-- (int DUMMY_ARG) __attribute__((always_inline)) + { + CRGB retval(*this); + --(*this); + return retval; + } + + // add a constant of '1' from each channel, saturating at 0xFF + inline CRGB& operator++ () __attribute__((always_inline)) + { + addToRGB(1); + return *this; + } + + // add a constant of '1' from each channel, saturating at 0xFF + inline CRGB operator++ (int DUMMY_ARG) __attribute__((always_inline)) + { + CRGB retval(*this); + ++(*this); + return retval; + } + + // divide each of the channels by a constant + inline CRGB& operator/= (uint8_t d ) + { + r /= d; + g /= d; + b /= d; + return *this; + } + + // right shift each of the channels by a constant + inline CRGB& operator>>= (uint8_t d) + { + r >>= d; + g >>= d; + b >>= d; + return *this; + } + + // multiply each of the channels by a constant, + // saturating each channel at 0xFF + inline CRGB& operator*= (uint8_t d ) + { + r = qmul8( r, d); + g = qmul8( g, d); + b = qmul8( b, d); + return *this; + } + + // scale down a RGB to N 256ths of it's current brightness, using + // 'video' dimming rules, which means that unless the scale factor is ZERO + // each channel is guaranteed NOT to dim down to zero. If it's already + // nonzero, it'll stay nonzero, even if that means the hue shifts a little + // at low brightness levels. + inline CRGB& nscale8_video (uint8_t scaledown ) + { + nscale8x3_video( r, g, b, scaledown); + return *this; + } + + // %= is a synonym for nscale8_video. Think of it is scaling down + // by "a percentage" + inline CRGB& operator%= (uint8_t scaledown ) + { + nscale8x3_video( r, g, b, scaledown); + return *this; + } + + // fadeLightBy is a synonym for nscale8_video( ..., 255-fadefactor) + inline CRGB& fadeLightBy (uint8_t fadefactor ) + { + nscale8x3_video( r, g, b, 255 - fadefactor); + return *this; + } + + // scale down a RGB to N 256ths of it's current brightness, using + // 'plain math' dimming rules, which means that if the low light levels + // may dim all the way to 100% black. + inline CRGB& nscale8 (uint8_t scaledown ) + { + nscale8x3( r, g, b, scaledown); + return *this; + } + + // scale down a RGB to N 256ths of it's current brightness, using + // 'plain math' dimming rules, which means that if the low light levels + // may dim all the way to 100% black. + inline CRGB& nscale8 (const CRGB & scaledown ) + { + r = ::scale8(r, scaledown.r); + g = ::scale8(g, scaledown.g); + b = ::scale8(b, scaledown.b); + return *this; + } + + inline CRGB scale8 (const CRGB & scaledown ) + { + CRGB out; + out.r = ::scale8(r, scaledown.r); + out.g = ::scale8(g, scaledown.g); + out.b = ::scale8(b, scaledown.b); + return out; + } + + // fadeToBlackBy is a synonym for nscale8( ..., 255-fadefactor) + inline CRGB& fadeToBlackBy (uint8_t fadefactor ) + { + nscale8x3( r, g, b, 255 - fadefactor); + return *this; + } + + // "or" operator brings each channel up to the higher of the two values + inline CRGB& operator|= (const CRGB& rhs ) + { + if( rhs.r > r) r = rhs.r; + if( rhs.g > g) g = rhs.g; + if( rhs.b > b) b = rhs.b; + return *this; + } + inline CRGB& operator|= (uint8_t d ) + { + if( d > r) r = d; + if( d > g) g = d; + if( d > b) b = d; + return *this; + } + + // "and" operator brings each channel down to the lower of the two values + inline CRGB& operator&= (const CRGB& rhs ) + { + if( rhs.r < r) r = rhs.r; + if( rhs.g < g) g = rhs.g; + if( rhs.b < b) b = rhs.b; + return *this; + } + inline CRGB& operator&= (uint8_t d ) + { + if( d < r) r = d; + if( d < g) g = d; + if( d < b) b = d; + return *this; + } + + // this allows testing a CRGB for zero-ness + inline operator bool() const __attribute__((always_inline)) + { + return r || g || b; + } + + // invert each channel + inline CRGB operator- () + { + CRGB retval; + retval.r = 255 - r; + retval.g = 255 - g; + retval.b = 255 - b; + return retval; + } + +#if (defined SmartMatrix_h || defined SmartMatrix3_h) + operator rgb24() const { + rgb24 ret; + ret.red = r; + ret.green = g; + ret.blue = b; + return ret; + } +#endif + + inline uint8_t getLuma ( ) const { + //Y' = 0.2126 R' + 0.7152 G' + 0.0722 B' + // 54 183 18 (!) + + uint8_t luma = scale8_LEAVING_R1_DIRTY( r, 54) + \ + scale8_LEAVING_R1_DIRTY( g, 183) + \ + scale8_LEAVING_R1_DIRTY( b, 18); + cleanup_R1(); + return luma; + } + + inline uint8_t getAverageLight( ) const { + const uint8_t eightysix = 86; + uint8_t avg = scale8_LEAVING_R1_DIRTY( r, eightysix) + \ + scale8_LEAVING_R1_DIRTY( g, eightysix) + \ + scale8_LEAVING_R1_DIRTY( b, eightysix); + cleanup_R1(); + return avg; + } + + inline void maximizeBrightness( uint8_t limit = 255 ) { + uint8_t max = red; + if( green > max) max = green; + if( blue > max) max = blue; + uint16_t factor = ((uint16_t)(limit) * 256) / max; + red = (red * factor) / 256; + green = (green * factor) / 256; + blue = (blue * factor) / 256; + } + + inline CRGB lerp8( CRGB & other, fract8 frac) + { + CRGB ret; + + ret.r = lerp8by8(r,other.r,frac); + ret.g = lerp8by8(g,other.g,frac); + ret.b = lerp8by8(b,other.b,frac); + + return ret; + } + + inline CRGB lerp16( CRGB & other, fract16 frac) + { + CRGB ret; + + ret.r = lerp16by16(r<<8,other.r<<8,frac)>>8; + ret.g = lerp16by16(g<<8,other.g<<8,frac)>>8; + ret.b = lerp16by16(b<<8,other.b<<8,frac)>>8; + + return ret; + } + + // getParity returns 0 or 1, depending on the + // lowest bit of the sum of the color components. + inline uint8_t getParity() + { + uint8_t sum = r + g + b; + return (sum & 0x01); + } + + // setParity adjusts the color in the smallest + // way possible so that the parity of the color + // is now the desired value. This allows you to + // 'hide' one bit of information in the color. + // + // Ideally, we find one color channel which already + // has data in it, and modify just that channel by one. + // We don't want to light up a channel that's black + // if we can avoid it, and if the pixel is 'grayscale', + // (meaning that R==G==B), we modify all three channels + // at once, to preserve the neutral hue. + // + // There's no such thing as a free lunch; in many cases + // this 'hidden bit' may actually be visible, but this + // code makes reasonable efforts to hide it as much + // as is reasonably possible. + // + // Also, an effort is made to have make it such that + // repeatedly setting the parity to different values + // will not cause the color to 'drift'. Toggling + // the parity twice should generally result in the + // original color again. + // + inline void setParity( uint8_t parity) + { + uint8_t curparity = getParity(); + + if( parity == curparity) return; + + if( parity ) { + // going 'up' + if( (b > 0) && (b < 255)) { + if( r == g && g == b) { + r++; + g++; + } + b++; + } else if( (r > 0) && (r < 255)) { + r++; + } else if( (g > 0) && (g < 255)) { + g++; + } else { + if( r == g && g == b) { + r ^= 0x01; + g ^= 0x01; + } + b ^= 0x01; + } + } else { + // going 'down' + if( b > 1) { + if( r == g && g == b) { + r--; + g--; + } + b--; + } else if( g > 1) { + g--; + } else if( r > 1) { + r--; + } else { + if( r == g && g == b) { + r ^= 0x01; + g ^= 0x01; + } + b ^= 0x01; + } + } + } + + /// Predefined RGB colors + typedef enum { + AliceBlue=0xF0F8FF, + Amethyst=0x9966CC, + AntiqueWhite=0xFAEBD7, + Aqua=0x00FFFF, + Aquamarine=0x7FFFD4, + Azure=0xF0FFFF, + Beige=0xF5F5DC, + Bisque=0xFFE4C4, + Black=0x000000, + BlanchedAlmond=0xFFEBCD, + Blue=0x0000FF, + BlueViolet=0x8A2BE2, + Brown=0xA52A2A, + BurlyWood=0xDEB887, + CadetBlue=0x5F9EA0, + Chartreuse=0x7FFF00, + Chocolate=0xD2691E, + Coral=0xFF7F50, + CornflowerBlue=0x6495ED, + Cornsilk=0xFFF8DC, + Crimson=0xDC143C, + Cyan=0x00FFFF, + DarkBlue=0x00008B, + DarkCyan=0x008B8B, + DarkGoldenrod=0xB8860B, + DarkGray=0xA9A9A9, + DarkGrey=0xA9A9A9, + DarkGreen=0x006400, + DarkKhaki=0xBDB76B, + DarkMagenta=0x8B008B, + DarkOliveGreen=0x556B2F, + DarkOrange=0xFF8C00, + DarkOrchid=0x9932CC, + DarkRed=0x8B0000, + DarkSalmon=0xE9967A, + DarkSeaGreen=0x8FBC8F, + DarkSlateBlue=0x483D8B, + DarkSlateGray=0x2F4F4F, + DarkSlateGrey=0x2F4F4F, + DarkTurquoise=0x00CED1, + DarkViolet=0x9400D3, + DeepPink=0xFF1493, + DeepSkyBlue=0x00BFFF, + DimGray=0x696969, + DimGrey=0x696969, + DodgerBlue=0x1E90FF, + FireBrick=0xB22222, + FloralWhite=0xFFFAF0, + ForestGreen=0x228B22, + Fuchsia=0xFF00FF, + Gainsboro=0xDCDCDC, + GhostWhite=0xF8F8FF, + Gold=0xFFD700, + Goldenrod=0xDAA520, + Gray=0x808080, + Grey=0x808080, + Green=0x008000, + GreenYellow=0xADFF2F, + Honeydew=0xF0FFF0, + HotPink=0xFF69B4, + IndianRed=0xCD5C5C, + Indigo=0x4B0082, + Ivory=0xFFFFF0, + Khaki=0xF0E68C, + Lavender=0xE6E6FA, + LavenderBlush=0xFFF0F5, + LawnGreen=0x7CFC00, + LemonChiffon=0xFFFACD, + LightBlue=0xADD8E6, + LightCoral=0xF08080, + LightCyan=0xE0FFFF, + LightGoldenrodYellow=0xFAFAD2, + LightGreen=0x90EE90, + LightGrey=0xD3D3D3, + LightPink=0xFFB6C1, + LightSalmon=0xFFA07A, + LightSeaGreen=0x20B2AA, + LightSkyBlue=0x87CEFA, + LightSlateGray=0x778899, + LightSlateGrey=0x778899, + LightSteelBlue=0xB0C4DE, + LightYellow=0xFFFFE0, + Lime=0x00FF00, + LimeGreen=0x32CD32, + Linen=0xFAF0E6, + Magenta=0xFF00FF, + Maroon=0x800000, + MediumAquamarine=0x66CDAA, + MediumBlue=0x0000CD, + MediumOrchid=0xBA55D3, + MediumPurple=0x9370DB, + MediumSeaGreen=0x3CB371, + MediumSlateBlue=0x7B68EE, + MediumSpringGreen=0x00FA9A, + MediumTurquoise=0x48D1CC, + MediumVioletRed=0xC71585, + MidnightBlue=0x191970, + MintCream=0xF5FFFA, + MistyRose=0xFFE4E1, + Moccasin=0xFFE4B5, + NavajoWhite=0xFFDEAD, + Navy=0x000080, + OldLace=0xFDF5E6, + Olive=0x808000, + OliveDrab=0x6B8E23, + Orange=0xFFA500, + OrangeRed=0xFF4500, + Orchid=0xDA70D6, + PaleGoldenrod=0xEEE8AA, + PaleGreen=0x98FB98, + PaleTurquoise=0xAFEEEE, + PaleVioletRed=0xDB7093, + PapayaWhip=0xFFEFD5, + PeachPuff=0xFFDAB9, + Peru=0xCD853F, + Pink=0xFFC0CB, + Plaid=0xCC5533, + Plum=0xDDA0DD, + PowderBlue=0xB0E0E6, + Purple=0x800080, + Red=0xFF0000, + RosyBrown=0xBC8F8F, + RoyalBlue=0x4169E1, + SaddleBrown=0x8B4513, + Salmon=0xFA8072, + SandyBrown=0xF4A460, + SeaGreen=0x2E8B57, + Seashell=0xFFF5EE, + Sienna=0xA0522D, + Silver=0xC0C0C0, + SkyBlue=0x87CEEB, + SlateBlue=0x6A5ACD, + SlateGray=0x708090, + SlateGrey=0x708090, + Snow=0xFFFAFA, + SpringGreen=0x00FF7F, + SteelBlue=0x4682B4, + Tan=0xD2B48C, + Teal=0x008080, + Thistle=0xD8BFD8, + Tomato=0xFF6347, + Turquoise=0x40E0D0, + Violet=0xEE82EE, + Wheat=0xF5DEB3, + White=0xFFFFFF, + WhiteSmoke=0xF5F5F5, + Yellow=0xFFFF00, + YellowGreen=0x9ACD32, + + // LED RGB color that roughly approximates + // the color of incandescent fairy lights, + // assuming that you're using FastLED + // color correction on your LEDs (recommended). + FairyLight=0xFFE42D, + // If you are using no color correction, use this + FairyLightNCC=0xFF9D2A + + } HTMLColorCode; +}; + + +inline __attribute__((always_inline)) bool operator== (const CRGB& lhs, const CRGB& rhs) +{ + return (lhs.r == rhs.r) && (lhs.g == rhs.g) && (lhs.b == rhs.b); +} + +inline __attribute__((always_inline)) bool operator!= (const CRGB& lhs, const CRGB& rhs) +{ + return !(lhs == rhs); +} + +inline __attribute__((always_inline)) bool operator< (const CRGB& lhs, const CRGB& rhs) +{ + uint16_t sl, sr; + sl = lhs.r + lhs.g + lhs.b; + sr = rhs.r + rhs.g + rhs.b; + return sl < sr; +} + +inline __attribute__((always_inline)) bool operator> (const CRGB& lhs, const CRGB& rhs) +{ + uint16_t sl, sr; + sl = lhs.r + lhs.g + lhs.b; + sr = rhs.r + rhs.g + rhs.b; + return sl > sr; +} + +inline __attribute__((always_inline)) bool operator>= (const CRGB& lhs, const CRGB& rhs) +{ + uint16_t sl, sr; + sl = lhs.r + lhs.g + lhs.b; + sr = rhs.r + rhs.g + rhs.b; + return sl >= sr; +} + +inline __attribute__((always_inline)) bool operator<= (const CRGB& lhs, const CRGB& rhs) +{ + uint16_t sl, sr; + sl = lhs.r + lhs.g + lhs.b; + sr = rhs.r + rhs.g + rhs.b; + return sl <= sr; +} + + +__attribute__((always_inline)) +inline CRGB operator+( const CRGB& p1, const CRGB& p2) +{ + return CRGB( qadd8( p1.r, p2.r), + qadd8( p1.g, p2.g), + qadd8( p1.b, p2.b)); +} + +__attribute__((always_inline)) +inline CRGB operator-( const CRGB& p1, const CRGB& p2) +{ + return CRGB( qsub8( p1.r, p2.r), + qsub8( p1.g, p2.g), + qsub8( p1.b, p2.b)); +} + +__attribute__((always_inline)) +inline CRGB operator*( const CRGB& p1, uint8_t d) +{ + return CRGB( qmul8( p1.r, d), + qmul8( p1.g, d), + qmul8( p1.b, d)); +} + +__attribute__((always_inline)) +inline CRGB operator/( const CRGB& p1, uint8_t d) +{ + return CRGB( p1.r/d, p1.g/d, p1.b/d); +} + + +__attribute__((always_inline)) +inline CRGB operator&( const CRGB& p1, const CRGB& p2) +{ + return CRGB( p1.r < p2.r ? p1.r : p2.r, + p1.g < p2.g ? p1.g : p2.g, + p1.b < p2.b ? p1.b : p2.b); +} + +__attribute__((always_inline)) +inline CRGB operator|( const CRGB& p1, const CRGB& p2) +{ + return CRGB( p1.r > p2.r ? p1.r : p2.r, + p1.g > p2.g ? p1.g : p2.g, + p1.b > p2.b ? p1.b : p2.b); +} + +__attribute__((always_inline)) +inline CRGB operator%( const CRGB& p1, uint8_t d) +{ + CRGB retval( p1); + retval.nscale8_video( d); + return retval; +} + + + +/// RGB orderings, used when instantiating controllers to determine what +/// order the controller should send RGB data out in, RGB being the default +/// ordering. +enum EOrder { + RGB=0012, + RBG=0021, + GRB=0102, + GBR=0120, + BRG=0201, + BGR=0210 +}; + +FASTLED_NAMESPACE_END +///@} + +#endif diff --git a/arduino/test/platforms.h b/arduino/test/platforms.h new file mode 100644 index 0000000..4f5d7ee --- /dev/null +++ b/arduino/test/platforms.h @@ -0,0 +1,28 @@ +#ifndef __INC_PLATFORMS_H +#define __INC_PLATFORMS_H + +#include "fastled_config.h" + +#if defined(NRF51) +#include "platforms/arm/nrf51/fastled_arm_nrf51.h" +#elif defined(__MK20DX128__) || defined(__MK20DX256__) +// Include k20/T3 headers +#include "platforms/arm/k20/fastled_arm_k20.h" +#elif defined(__MKL26Z64__) +// Include kl26/T-LC headers +#include "platforms/arm/kl26/fastled_arm_kl26.h" +#elif defined(__SAM3X8E__) +// Include sam/due headers +#include "platforms/arm/sam/fastled_arm_sam.h" +#elif defined(STM32F10X_MD) +#include "platforms/arm/stm32/fastled_arm_stm32.h" +#elif defined(__SAMD21G18A__) +#include "platforms/arm/d21/fastled_arm_d21.h" +#elif defined(__XTENSA__) +#error "XTENSA-architecture microcontrollers are not supported" +#else +// AVR platforms +#include "platforms/avr/fastled_avr.h" +#endif + +#endif diff --git a/arduino/test/platforms/arm/common/m0clockless.h b/arduino/test/platforms/arm/common/m0clockless.h new file mode 100644 index 0000000..3d12ade --- /dev/null +++ b/arduino/test/platforms/arm/common/m0clockless.h @@ -0,0 +1,313 @@ +#ifndef __INC_M0_CLOCKLESS_H +#define __INC_M0_CLOCKLESS_H + +struct M0ClocklessData { + uint8_t d[3]; + uint8_t s[3]; + uint8_t e[3]; + uint8_t adj; +}; + + +templateint +showLedData(volatile uint32_t *_port, uint32_t _bitmask, const uint8_t *_leds, uint32_t num_leds, struct M0ClocklessData *pData) { + // Lo register variables + register uint32_t scratch=0; + register struct M0ClocklessData *base = pData; + register volatile uint32_t *port = _port; + register uint32_t d=0; + register uint32_t counter=num_leds; + register uint32_t bn=0; + register uint32_t b=0; + register uint32_t bitmask = _bitmask; + + // high register variable + register const uint8_t *leds = _leds; + + asm __volatile__ ( + /////////////////////////////////////////////////////////////////////////// + // + // asm macro definitions - used to assemble the clockless output + // + ".ifnotdef fl_delay_def;" +#ifdef FASTLED_ARM_M0_PLUS + " .set fl_is_m0p, 1;" + " .macro m0pad;" + " nop;" + " .endm;" +#else + " .set fl_is_m0p, 0;" + " .macro m0pad;" + " .endm;" +#endif + " .set fl_delay_def, 1;" + " .set fl_delay_mod, 4;" + " .if fl_is_m0p == 1;" + " .set fl_delay_mod, 3;" + " .endif;" + " .macro fl_delay dtime, reg=r0;" + " .if (\\dtime > 0);" + " .set dcycle, (\\dtime / fl_delay_mod);" + " .set dwork, (dcycle * fl_delay_mod);" + " .set drem, (\\dtime - dwork);" + " .rept (drem);" + " nop;" + " .endr;" + " .if dcycle > 0;" + " mov \\reg, #dcycle;" + " delayloop_\\@:;" + " sub \\reg, #1;" + " bne delayloop_\\@;" + " .if fl_is_m0p == 0;" + " nop;" + " .endif;" + " .endif;" + " .endif;" + " .endm;" + + " .macro mod_delay dtime,b1,b2,reg;" + " .set adj, (\\b1 + \\b2);" + " .if adj < \\dtime;" + " .set dtime2, (\\dtime - adj);" + " fl_delay dtime2, \\reg;" + " .endif;" + " .endm;" + + // check the bit and drop the line low if it isn't set + " .macro qlo4 b,bitmask,port,loff ;" + " lsl \\b, #1 ;" + " bcs skip_\\@ ;" + " str \\bitmask, [\\port, \\loff] ;" + " skip_\\@: ;" + " m0pad;" + " .endm ;" + + // set the pin hi or low (determined by the offset passed in ) + " .macro qset2 bitmask,port,loff;" + " str \\bitmask, [\\port, \\loff];" + " m0pad;" + " .endm;" + + // Load up the next led byte to work with, put it in bn + " .macro loadleds3 leds, bn, rled, scratch;" + " mov \\scratch, \\leds;" + " ldrb \\bn, [\\scratch, \\rled];" + " .endm;" + + // check whether or not we should dither + " .macro loaddither7 bn,d,base,rdither;" + " ldrb \\d, [\\base, \\rdither];" + " lsl \\d, #24;" //; shift high for the qadd w/bn + " lsl \\bn, #24;" //; shift high for the qadd w/d + " bne chkskip_\\@;" //; if bn==0, clear d;" + " eor \\d, \\d;" //; clear d;" + " m0pad;" + " chkskip_\\@:;" + " .endm;" + + // Do the qadd8 for dithering -- there's two versions of this. The m0 version + // takes advantage of the 3 cycle branch to do two things after the branch, + // while keeping timing constant. The m0+, however, branches in 2 cycles, so + // we have to work around that a bit more. This is one of the few times + // where the m0 will actually be _more_ efficient than the m0+ + " .macro dither5 bn,d;" + " .syntax unified;" + " .if fl_is_m0p == 0;" + " adds \\bn, \\d;" // do the add + " bcc dither5_1_\\@;" + " mvns \\bn, \\bn;" // set the low 24bits ot 1's + " lsls \\bn, \\bn, #24;" // move low 8 bits to the high bits + " dither5_1_\\@:;" + " nop;" // nop to keep timing in line + " .else;" + " adds \\bn, \\d;" // do the add" + " bcc dither5_2_\\@;" + " mvns \\bn, \\bn;" // set the low 24bits ot 1's + " dither5_2_\\@:;" + " bcc dither5_3_\\@;" + " lsls \\bn, \\bn, #24;" // move low 8 bits to the high bits + " dither5_3_\\@:;" + " .endif;" + " .syntax divided;" + " .endm;" + + // Do our scaling + " .macro scale4 bn, base, scale, scratch;" + " ldrb \\scratch, [\\base, \\scale];" + " lsr \\bn, \\bn, #24;" // bring bn back down to its low 8 bits + " mul \\bn, \\scratch;" // do the multiply + " .endm;" + + // swap bn into b + " .macro swapbbn1 b,bn;" + " lsl \\b, \\bn, #16;" // put the 8 bits we want for output high + " .endm;" + + // adjust the dithering value for the next time around (load e from memory + // to do the math) + " .macro adjdither7 base,d,rled,eoffset,scratch;" + " ldrb \\d, [\\base, \\rled];" + " ldrb \\scratch,[\\base,\\eoffset];" // load e + " .syntax unified;" + " subs \\d, \\scratch, \\d;" // d=e-d + " .syntax divided;" + " strb \\d, [\\base, \\rled];" // save d + " .endm;" + + // increment the led pointer (base+9 has what we're incrementing by) + " .macro incleds3 leds, base, scratch;" + " ldrb \\scratch, [\\base, #9];" // load incremen + " add \\leds, \\leds, \\scratch;" // update leds pointer + " .endm;" + + // compare and loop + " .macro cmploop5 counter,label;" + " .syntax unified;" + " subs \\counter, #1;" + " .syntax divided;" + " beq done_\\@;" + " m0pad;" + " b \\label;" + " done_\\@:;" + " .endm;" + + " .endif;" + ); + +#define M0_ASM_ARGS : \ + [leds] "+h" (leds), \ + [counter] "+l" (counter), \ + [scratch] "+l" (scratch), \ + [d] "+l" (d), \ + [bn] "+l" (bn), \ + [b] "+l" (b) \ + : \ + [port] "l" (port), \ + [base] "l" (base), \ + [bitmask] "l" (bitmask), \ + [hi_off] "I" (HI_OFFSET), \ + [lo_off] "I" (LO_OFFSET), \ + [led0] "I" (RO(0)), \ + [led1] "I" (RO(1)), \ + [led2] "I" (RO(2)), \ + [scale0] "I" (3+RO(0)), \ + [scale1] "I" (3+RO(1)), \ + [scale2] "I" (3+RO(2)), \ + [e0] "I" (6+RO(0)), \ + [e1] "I" (6+RO(1)), \ + [e2] "I" (6+RO(2)), \ + [T1] "I" (T1), \ + [T2] "I" (T2), \ + [T3] "I" (T3) \ + : + + ///////////////////////////////////////////////////////////////////////// + // now for some convinience macros to make building our lines a bit cleaner +#define LOOP " loop_%=:" +#define HI2 " qset2 %[bitmask], %[port], %[hi_off];" +#define D1 " mod_delay %c[T1],2,0,%[scratch];" +#define QLO4 " qlo4 %[b],%[bitmask],%[port], %[lo_off];" +#define LOADLEDS3(X) " loadleds3 %[leds], %[bn], %[led" #X "] ,%[scratch];" +#define D2(ADJ) " mod_delay %c[T2],4," #ADJ ",%[scratch];" +#define LO2 " qset2 %[bitmask], %[port], %[lo_off];" +#define D3(ADJ) " mod_delay %c[T3],2," #ADJ ",%[scratch];" +#define LOADDITHER7(X) " loaddither7 %[bn], %[d], %[base], %[led" #X "];" +#define DITHER5 " dither5 %[bn], %[d];" +#define SCALE4(X) " scale4 %[bn], %[base], %[scale" #X "], %[scratch];" +#define SWAPBBN1 " swapbbn1 %[b], %[bn];" +#define ADJDITHER7(X) " adjdither7 %[base],%[d],%[led" #X "],%[e" #X "],%[scratch];" +#define INCLEDS3 " incleds3 %[leds],%[base],%[scratch];" +#define CMPLOOP5 " cmploop5 %[counter], loop_%=;" +#define NOTHING "" + +#if !(defined(SEI_CHK) && (FASTLED_ALLOW_INTERRUPTS == 1)) + // We're not allowing interrupts - run the entire loop in asm to keep things + // as tight as possible. In an ideal world, we should be pushing out ws281x + // leds (or other 3-wire leds) with zero gaps between pixels. + asm __volatile__ ( + // pre-load byte 0 + LOADLEDS3(0) LOADDITHER7(0) DITHER5 SCALE4(0) ADJDITHER7(0) SWAPBBN1 + + // loop over writing out the data + LOOP + // Write out byte 0, prepping byte 1 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(1) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(1) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(1) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(1) D2(7) LO2 D3(0) + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(0) + + // Write out byte 1, prepping byte 2 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(2) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(2) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(2) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(2) D2(7) LO2 D3(0) + HI2 D1 QLO4 INCLEDS3 D2(3) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(0) + + // Write out byte 2, prepping byte 0 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(0) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(0) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(0) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(0) D2(7) LO2 D3(0) + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(5) CMPLOOP5 + + M0_ASM_ARGS + ); +#else + // We're allowing interrupts - track the loop outside the asm code, to allow + // inserting the interrupt overrun checks. + asm __volatile__ ( + // pre-load byte 0 + LOADLEDS3(0) LOADDITHER7(0) DITHER5 SCALE4(0) ADJDITHER7(0) SWAPBBN1 + M0_ASM_ARGS); + + do { + asm __volatile__ ( + // Write out byte 0, prepping byte 1 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(1) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(1) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(1) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(1) D2(7) LO2 D3(0) + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(0) + + // Write out byte 1, prepping byte 2 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(2) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(2) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(2) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(2) D2(7) LO2 D3(0) + HI2 D1 QLO4 INCLEDS3 D2(3) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(0) + + // Write out byte 2, prepping byte 0 + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 LOADLEDS3(0) D2(3) LO2 D3(0) + HI2 D1 QLO4 LOADDITHER7(0) D2(7) LO2 D3(0) + HI2 D1 QLO4 DITHER5 D2(5) LO2 D3(0) + HI2 D1 QLO4 SCALE4(0) D2(4) LO2 D3(0) + HI2 D1 QLO4 ADJDITHER7(0) D2(7) LO2 D3(0) + HI2 D1 QLO4 NOTHING D2(0) LO2 D3(0) + HI2 D1 QLO4 SWAPBBN1 D2(1) LO2 D3(5) + + M0_ASM_ARGS + ); + SEI_CHK; INNER_SEI; --counter; CLI_CHK; + } while(counter); +#endif + return num_leds; +} + +#endif diff --git a/arduino/test/platforms/arm/d21/clockless_arm_d21.h b/arduino/test/platforms/arm/d21/clockless_arm_d21.h new file mode 100644 index 0000000..c6ca179 --- /dev/null +++ b/arduino/test/platforms/arm/d21/clockless_arm_d21.h @@ -0,0 +1,89 @@ +#ifndef __INC_CLOCKLESS_ARM_D21 +#define __INC_CLOCKLESS_ARM_D21 + +#include "platforms/arm/common/m0clockless.h" +FASTLED_NAMESPACE_BEGIN +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPinBB::port_ptr_t data_ptr_t; + typedef typename FastPinBB::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPinBB::setOutput(); + mPinMask = FastPinBB::mask(); + mPort = FastPinBB::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + showRGBInternal(pixels); + + sei(); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + showRGBInternal(pixels); + + sei(); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + showRGBInternal(pixels); + sei(); + mWait.mark(); + } +#endif + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + struct M0ClocklessData data; + data.d[0] = pixels.d[0]; + data.d[1] = pixels.d[1]; + data.d[2] = pixels.d[2]; + data.s[0] = pixels.mScale[0]; + data.s[1] = pixels.mScale[1]; + data.s[2] = pixels.mScale[2]; + data.e[0] = pixels.e[0]; + data.e[1] = pixels.e[1]; + data.e[2] = pixels.e[2]; + data.adj = pixels.mAdvance; + + typename FastPin::port_ptr_t portBase = FastPin::port(); + showLedData<8,4,T1,T2,T3,RGB_ORDER, WAIT_TIME>(portBase, FastPin::mask(), pixels.mData, pixels.mLen, &data); + return 0; // 0x00FFFFFF - _VAL; + } + + +}; + +FASTLED_NAMESPACE_END + + +#endif // __INC_CLOCKLESS_ARM_D21 diff --git a/arduino/test/platforms/arm/d21/fastled_arm_d21.h b/arduino/test/platforms/arm/d21/fastled_arm_d21.h new file mode 100644 index 0000000..3a62efc --- /dev/null +++ b/arduino/test/platforms/arm/d21/fastled_arm_d21.h @@ -0,0 +1,8 @@ +#ifndef __INC_FASTLED_ARM_D21_H +#define __INC_FASTLED_ARM_D21_H + +#include "fastled_delay.h" +#include "fastpin_arm_d21.h" +#include "clockless_arm_d21.h" + +#endif diff --git a/arduino/test/platforms/arm/d21/fastpin_arm_d21.h b/arduino/test/platforms/arm/d21/fastpin_arm_d21.h new file mode 100644 index 0000000..9e9fe19 --- /dev/null +++ b/arduino/test/platforms/arm/d21/fastpin_arm_d21.h @@ -0,0 +1,95 @@ +#ifndef __INC_FASTPIN_ARM_SAM_H +#define __INC_FASTPIN_ARM_SAM_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + +/// Template definition for STM32 style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data output, set output, clear output, toggle output, input, and direction + +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + #if 0 + inline static void setOutput() { + if(_BIT<8) { + _CRL::r() = (_CRL::r() & (0xF << (_BIT*4)) | (0x1 << (_BIT*4)); + } else { + _CRH::r() = (_CRH::r() & (0xF << ((_BIT-8)*4))) | (0x1 << ((_BIT-8)*4)); + } + } + inline static void setInput() { /* TODO */ } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + #endif + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { PORT->Group[_GRP].OUTSET.reg = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { PORT->Group[_GRP].OUTCLR.reg = _MASK; } + // inline static void lo() __attribute__ ((always_inline)) { PORT->Group[_GRP].BSRR = (_MASK<<16); } + inline static void set(register port_t val) __attribute__ ((always_inline)) { PORT->Group[_GRP].OUT.reg = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { PORT->Group[_GRP].OUTTGL.reg = _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return PORT->Group[_GRP].OUT.reg | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return PORT->Group[_GRP].OUT.reg & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &PORT->Group[_GRP].OUT.reg; } + inline static port_ptr_t sport() __attribute__ ((always_inline)) { return &PORT->Group[_GRP].OUTSET.reg; } + inline static port_ptr_t cport() __attribute__ ((always_inline)) { return &PORT->Group[_GRP].OUTCLR.reg; } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + +#define _R(T) struct __gen_struct_ ## T +#define _RD32(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline volatile PortGroup * r() { return T; } }; + +#define _IO32(L) _RD32(GPIO ## L) + +#define _DEFPIN_ARM(PIN, L, BIT) template<> class FastPin : public _ARMPIN {}; + +// Actual pin definitions +#if defined(ARDUINO_SAMD_ZERO) + +#define MAX_PIN 42 +_DEFPIN_ARM( 0,0,10); _DEFPIN_ARM( 1,0,11); _DEFPIN_ARM( 2,0, 8); _DEFPIN_ARM( 3,0, 9); +_DEFPIN_ARM( 4,0,14); _DEFPIN_ARM( 5,0,15); _DEFPIN_ARM( 6,0,20); _DEFPIN_ARM( 7,0,21); +_DEFPIN_ARM( 8,0, 6); _DEFPIN_ARM( 9,0, 7); _DEFPIN_ARM(10,0,18); _DEFPIN_ARM(11,0,16); +_DEFPIN_ARM(12,0,19); _DEFPIN_ARM(13,0,17); _DEFPIN_ARM(14,0, 2); _DEFPIN_ARM(15,1, 8); +_DEFPIN_ARM(16,1, 9); _DEFPIN_ARM(17,0, 4); _DEFPIN_ARM(18,0, 5); _DEFPIN_ARM(19,1, 2); +_DEFPIN_ARM(20,0,22); _DEFPIN_ARM(21,0,23); _DEFPIN_ARM(22,0,12); _DEFPIN_ARM(23,1,11); +_DEFPIN_ARM(24,1,10); _DEFPIN_ARM(25,1, 3); _DEFPIN_ARM(26,0,27); _DEFPIN_ARM(27,0,28); +_DEFPIN_ARM(28,0,24); _DEFPIN_ARM(29,0,25); _DEFPIN_ARM(30,1,22); _DEFPIN_ARM(31,1,23); +_DEFPIN_ARM(32,0,22); _DEFPIN_ARM(33,0,23); _DEFPIN_ARM(34,0,19); _DEFPIN_ARM(35,0,16); +_DEFPIN_ARM(36,0,18); _DEFPIN_ARM(37,0,17); _DEFPIN_ARM(38,0,13); _DEFPIN_ARM(39,0,21); +_DEFPIN_ARM(40,0, 6); _DEFPIN_ARM(41,0, 7); _DEFPIN_ARM(42,0, 3); + +#define SPI_DATA 24 +#define SPI_CLOCK 23 + +#define HAS_HARDWARE_PIN_SUPPORT + +#endif + + + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + + +#endif // __INC_FASTPIN_ARM_SAM_H diff --git a/arduino/test/platforms/arm/d21/led_sysdefs_arm_d21.h b/arduino/test/platforms/arm/d21/led_sysdefs_arm_d21.h new file mode 100644 index 0000000..43c406e --- /dev/null +++ b/arduino/test/platforms/arm/d21/led_sysdefs_arm_d21.h @@ -0,0 +1,26 @@ +#ifndef __INC_LED_SYSDEFS_ARM_D21_H +#define __INC_LED_SYSDEFS_ARM_D21_H + + +#define FASTLED_ARM +#define FASTLED_ARM_M0_PLUS + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 1 +#endif + +// Default to allowing interrupts +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 0 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + +// reuseing/abusing cli/sei defs for due +#define cli() __disable_irq(); +#define sei() __enable_irq(); + + +#endif diff --git a/arduino/test/platforms/arm/k20/clockless_arm_k20.h b/arduino/test/platforms/arm/k20/clockless_arm_k20.h new file mode 100644 index 0000000..f17ba72 --- /dev/null +++ b/arduino/test/platforms/arm/k20/clockless_arm_k20.h @@ -0,0 +1,145 @@ +#ifndef __INC_CLOCKLESS_ARM_K20_H +#define __INC_CLOCKLESS_ARM_K20_H + +FASTLED_NAMESPACE_BEGIN + +// Definition for a single channel clockless controller for the k20 family of chips, like that used in the teensy 3.0/3.1 +// See clockless.h for detailed info on how the template parameters are used. +#if defined(FASTLED_TEENSY3) + +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPin::setOutput(); + mPinMask = FastPin::mask(); + mPort = FastPin::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + +protected: + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } +#endif + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register data_ptr_t port, register data_t hi, register data_t lo, register uint8_t & b) { + for(register uint32_t i = BITS-1; i > 0; i--) { + while(ARM_DWT_CYCCNT < next_mark); + next_mark = ARM_DWT_CYCCNT + (T1+T2+T3); + FastPin::fastset(port, hi); + if(b&0x80) { + while((next_mark - ARM_DWT_CYCCNT) > (T3+(2*(F_CPU/24000000)))); + FastPin::fastset(port, lo); + } else { + while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+(2*(F_CPU/24000000)))); + FastPin::fastset(port, lo); + } + b <<= 1; + } + + while(ARM_DWT_CYCCNT < next_mark); + next_mark = ARM_DWT_CYCCNT + (T1+T2+T3); + FastPin::fastset(port, hi); + + if(b&0x80) { + while((next_mark - ARM_DWT_CYCCNT) > (T3+(2*(F_CPU/24000000)))); + FastPin::fastset(port, lo); + } else { + while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+(2*(F_CPU/24000000)))); + FastPin::fastset(port, lo); + } + } + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + // Get access to the clock + ARM_DEMCR |= ARM_DEMCR_TRCENA; + ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA; + ARM_DWT_CYCCNT = 0; + + register data_ptr_t port = FastPin::port(); + register data_t hi = *port | FastPin::mask();; + register data_t lo = *port & ~FastPin::mask();; + *port = lo; + + // Setup the pixel controller and load/scale the first byte + pixels.preStepFirstByteDithering(); + register uint8_t b = pixels.loadAndScale0(); + + cli(); + uint32_t next_mark = ARM_DWT_CYCCNT + (T1+T2+T3); + + while(pixels.has(1)) { + pixels.stepDithering(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + // if interrupts took longer than 45µs, punt on the current frame + if(ARM_DWT_CYCCNT > next_mark) { + if((ARM_DWT_CYCCNT-next_mark) > ((WAIT_TIME-INTERRUPT_THRESHOLD)*CLKS_PER_US)) { sei(); return ARM_DWT_CYCCNT; } + } + + hi = *port | FastPin::mask(); + lo = *port & ~FastPin::mask(); + #endif + // Write first byte, read next byte + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.loadAndScale1(); + + // Write second byte, read 3rd byte + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.loadAndScale2(); + + // Write third byte, read 1st byte of next pixel + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.advanceAndLoadAndScale0(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + }; + + sei(); + return ARM_DWT_CYCCNT; + } +}; +#endif + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/arm/k20/clockless_block_arm_k20.h b/arduino/test/platforms/arm/k20/clockless_block_arm_k20.h new file mode 100644 index 0000000..385ee57 --- /dev/null +++ b/arduino/test/platforms/arm/k20/clockless_block_arm_k20.h @@ -0,0 +1,396 @@ +#ifndef __INC_BLOCK_CLOCKLESS_ARM_K20_H +#define __INC_BLOCK_CLOCKLESS_ARM_K20_H + +// Definition for a single channel clockless controller for the k20 family of chips, like that used in the teensy 3.0/3.1 +// See clockless.h for detailed info on how the template parameters are used. +#if defined(FASTLED_TEENSY3) +#define FASTLED_HAS_BLOCKLESS 1 + +#define PORTC_FIRST_PIN 15 +#define PORTD_FIRST_PIN 2 +#define HAS_PORTDC 1 + +#define PORT_MASK (((1< +class InlineBlockClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + if(FIRST_PIN == PORTC_FIRST_PIN) { // PORTC + switch(LANES) { + case 12: FastPin<30>::setOutput(); + case 11: FastPin<29>::setOutput(); + case 10: FastPin<27>::setOutput(); + case 9: FastPin<28>::setOutput(); + case 8: FastPin<12>::setOutput(); + case 7: FastPin<11>::setOutput(); + case 6: FastPin<13>::setOutput(); + case 5: FastPin<10>::setOutput(); + case 4: FastPin<9>::setOutput(); + case 3: FastPin<23>::setOutput(); + case 2: FastPin<22>::setOutput(); + case 1: FastPin<15>::setOutput(); + } + } else if(FIRST_PIN == PORTD_FIRST_PIN) { // PORTD + switch(LANES) { + case 8: FastPin<5>::setOutput(); + case 7: FastPin<21>::setOutput(); + case 6: FastPin<20>::setOutput(); + case 5: FastPin<6>::setOutput(); + case 4: FastPin<8>::setOutput(); + case 3: FastPin<7>::setOutput(); + case 2: FastPin<14>::setOutput(); + case 1: FastPin<2>::setOutput(); + } + } + mPinMask = FastPin::mask(); + mPort = FastPin::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + uint32_t clocks = showRGBInternal(pixels,nLeds); + #if FASTLED_ALLOW_INTTERUPTS == 0 + // Adjust the timer + long microsTaken = CLKS_TO_MICROS(clocks); + MS_COUNTER += (1 + (microsTaken / 1000)); + #endif + + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + uint32_t clocks = showRGBInternal(pixels,nLeds); + #if FASTLED_ALLOW_INTTERUPTS == 0 + // Adjust the timer + long microsTaken = CLKS_TO_MICROS(clocks); + MS_COUNTER += (1 + (microsTaken / 1000)); + #endif + + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + uint32_t clocks = showRGBInternal(pixels,nLeds); + + #if FASTLED_ALLOW_INTTERUPTS == 0 + // Adjust the timer + long microsTaken = CLKS_TO_MICROS(clocks); + MS_COUNTER += (1 + (microsTaken / 1000)); + #endif + + mWait.mark(); + } +#endif + + + typedef union { + uint8_t bytes[12]; + uint16_t shorts[6]; + uint32_t raw[3]; + } Lines; + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register Lines & b, MultiPixelController &pixels) { // , register uint32_t & b2) { + register Lines b2; + if(LANES>8) { + transpose8<1,2>(b.bytes,b2.bytes); + transpose8<1,2>(b.bytes+8,b2.bytes+1); + } else { + transpose8x1(b.bytes,b2.bytes); + } + register uint8_t d = pixels.template getd(pixels); + register uint8_t scale = pixels.template getscale(pixels); + + for(register uint32_t i = 0; i < (LANES/2); i++) { + while(ARM_DWT_CYCCNT < next_mark); + next_mark = ARM_DWT_CYCCNT + (T1+T2+T3)-3; + *FastPin::sport() = PORT_MASK; + + while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+(2*(F_CPU/24000000)))); + if(LANES>8) { + *FastPin::cport() = ((~b2.shorts[i]) & PORT_MASK); + } else { + *FastPin::cport() = ((~b2.bytes[7-i]) & PORT_MASK); + } + + while((next_mark - ARM_DWT_CYCCNT) > (T3)); + *FastPin::cport() = PORT_MASK; + + b.bytes[i] = pixels.template loadAndScale(pixels,i,d,scale); + b.bytes[i+(LANES/2)] = pixels.template loadAndScale(pixels,i+(LANES/2),d,scale); + } + + // if folks use an odd numnber of lanes, get the last byte's value here + if(LANES & 0x01) { + b.bytes[LANES-1] = pixels.template loadAndScale(pixels,LANES-1,d,scale); + } + + for(register uint32_t i = LANES/2; i < 8; i++) { + while(ARM_DWT_CYCCNT < next_mark); + next_mark = ARM_DWT_CYCCNT + (T1+T2+T3)-3; + *FastPin::sport() = PORT_MASK; + while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+(2*(F_CPU/24000000)))); + if(LANES>8) { + *FastPin::cport() = ((~b2.shorts[i]) & PORT_MASK); + } else { + // b2.bytes[0] = 0; + *FastPin::cport() = ((~b2.bytes[7-i]) & PORT_MASK); + } + + while((next_mark - ARM_DWT_CYCCNT) > (T3)); + *FastPin::cport() = PORT_MASK; + + } + + + // while(ARM_DWT_CYCCNT < next_mark); + // next_mark = ARM_DWT_CYCCNT + (T1+T2+T3)-3; + // *FastPin::sport() = PORT_MASK; + // + // while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+6)); + // if(LANES>8) { + // *FastPin::cport() = ((~b2.shorts[7]) & PORT_MASK); + // } else { + // *FastPin::cport() = PORT_MASK; // ((~b2.bytes[7-i]) & PORT_MASK); + // } + // + // while((next_mark - ARM_DWT_CYCCNT) > (T3)); + // *FastPin::cport() = PORT_MASK; + } + + + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(MultiPixelController &allpixels, int nLeds) { + // Get access to the clock + ARM_DEMCR |= ARM_DEMCR_TRCENA; + ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA; + ARM_DWT_CYCCNT = 0; + + // Setup the pixel controller and load/scale the first byte + allpixels.preStepFirstByteDithering(); + register Lines b0; + + allpixels.preStepFirstByteDithering(); + for(int i = 0; i < LANES; i++) { + b0.bytes[i] = allpixels.loadAndScale0(i); + } + + cli(); + uint32_t next_mark = ARM_DWT_CYCCNT + (T1+T2+T3); + + while(nLeds--) { + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + // if interrupts took longer than 45µs, punt on the current frame + if(ARM_DWT_CYCCNT > next_mark) { + if((ARM_DWT_CYCCNT-next_mark) > ((WAIT_TIME-5)*CLKS_PER_US)) { sei(); return ARM_DWT_CYCCNT; } + } + #endif + allpixels.stepDithering(); + + // Write first byte, read next byte + writeBits<8+XTRA0,1>(next_mark, b0, allpixels); + + // Write second byte, read 3rd byte + writeBits<8+XTRA0,2>(next_mark, b0, allpixels); + allpixels.advanceData(); + + // Write third byte + writeBits<8+XTRA0,0>(next_mark, b0, allpixels); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + }; + + return ARM_DWT_CYCCNT; + } +}; + +#define DLANES (MIN(__LANES,16)) +#define PMASK ((1<<(DLANES))-1) +#define PMASK_HI (PMASK>>8 & 0xFF) +#define PMASK_LO (PMASK & 0xFF) + +template +class SixteenWayInlineBlockClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + // FastPin<30>::setOutput(); + // FastPin<29>::setOutput(); + // FastPin<27>::setOutput(); + // FastPin<28>::setOutput(); + switch(DLANES) { + case 16: FastPin<12>::setOutput(); + case 15: FastPin<11>::setOutput(); + case 14: FastPin<13>::setOutput(); + case 13: FastPin<10>::setOutput(); + case 12: FastPin<9>::setOutput(); + case 11: FastPin<23>::setOutput(); + case 10: FastPin<22>::setOutput(); + case 9: FastPin<15>::setOutput(); + + case 8: FastPin<5>::setOutput(); + case 7: FastPin<21>::setOutput(); + case 6: FastPin<20>::setOutput(); + case 5: FastPin<6>::setOutput(); + case 4: FastPin<8>::setOutput(); + case 3: FastPin<7>::setOutput(); + case 2: FastPin<14>::setOutput(); + case 1: FastPin<2>::setOutput(); + } + } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + showRGBInternal(pixels,nLeds); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + showRGBInternal(pixels,nLeds); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + showRGBInternal(pixels,nLeds); + mWait.mark(); + } +#endif + + + typedef union { + uint8_t bytes[16]; + uint16_t shorts[8]; + uint32_t raw[4]; + } Lines; + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register Lines & b, MultiPixelController &pixels) { // , register uint32_t & b2) { + register Lines b2; + transpose8x1(b.bytes,b2.bytes); + transpose8x1(b.bytes+8,b2.bytes+8); + register uint8_t d = pixels.template getd(pixels); + register uint8_t scale = pixels.template getscale(pixels); + + for(register uint32_t i = 0; (i < DLANES) && (i < 8); i++) { + while(ARM_DWT_CYCCNT < next_mark); + next_mark = ARM_DWT_CYCCNT + (T1+T2+T3)-3; + *FastPin::sport() = PMASK_LO; + *FastPin::sport() = PMASK_HI; + + while((next_mark - ARM_DWT_CYCCNT) > (T2+T3+6)); + *FastPin::cport() = ((~b2.bytes[7-i]) & PMASK_LO); + *FastPin::cport() = ((~b2.bytes[15-i]) & PMASK_HI); + + while((next_mark - ARM_DWT_CYCCNT) > (T3)); + *FastPin::cport() = PMASK_LO; + *FastPin::cport() = PMASK_HI; + + b.bytes[i] = pixels.template loadAndScale(pixels,i,d,scale); + if(DLANES==16 || (DLANES>8 && ((i+8) < DLANES))) { + b.bytes[i+8] = pixels.template loadAndScale(pixels,i+8,d,scale); + } + } + } + + + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(MultiPixelController &allpixels, int nLeds) { + // Get access to the clock + ARM_DEMCR |= ARM_DEMCR_TRCENA; + ARM_DWT_CTRL |= ARM_DWT_CTRL_CYCCNTENA; + ARM_DWT_CYCCNT = 0; + + // Setup the pixel controller and load/scale the first byte + allpixels.preStepFirstByteDithering(); + register Lines b0; + + allpixels.preStepFirstByteDithering(); + for(int i = 0; i < DLANES; i++) { + b0.bytes[i] = allpixels.loadAndScale0(i); + } + + cli(); + uint32_t next_mark = ARM_DWT_CYCCNT + (T1+T2+T3); + + while(nLeds--) { + allpixels.stepDithering(); + #if 0 && (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + // if interrupts took longer than 45µs, punt on the current frame + if(ARM_DWT_CYCCNT > next_mark) { + if((ARM_DWT_CYCCNT-next_mark) > ((WAIT_TIME-INTERRUPT_THRESHOLD)*CLKS_PER_US)) { sei(); return ARM_DWT_CYCCNT; } + } + #endif + + // Write first byte, read next byte + writeBits<8+XTRA0,1>(next_mark, b0, allpixels); + + // Write second byte, read 3rd byte + writeBits<8+XTRA0,2>(next_mark, b0, allpixels); + allpixels.advanceData(); + + // Write third byte + writeBits<8+XTRA0,0>(next_mark, b0, allpixels); + + #if 0 && (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + }; + sei(); + + return ARM_DWT_CYCCNT; + } +}; + +FASTLED_NAMESPACE_END + +#endif + +#endif diff --git a/arduino/test/platforms/arm/k20/fastled_arm_k20.h b/arduino/test/platforms/arm/k20/fastled_arm_k20.h new file mode 100644 index 0000000..7220aef --- /dev/null +++ b/arduino/test/platforms/arm/k20/fastled_arm_k20.h @@ -0,0 +1,14 @@ +#ifndef __INC_FASTLED_ARM_K20_H +#define __INC_FASTLED_ARM_K20_H + +// Include the k20 headers +#include "bitswap.h" +#include "fastled_delay.h" +#include "fastpin_arm_k20.h" +#include "fastspi_arm_k20.h" +#include "octows2811_controller.h" +#include "smartmatrix_t3.h" +#include "clockless_arm_k20.h" +#include "clockless_block_arm_k20.h" + +#endif diff --git a/arduino/test/platforms/arm/k20/fastpin_arm_k20.h b/arduino/test/platforms/arm/k20/fastpin_arm_k20.h new file mode 100644 index 0000000..b26e560 --- /dev/null +++ b/arduino/test/platforms/arm/k20/fastpin_arm_k20.h @@ -0,0 +1,120 @@ +#ifndef __FASTPIN_ARM_K20_H +#define __FASTPIN_ARM_K20_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + + +/// Template definition for teensy 3.0 style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data output, set output, clear output, toggle output, input, and direction +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _PSOR::r() = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _PCOR::r() = _MASK; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { _PDOR::r() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { _PTOR::r() = _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return _PDOR::r() | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _PDOR::r() & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_PDOR::r(); } + inline static port_ptr_t sport() __attribute__ ((always_inline)) { return &_PSOR::r(); } + inline static port_ptr_t cport() __attribute__ ((always_inline)) { return &_PCOR::r(); } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + +/// Template definition for teensy 3.0 style ARM pins using bit banding, providing direct access to the various GPIO registers. GCC +/// does a poor job of optimizing around these accesses so they are not being used just yet. +template class _ARMPIN_BITBAND { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = 1; } + inline static void lo() __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = 0; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { *_PTOR::template rx<_BIT>() = 1; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return 1; } + inline static port_t loval() __attribute__ ((always_inline)) { return 0; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return _PDOR::template rx<_BIT>(); } + inline static port_t mask() __attribute__ ((always_inline)) { return 1; } +}; + +// Macros for k20 pin access/definition +#define GPIO_BITBAND_ADDR(reg, bit) (((uint32_t)&(reg) - 0x40000000) * 32 + (bit) * 4 + 0x42000000) +#define GPIO_BITBAND_PTR(reg, bit) ((uint32_t *)GPIO_BITBAND_ADDR((reg), (bit))) + +#define _R(T) struct __gen_struct_ ## T +#define _RD32(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline reg32_t r() { return T; } \ + template static __attribute__((always_inline)) inline ptr_reg32_t rx() { return GPIO_BITBAND_PTR(T, BIT); } }; +#define _IO32(L) _RD32(GPIO ## L ## _PDOR); _RD32(GPIO ## L ## _PSOR); _RD32(GPIO ## L ## _PCOR); _RD32(GPIO ## L ## _PTOR); _RD32(GPIO ## L ## _PDIR); _RD32(GPIO ## L ## _PDDR); + +#define _DEFPIN_ARM(PIN, BIT, L) template<> class FastPin : public _ARMPIN {}; \ + template<> class FastPinBB : public _ARMPIN_BITBAND {}; + +// Actual pin definitions +#if defined(FASTLED_TEENSY3) && defined(CORE_TEENSY) + +_IO32(A); _IO32(B); _IO32(C); _IO32(D); _IO32(E); + +#define MAX_PIN 33 +_DEFPIN_ARM(0, 16, B); _DEFPIN_ARM(1, 17, B); _DEFPIN_ARM(2, 0, D); _DEFPIN_ARM(3, 12, A); +_DEFPIN_ARM(4, 13, A); _DEFPIN_ARM(5, 7, D); _DEFPIN_ARM(6, 4, D); _DEFPIN_ARM(7, 2, D); +_DEFPIN_ARM(8, 3, D); _DEFPIN_ARM(9, 3, C); _DEFPIN_ARM(10, 4, C); _DEFPIN_ARM(11, 6, C); +_DEFPIN_ARM(12, 7, C); _DEFPIN_ARM(13, 5, C); _DEFPIN_ARM(14, 1, D); _DEFPIN_ARM(15, 0, C); +_DEFPIN_ARM(16, 0, B); _DEFPIN_ARM(17, 1, B); _DEFPIN_ARM(18, 3, B); _DEFPIN_ARM(19, 2, B); +_DEFPIN_ARM(20, 5, D); _DEFPIN_ARM(21, 6, D); _DEFPIN_ARM(22, 1, C); _DEFPIN_ARM(23, 2, C); +_DEFPIN_ARM(24, 5, A); _DEFPIN_ARM(25, 19, B); _DEFPIN_ARM(26, 1, E); _DEFPIN_ARM(27, 9, C); +_DEFPIN_ARM(28, 8, C); _DEFPIN_ARM(29, 10, C); _DEFPIN_ARM(30, 11, C); _DEFPIN_ARM(31, 0, E); +_DEFPIN_ARM(32, 18, B); _DEFPIN_ARM(33, 4, A); + +#define SPI_DATA 11 +#define SPI_CLOCK 13 +#define SPI1 (*(SPI_t *)0x4002D000) + +#define SPI2_DATA 7 +#define SPI2_CLOCK 14 + +#define FASTLED_TEENSY3 +#define ARM_HARDWARE_SPI +#define HAS_HARDWARE_PIN_SUPPORT +#endif + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + +#endif // __INC_FASTPIN_ARM_K20 diff --git a/arduino/test/platforms/arm/k20/fastspi_arm_k20.h b/arduino/test/platforms/arm/k20/fastspi_arm_k20.h new file mode 100644 index 0000000..f342caf --- /dev/null +++ b/arduino/test/platforms/arm/k20/fastspi_arm_k20.h @@ -0,0 +1,446 @@ +#ifndef __INC_FASTSPI_ARM_H +#define __INC_FASTSPI_ARM_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_TEENSY3) && defined(CORE_TEENSY) + +// Version 1.20 renamed SPI_t to KINETISK_SPI_t +#if TEENSYDUINO >= 120 +#define SPI_t KINETISK_SPI_t +#endif + +#ifndef KINETISK_SPI0 +#define KINETISK_SPI0 SPI0 +#endif + +#ifndef SPI_PUSHR_CONT +#define SPI_PUSHR_CONT SPIX.PUSHR_CONT +#define SPI_PUSHR_CTAS(X) SPIX.PUSHR_CTAS(X) +#define SPI_PUSHR_EOQ SPIX.PUSHR_EOQ +#define SPI_PUSHR_CTCNT SPIX.PUSHR_CTCNT +#define SPI_PUSHR_PCS(X) SPIX.PUSHR_PCS(X) +#endif + +// Template function that, on compilation, expands to a constant representing the highest bit set in a byte. Right now, +// if no bits are set (value is 0), it returns 0, which is also the value returned if the lowest bit is the only bit +// set (the zero-th bit). Unclear if I will want this to change at some point. +template class BitWork { +public: + static int highestBit() __attribute__((always_inline)) { return (VAL & 1 << BIT) ? BIT : BitWork::highestBit(); } +}; +template class BitWork { +public: + static int highestBit() __attribute__((always_inline)) { return 0; } +}; + +#define MAX(A, B) (( (A) > (B) ) ? (A) : (B)) + +#define USE_CONT 0 +// intra-frame backup data +struct SPIState { + uint32_t _ctar0,_ctar1; + uint32_t pins[4]; +}; + +// extern SPIState gState; + + +// Templated function to translate a clock divider value into the prescalar, scalar, and clock doubling setting for the world. +template void getScalars(uint32_t & preScalar, uint32_t & scalar, uint32_t & dbl) { + switch(VAL) { + // Handle the dbl clock cases + case 0: case 1: + case 2: preScalar = 0; scalar = 0; dbl = 1; break; + case 3: preScalar = 1; scalar = 0; dbl = 1; break; + case 5: preScalar = 2; scalar = 0; dbl = 1; break; + case 7: preScalar = 3; scalar = 0; dbl = 1; break; + + // Handle the scalar value 6 cases (since it's not a power of two, it won't get caught + // below) + case 9: preScalar = 1; scalar = 2; dbl = 1; break; + case 18: case 19: preScalar = 1; scalar = 2; dbl = 0; break; + + case 15: preScalar = 2; scalar = 2; dbl = 1; break; + case 30: case 31: preScalar = 2; scalar = 2; dbl = 0; break; + + case 21: case 22: case 23: preScalar = 3; scalar = 2; dbl = 1; break; + case 42: case 43: case 44: case 45: case 46: case 47: preScalar = 3; scalar = 2; dbl = 0; break; + default: { + int p2 = BitWork::highestBit(); + int p3 = BitWork::highestBit(); + int p5 = BitWork::highestBit(); + int p7 = BitWork::highestBit(); + + int w2 = 2 * (1 << p2); + int w3 = (VAL/3) > 0 ? 3 * (1 << p3) : 0; + int w5 = (VAL/5) > 0 ? 5 * (1 << p5) : 0; + int w7 = (VAL/7) > 0 ? 7 * (1 << p7) : 0; + + int maxval = MAX(MAX(w2, w3), MAX(w5, w7)); + + if(w2 == maxval) { preScalar = 0; scalar = p2; } + else if(w3 == maxval) { preScalar = 1; scalar = p3; } + else if(w5 == maxval) { preScalar = 2; scalar = p5; } + else if(w7 == maxval) { preScalar = 3; scalar = p7; } + + dbl = 0; + if(scalar == 0) { dbl = 1; } + else if(scalar < 3) { scalar--; } + } + } + return; +} + +#define SPIX (*(SPI_t*)pSPIX) + +template +class ARMHardwareSPIOutput { + Selectable *m_pSelect; + SPIState gState; + + // Borrowed from the teensy3 SPSR emulation code -- note, enabling pin 7 disables pin 11 (and vice versa), + // and likewise enabling pin 14 disables pin 13 (and vice versa) + inline void enable_pins(void) __attribute__((always_inline)) { + //serial_print("enable_pins\n"); + switch(_DATA_PIN) { + case 7: + CORE_PIN7_CONFIG = PORT_PCR_DSE | PORT_PCR_MUX(2); + CORE_PIN11_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); + break; + case 11: + CORE_PIN11_CONFIG = PORT_PCR_DSE | PORT_PCR_MUX(2); + CORE_PIN7_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); + break; + } + + switch(_CLOCK_PIN) { + case 13: + CORE_PIN13_CONFIG = PORT_PCR_DSE | PORT_PCR_MUX(2); + CORE_PIN14_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); + break; + case 14: + CORE_PIN14_CONFIG = PORT_PCR_DSE | PORT_PCR_MUX(2); + CORE_PIN13_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); + break; + } + } + + // Borrowed from the teensy3 SPSR emulation code. We disable the pins that we're using, and restore the state on the pins that we aren't using + inline void disable_pins(void) __attribute__((always_inline)) { + switch(_DATA_PIN) { + case 7: CORE_PIN7_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); CORE_PIN11_CONFIG = gState.pins[1]; break; + case 11: CORE_PIN11_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); CORE_PIN7_CONFIG = gState.pins[0]; break; + } + + switch(_CLOCK_PIN) { + case 13: CORE_PIN13_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); CORE_PIN14_CONFIG = gState.pins[3]; break; + case 14: CORE_PIN14_CONFIG = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); CORE_PIN13_CONFIG = gState.pins[2]; break; + } + } + + static inline void update_ctars(uint32_t ctar0, uint32_t ctar1) __attribute__((always_inline)) { + if(SPIX.CTAR0 == ctar0 && SPIX.CTAR1 == ctar1) return; + uint32_t mcr = SPIX.MCR; + if(mcr & SPI_MCR_MDIS) { + SPIX.CTAR0 = ctar0; + SPIX.CTAR1 = ctar1; + } else { + SPIX.MCR = mcr | SPI_MCR_MDIS | SPI_MCR_HALT; + SPIX.CTAR0 = ctar0; + SPIX.CTAR1 = ctar1; + SPIX.MCR = mcr; + } + } + + static inline void update_ctar0(uint32_t ctar) __attribute__((always_inline)) { + if (SPIX.CTAR0 == ctar) return; + uint32_t mcr = SPIX.MCR; + if (mcr & SPI_MCR_MDIS) { + SPIX.CTAR0 = ctar; + } else { + SPIX.MCR = mcr | SPI_MCR_MDIS | SPI_MCR_HALT; + SPIX.CTAR0 = ctar; + + SPIX.MCR = mcr; + } + } + + static inline void update_ctar1(uint32_t ctar) __attribute__((always_inline)) { + if (SPIX.CTAR1 == ctar) return; + uint32_t mcr = SPIX.MCR; + if (mcr & SPI_MCR_MDIS) { + SPIX.CTAR1 = ctar; + } else { + SPIX.MCR = mcr | SPI_MCR_MDIS | SPI_MCR_HALT; + SPIX.CTAR1 = ctar; + SPIX.MCR = mcr; + + } + } + + void setSPIRate() { + // Configure CTAR0, defaulting to 8 bits and CTAR1, defaulting to 16 bits + uint32_t _PBR = 0; + uint32_t _BR = 0; + uint32_t _CSSCK = 0; + uint32_t _DBR = 0; + + // if(_SPI_CLOCK_DIVIDER >= 256) { _PBR = 0; _BR = _CSSCK = 7; _DBR = 0; } // osc/256 + // else if(_SPI_CLOCK_DIVIDER >= 128) { _PBR = 0; _BR = _CSSCK = 6; _DBR = 0; } // osc/128 + // else if(_SPI_CLOCK_DIVIDER >= 64) { _PBR = 0; _BR = _CSSCK = 5; _DBR = 0; } // osc/64 + // else if(_SPI_CLOCK_DIVIDER >= 32) { _PBR = 0; _BR = _CSSCK = 4; _DBR = 0; } // osc/32 + // else if(_SPI_CLOCK_DIVIDER >= 16) { _PBR = 0; _BR = _CSSCK = 3; _DBR = 0; } // osc/16 + // else if(_SPI_CLOCK_DIVIDER >= 8) { _PBR = 0; _BR = _CSSCK = 1; _DBR = 0; } // osc/8 + // else if(_SPI_CLOCK_DIVIDER >= 7) { _PBR = 3; _BR = _CSSCK = 0; _DBR = 1; } // osc/7 + // else if(_SPI_CLOCK_DIVIDER >= 5) { _PBR = 2; _BR = _CSSCK = 0; _DBR = 1; } // osc/5 + // else if(_SPI_CLOCK_DIVIDER >= 4) { _PBR = 0; _BR = _CSSCK = 0; _DBR = 0; } // osc/4 + // else if(_SPI_CLOCK_DIVIDER >= 3) { _PBR = 1; _BR = _CSSCK = 0; _DBR = 1; } // osc/3 + // else { _PBR = 0; _BR = _CSSCK = 0; _DBR = 1; } // osc/2 + + getScalars<_SPI_CLOCK_DIVIDER>(_PBR, _BR, _DBR); + _CSSCK = _BR; + + uint32_t ctar0 = SPI_CTAR_FMSZ(7) | SPI_CTAR_PBR(_PBR) | SPI_CTAR_BR(_BR) | SPI_CTAR_CSSCK(_CSSCK); + uint32_t ctar1 = SPI_CTAR_FMSZ(15) | SPI_CTAR_PBR(_PBR) | SPI_CTAR_BR(_BR) | SPI_CTAR_CSSCK(_CSSCK); + + #if USE_CONT == 1 + ctar0 |= SPI_CTAR_CPHA | SPI_CTAR_CPOL; + ctar1 |= SPI_CTAR_CPHA | SPI_CTAR_CPOL; + #endif + + if(_DBR) { + ctar0 |= SPI_CTAR_DBR; + ctar1 |= SPI_CTAR_DBR; + } + + update_ctars(ctar0,ctar1); + } + + void inline save_spi_state() __attribute__ ((always_inline)) { + // save ctar data + gState._ctar0 = SPIX.CTAR0; + gState._ctar1 = SPIX.CTAR1; + + // save data for the not-us pins + gState.pins[0] = CORE_PIN7_CONFIG; + gState.pins[1] = CORE_PIN11_CONFIG; + gState.pins[2] = CORE_PIN13_CONFIG; + gState.pins[3] = CORE_PIN14_CONFIG; + } + + void inline restore_spi_state() __attribute__ ((always_inline)) { + // restore ctar data + update_ctars(gState._ctar0,gState._ctar1); + + // restore data for the not-us pins (not necessary because disable_pins will do this) + // CORE_PIN7_CONFIG = gState.pins[0]; + // CORE_PIN11_CONFIG = gState.pins[1]; + // CORE_PIN13_CONFIG = gState.pins[2]; + // CORE_PIN14_CONFIG = gState.pins[3]; + } + + +public: + ARMHardwareSPIOutput() { m_pSelect = NULL; } + ARMHardwareSPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + void setSelect(Selectable *pSelect) { m_pSelect = pSelect; } + + + void init() { + // set the pins to output + FastPin<_DATA_PIN>::setOutput(); + FastPin<_CLOCK_PIN>::setOutput(); + + // Enable SPI0 clock + uint32_t sim6 = SIM_SCGC6; + if((SPI_t*)pSPIX == &KINETISK_SPI0) { + if (!(sim6 & SIM_SCGC6_SPI0)) { + //serial_print("init1\n"); + SIM_SCGC6 = sim6 | SIM_SCGC6_SPI0; + SPIX.CTAR0 = SPI_CTAR_FMSZ(7) | SPI_CTAR_PBR(1) | SPI_CTAR_BR(1); + } + } else if((SPI_t*)pSPIX == &SPI1) { + if (!(sim6 & SIM_SCGC6_SPI1)) { + //serial_print("init1\n"); + SIM_SCGC6 = sim6 | SIM_SCGC6_SPI1; + SPIX.CTAR0 = SPI_CTAR_FMSZ(7) | SPI_CTAR_PBR(1) | SPI_CTAR_BR(1); + } + } + + // Configure SPI as the master and enable + SPIX.MCR |= SPI_MCR_MSTR; // | SPI_MCR_CONT_SCKE); + SPIX.MCR &= ~(SPI_MCR_MDIS | SPI_MCR_HALT); + + // pin/spi configuration happens on select + } + + static void waitFully() __attribute__((always_inline)) { + while( (SPIX.SR & 0xF000) > 0); + while (!(SPIX.SR & SPI_SR_TCF)); + SPIX.SR |= (SPI_SR_TCF | SPI_SR_EOQF); + } + + static bool needwait() __attribute__((always_inline)) { return (SPIX.SR & 0x4000); } + static void wait() __attribute__((always_inline)) { while( (SPIX.SR & 0x4000) ); } + static void wait1() __attribute__((always_inline)) { while( (SPIX.SR & 0xF000) >= 0x2000); } + + enum ECont { CONT, NOCONT }; + enum EWait { PRE, POST, NONE }; + enum ELast { NOTLAST, LAST }; + + #if USE_CONT == 1 + #define CM CONT + #else + #define CM NOCONT + #endif + #define WM PRE + + template class Write { + public: + static void writeWord(uint16_t w) __attribute__((always_inline)) { + if(WAIT_STATE == PRE) { wait(); } + SPIX.PUSHR = ((LAST_STATE == LAST) ? SPI_PUSHR_EOQ : 0) | + ((CONT_STATE == CONT) ? SPI_PUSHR_CONT : 0) | + SPI_PUSHR_CTAS(1) | (w & 0xFFFF); + if(WAIT_STATE == POST) { wait(); } + } + + static void writeByte(uint8_t b) __attribute__((always_inline)) { + if(WAIT_STATE == PRE) { wait(); } + SPIX.PUSHR = ((LAST_STATE == LAST) ? SPI_PUSHR_EOQ : 0) | + ((CONT_STATE == CONT) ? SPI_PUSHR_CONT : 0) | + SPI_PUSHR_CTAS(0) | (b & 0xFF); + if(WAIT_STATE == POST) { wait(); } + } + }; + + static void writeWord(uint16_t w) __attribute__((always_inline)) { wait(); SPIX.PUSHR = SPI_PUSHR_CTAS(1) | (w & 0xFFFF); } + static void writeWordNoWait(uint16_t w) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CTAS(1) | (w & 0xFFFF); } + + static void writeByte(uint8_t b) __attribute__((always_inline)) { wait(); SPIX.PUSHR = SPI_PUSHR_CTAS(0) | (b & 0xFF); } + static void writeBytePostWait(uint8_t b) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CTAS(0) | (b & 0xFF); wait(); } + static void writeByteNoWait(uint8_t b) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CTAS(0) | (b & 0xFF); } + + static void writeWordCont(uint16_t w) __attribute__((always_inline)) { wait(); SPIX.PUSHR = SPI_PUSHR_CONT | SPI_PUSHR_CTAS(1) | (w & 0xFFFF); } + static void writeWordContNoWait(uint16_t w) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CONT | SPI_PUSHR_CTAS(1) | (w & 0xFFFF); } + + static void writeByteCont(uint8_t b) __attribute__((always_inline)) { wait(); SPIX.PUSHR = SPI_PUSHR_CONT | SPI_PUSHR_CTAS(0) | (b & 0xFF); } + static void writeByteContPostWait(uint8_t b) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CONT | SPI_PUSHR_CTAS(0) | (b & 0xFF); wait(); } + static void writeByteContNoWait(uint8_t b) __attribute__((always_inline)) { SPIX.PUSHR = SPI_PUSHR_CONT | SPI_PUSHR_CTAS(0) | (b & 0xFF); } + + // not the most efficient mechanism in the world - but should be enough for sm16716 and friends + template inline static void writeBit(uint8_t b) { + uint32_t ctar1_save = SPIX.CTAR1; + + // Clear out the FMSZ bits, reset them for 1 bit transferd for the start bit + uint32_t ctar1 = (ctar1_save & (~SPI_CTAR_FMSZ(15))) | SPI_CTAR_FMSZ(0); + update_ctar1(ctar1); + + writeWord( (b & (1 << BIT)) != 0); + + update_ctar1(ctar1_save); + } + + void inline select() __attribute__((always_inline)) { + save_spi_state(); + if(m_pSelect != NULL) { m_pSelect->select(); } + setSPIRate(); + enable_pins(); + } + + void inline release() __attribute__((always_inline)) { + disable_pins(); + if(m_pSelect != NULL) { m_pSelect->release(); } + restore_spi_state(); + } + + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { Write::writeByte(value); } + } + + void writeBytesValue(uint8_t value, int len) { + select(); + while(len--) { + writeByte(value); + } + waitFully(); + release(); + } + + // Write a block of n uint8_ts out + template void writeBytes(register uint8_t *data, int len) { + uint8_t *end = data + len; + select(); + // could be optimized to write 16bit words out instead of 8bit bytes + while(data != end) { + writeByte(D::adjust(*data++)); + } + D::postBlock(len); + waitFully(); + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + // write a block of uint8_ts out in groups of three. len is the total number of uint8_ts to write out. The template + // parameters indicate how many uint8_ts to skip at the beginning and/or end of each grouping + template void writePixels(PixelController pixels) { + select(); + int len = pixels.mLen; + + // Setup the pixel controller + if((FLAGS & FLAG_START_BIT) == 0) { + //If no start bit stupiditiy, write out as many 16-bit blocks as we can + while(pixels.has(2)) { + // Load and write out the first two bytes + if(WM == NONE) { wait1(); } + Write::writeWord(D::adjust(pixels.loadAndScale0()) << 8 | D::adjust(pixels.loadAndScale1())); + + // Load and write out the next two bytes (step dithering, advance data in between since we + // cross pixels here) + Write::writeWord(D::adjust(pixels.loadAndScale2()) << 8 | D::adjust(pixels.stepAdvanceAndLoadAndScale0())); + + // Load and write out the next two bytes + Write::writeWord(D::adjust(pixels.loadAndScale1()) << 8 | D::adjust(pixels.loadAndScale2())); + pixels.stepDithering(); + pixels.advanceData(); + } + + if(pixels.has(1)) { + if(WM == NONE) { wait1(); } + // write out the rest as alternating 16/8-bit blocks (likely to be just one) + Write::writeWord(D::adjust(pixels.loadAndScale0()) << 8 | D::adjust(pixels.loadAndScale1())); + Write::writeByte(D::adjust(pixels.loadAndScale2())); + } + + D::postBlock(len); + waitFully(); + } else if(FLAGS & FLAG_START_BIT) { + uint32_t ctar1_save = SPIX.CTAR1; + + // Clear out the FMSZ bits, reset them for 9 bits transferd for the start bit + uint32_t ctar1 = (ctar1_save & (~SPI_CTAR_FMSZ(15))) | SPI_CTAR_FMSZ(8); + update_ctar1(ctar1); + + while(pixels.has(1)) { + writeWord( 0x100 | D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + waitFully(); + + // restore ctar1 + update_ctar1(ctar1_save); + } + release(); + } +}; +#endif + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/arm/k20/led_sysdefs_arm_k20.h b/arduino/test/platforms/arm/k20/led_sysdefs_arm_k20.h new file mode 100644 index 0000000..0dcb626 --- /dev/null +++ b/arduino/test/platforms/arm/k20/led_sysdefs_arm_k20.h @@ -0,0 +1,46 @@ +#ifndef __INC_LED_SYSDEFS_ARM_K20_H +#define __INC_LED_SYSDEFS_ARM_K20_H + +#define FASTLED_TEENSY3 +#define FASTLED_ARM + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 1 +#endif + +// Default to allowing interrupts +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 1 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + +#if (F_CPU == 96000000) +#define CLK_DBL 1 +#endif + +// Get some system include files +#include +#include // for cli/se definitions + +// Define the register types +#if defined(ARDUINO) // && ARDUINO < 150 +typedef volatile uint8_t RoReg; /**< Read only 8-bit register (volatile const unsigned int) */ +typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile unsigned int) */ +#endif + +extern volatile uint32_t systick_millis_count; +# define MS_COUNTER systick_millis_count + + +// Default to using PROGMEM, since TEENSY3 provides it +// even though all it does is ignore it. Just being +// conservative here in case TEENSY3 changes. +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 1 +#endif + + +#endif diff --git a/arduino/test/platforms/arm/k20/octows2811_controller.h b/arduino/test/platforms/arm/k20/octows2811_controller.h new file mode 100644 index 0000000..ed74891 --- /dev/null +++ b/arduino/test/platforms/arm/k20/octows2811_controller.h @@ -0,0 +1,96 @@ +#ifndef __INC_OCTOWS2811_CONTROLLER_H +#define __INC_OCTOWS2811_CONTROLLER_H + +#ifdef USE_OCTOWS2811 + +// #include "OctoWS2811.h" + +FASTLED_NAMESPACE_BEGIN + +template +class COctoWS2811Controller : public CLEDController { + OctoWS2811 *pocto; + uint8_t *drawbuffer,*framebuffer; + + void _init(int nLeds) { + if(pocto == NULL) { + drawbuffer = (uint8_t*)malloc(nLeds * 8 * 3); + framebuffer = (uint8_t*)malloc(nLeds * 8 * 3); + + // byte ordering is handled in show by the pixel controller + int config = WS2811_RGB; + if(SLOW) { + config |= WS2811_400kHz; + } + + pocto = new OctoWS2811(nLeds, framebuffer, drawbuffer, config); + + pocto->begin(); + } + } +public: + COctoWS2811Controller() { pocto = NULL; } + + + virtual void init() { /* do nothing yet */ } + + virtual void clearLeds(int nLeds) { + _init(nLeds); + showColor(CRGB(0,0,0),nLeds,CRGB(0,0,0)); + } + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + _init(nLeds); + // Get our pixel values + PixelController pixels(data, nLeds, scale, getDither()); + uint8_t ball[3][8]; + memset(ball[0],pixels.loadAndScale0(),8); + memset(ball[1],pixels.loadAndScale1(),8); + memset(ball[2],pixels.loadAndScale2(),8); + + uint8_t bout[24]; + transpose8x1_MSB(ball[0],bout); + transpose8x1_MSB(ball[1],bout+8); + transpose8x1_MSB(ball[2],bout+16); + + uint8_t *pdata = drawbuffer; + while(nLeds--) { + memcpy(pdata,bout,24); + pdata += 24; + } + + pocto->show(); + } + + typedef union { + uint8_t bytes[8]; + uint32_t raw[2]; + } Lines; + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + _init(nLeds); + MultiPixelController<8,0xFF,RGB_ORDER> pixels(rgbdata,nLeds, scale, getDither() ); + + uint8_t *pData = drawbuffer; + while(nLeds--) { + Lines b; + + for(int i = 0; i < 8; i++) { b.bytes[i] = pixels.loadAndScale0(i); } + transpose8x1_MSB(b.bytes,pData); pData += 8; + for(int i = 0; i < 8; i++) { b.bytes[i] = pixels.loadAndScale1(i); } + transpose8x1_MSB(b.bytes,pData); pData += 8; + for(int i = 0; i < 8; i++) { b.bytes[i] = pixels.loadAndScale2(i); } + transpose8x1_MSB(b.bytes,pData); pData += 8; + pixels.stepDithering(); + pixels.advanceData(); + } + + pocto->show(); + } +}; + +FASTLED_NAMESPACE_END + +#endif + +#endif diff --git a/arduino/test/platforms/arm/k20/smartmatrix_t3.h b/arduino/test/platforms/arm/k20/smartmatrix_t3.h new file mode 100644 index 0000000..06b04f1 --- /dev/null +++ b/arduino/test/platforms/arm/k20/smartmatrix_t3.h @@ -0,0 +1,83 @@ +#ifndef __INC_SMARTMATRIX_T3_H +#define __INC_SMARTMATRIX_T3_H + +#ifdef SmartMatrix_h +#include + +FASTLED_NAMESPACE_BEGIN + +extern SmartMatrix *pSmartMatrix; + +// note - dmx simple must be included before FastSPI for this code to be enabled +class CSmartMatrixController : public CLEDController { + SmartMatrix matrix; + +public: + // initialize the LED controller + virtual void init() { + // Initialize 32x32 LED Matrix + matrix.begin(); + matrix.setBrightness(255); + matrix.setColorCorrection(ccNone); + + // Clear screen + clearLeds(0); + matrix.swapBuffers(); + pSmartMatrix = &matrix; + } + + // clear out/zero out the given number of leds. + virtual void clearLeds(int nLeds) { + const rgb24 black = {0,0,0}; + matrix.fillScreen(black); + matrix.swapBuffers(); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & data, int nLeds,CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); + rgb24 *md = matrix.backBuffer(); + while(nLeds--) { + md->red = pixels.loadAndScale0(); + md->green = pixels.loadAndScale1(); + md->blue = pixels.loadAndScale2(); + md++; + pixels.stepDithering(); + } + matrix.swapBuffers(); + } + + // note that the uint8_ts will be in the order that you want them sent out to the device. + // nLeds is the number of RGB leds being written to + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); +#ifdef SMART_MATRIX_CAN_TRIPLE_BUFFER + rgb24 *md = matrix.getRealBackBuffer(); +#else + rgb24 *md = matrix.backBuffer(); +#endif + while(nLeds--) { + md->red = pixels.loadAndScale0(); + md->green = pixels.loadAndScale1(); + md->blue = pixels.loadAndScale2(); + md++; + pixels.advanceData(); + pixels.stepDithering(); + } + matrix.swapBuffers(); +#ifdef SMART_MATRIX_CAN_TRIPLE_BUFFER + matrix.setBackBuffer((rgb24*)data); +#endif + } + +#ifdef SUPPORT_ARGB + // as above, but every 4th uint8_t is assumed to be alpha channel data, and will be skipped + virtual void show(const struct CARGB *data, int nLeds, CRGB scale) = 0; +#endif +}; + +FASTLED_NAMESPACE_END + +#endif + +#endif diff --git a/arduino/test/platforms/arm/kl26/clockless_arm_kl26.h b/arduino/test/platforms/arm/kl26/clockless_arm_kl26.h new file mode 100644 index 0000000..8c441a8 --- /dev/null +++ b/arduino/test/platforms/arm/kl26/clockless_arm_kl26.h @@ -0,0 +1,89 @@ +#ifndef __INC_CLOCKLESS_ARM_KL26 +#define __INC_CLOCKLESS_ARM_KL26 + +#include "platforms/arm/common/m0clockless.h" +FASTLED_NAMESPACE_BEGIN +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPinBB::port_ptr_t data_ptr_t; + typedef typename FastPinBB::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPinBB::setOutput(); + mPinMask = FastPinBB::mask(); + mPort = FastPinBB::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + showRGBInternal(pixels); + + sei(); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + showRGBInternal(pixels); + + sei(); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + showRGBInternal(pixels); + sei(); + mWait.mark(); + } +#endif + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + struct M0ClocklessData data; + data.d[0] = pixels.d[0]; + data.d[1] = pixels.d[1]; + data.d[2] = pixels.d[2]; + data.s[0] = pixels.mScale[0]; + data.s[1] = pixels.mScale[1]; + data.s[2] = pixels.mScale[2]; + data.e[0] = pixels.e[0]; + data.e[1] = pixels.e[1]; + data.e[2] = pixels.e[2]; + data.adj = pixels.mAdvance; + + typename FastPin::port_ptr_t portBase = FastPin::port(); + showLedData<4,8,T1,T2,T3,RGB_ORDER, WAIT_TIME>(portBase, FastPin::mask(), pixels.mData, pixels.mLen, &data); + return 0; // 0x00FFFFFF - _VAL; + } + + +}; + +FASTLED_NAMESPACE_END + + +#endif // __INC_CLOCKLESS_ARM_D21 diff --git a/arduino/test/platforms/arm/kl26/fastled_arm_kl26.h b/arduino/test/platforms/arm/kl26/fastled_arm_kl26.h new file mode 100644 index 0000000..9a93caa --- /dev/null +++ b/arduino/test/platforms/arm/kl26/fastled_arm_kl26.h @@ -0,0 +1,10 @@ +#ifndef __INC_FASTLED_ARM_KL26_H +#define __INC_FASTLED_ARM_KL26_H + +// Include the k20 headers +#include "fastled_delay.h" +#include "fastpin_arm_kl26.h" +#include "fastspi_arm_kl26.h" +#include "clockless_arm_kl26.h" + +#endif diff --git a/arduino/test/platforms/arm/kl26/fastpin_arm_kl26.h b/arduino/test/platforms/arm/kl26/fastpin_arm_kl26.h new file mode 100644 index 0000000..4c30cd7 --- /dev/null +++ b/arduino/test/platforms/arm/kl26/fastpin_arm_kl26.h @@ -0,0 +1,88 @@ +#ifndef __FASTPIN_ARM_KL26_H +#define __FASTPIN_ARM_KL26_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + + +/// Template definition for teensy LC style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data output, set output, clear output, toggle output, input, and direction +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _PSOR::r() = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _PCOR::r() = _MASK; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { _PDOR::r() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { _PTOR::r() = _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return _PDOR::r() | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _PDOR::r() & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_PDOR::r(); } + inline static port_ptr_t sport() __attribute__ ((always_inline)) { return &_PSOR::r(); } + inline static port_ptr_t cport() __attribute__ ((always_inline)) { return &_PCOR::r(); } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + +// Macros for kl26 pin access/definition +#define GPIO_BITBAND_ADDR(reg, bit) (((uint32_t)&(reg) - 0x40000000) * 32 + (bit) * 4 + 0x42000000) +#define GPIO_BITBAND_PTR(reg, bit) ((uint32_t *)GPIO_BITBAND_ADDR((reg), (bit))) + +#define _R(T) struct __gen_struct_ ## T +#define _RD32(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline reg32_t r() { return T; } \ +template static __attribute__((always_inline)) inline ptr_reg32_t rx() { return GPIO_BITBAND_PTR(T, BIT); } }; +#define _IO32(L) _RD32(FGPIO ## L ## _PDOR); _RD32(FGPIO ## L ## _PSOR); _RD32(FGPIO ## L ## _PCOR); _RD32(GPIO ## L ## _PTOR); _RD32(FGPIO ## L ## _PDIR); _RD32(FGPIO ## L ## _PDDR); + +#define _DEFPIN_ARM(PIN, BIT, L) template<> class FastPin : public _ARMPIN {}; \ +/* template<> class FastPinBB : public _ARMPIN_BITBAND {}; */ + +// Actual pin definitions +#if defined(FASTLED_TEENSYLC) && defined(CORE_TEENSY) + +_IO32(A); _IO32(B); _IO32(C); _IO32(D); _IO32(E); + +#define MAX_PIN 26 +_DEFPIN_ARM(0, 16, B); _DEFPIN_ARM(1, 17, B); _DEFPIN_ARM(2, 0, D); _DEFPIN_ARM(3, 1, A); +_DEFPIN_ARM(4, 2, A); _DEFPIN_ARM(5, 7, D); _DEFPIN_ARM(6, 4, D); _DEFPIN_ARM(7, 2, D); +_DEFPIN_ARM(8, 3, D); _DEFPIN_ARM(9, 3, C); _DEFPIN_ARM(10, 4, C); _DEFPIN_ARM(11, 6, C); +_DEFPIN_ARM(12, 7, C); _DEFPIN_ARM(13, 5, C); _DEFPIN_ARM(14, 1, D); _DEFPIN_ARM(15, 0, C); +_DEFPIN_ARM(16, 0, B); _DEFPIN_ARM(17, 1, B); _DEFPIN_ARM(18, 3, B); _DEFPIN_ARM(19, 2, B); +_DEFPIN_ARM(20, 5, D); _DEFPIN_ARM(21, 6, D); _DEFPIN_ARM(22, 1, C); _DEFPIN_ARM(23, 2, C); +_DEFPIN_ARM(24, 20, E); _DEFPIN_ARM(25, 21, E); _DEFPIN_ARM(26, 30, E); + +#define SPI_DATA 11 +#define SPI_CLOCK 13 +// #define SPI1 (*(SPI_t *)0x4002D000) + +#define SPI2_DATA 0 +#define SPI2_CLOCK 20 + +#define HAS_HARDWARE_PIN_SUPPORT +#endif + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + +#endif // __INC_FASTPIN_ARM_K20 diff --git a/arduino/test/platforms/arm/kl26/fastspi_arm_kl26.h b/arduino/test/platforms/arm/kl26/fastspi_arm_kl26.h new file mode 100644 index 0000000..869b605 --- /dev/null +++ b/arduino/test/platforms/arm/kl26/fastspi_arm_kl26.h @@ -0,0 +1,252 @@ +#ifndef __INC_FASTSPI_ARM_KL26_H +#define __INC_FASTSPI_ARM_KL26_h + +FASTLED_NAMESPACE_BEGIN + +template void getScalars(uint8_t & sppr, uint8_t & spr) { + if(VAL > 4096) { sppr=7; spr=8; } + else if(VAL > 3584) { sppr=6; spr=8; } + else if(VAL > 3072) { sppr=5; spr=8; } + else if(VAL > 2560) { sppr=4; spr=8; } + else if(VAL > 2048) { sppr=7; spr=7; } + else if(VAL > 2048) { sppr=3; spr=8; } + else if(VAL > 1792) { sppr=6; spr=7; } + else if(VAL > 1536) { sppr=5; spr=7; } + else if(VAL > 1536) { sppr=2; spr=8; } + else if(VAL > 1280) { sppr=4; spr=7; } + else if(VAL > 1024) { sppr=7; spr=6; } + else if(VAL > 1024) { sppr=3; spr=7; } + else if(VAL > 1024) { sppr=1; spr=8; } + else if(VAL > 896) { sppr=6; spr=6; } + else if(VAL > 768) { sppr=5; spr=6; } + else if(VAL > 768) { sppr=2; spr=7; } + else if(VAL > 640) { sppr=4; spr=6; } + else if(VAL > 512) { sppr=7; spr=5; } + else if(VAL > 512) { sppr=3; spr=6; } + else if(VAL > 512) { sppr=1; spr=7; } + else if(VAL > 512) { sppr=0; spr=8; } + else if(VAL > 448) { sppr=6; spr=5; } + else if(VAL > 384) { sppr=5; spr=5; } + else if(VAL > 384) { sppr=2; spr=6; } + else if(VAL > 320) { sppr=4; spr=5; } + else if(VAL > 256) { sppr=7; spr=4; } + else if(VAL > 256) { sppr=3; spr=5; } + else if(VAL > 256) { sppr=1; spr=6; } + else if(VAL > 256) { sppr=0; spr=7; } + else if(VAL > 224) { sppr=6; spr=4; } + else if(VAL > 192) { sppr=5; spr=4; } + else if(VAL > 192) { sppr=2; spr=5; } + else if(VAL > 160) { sppr=4; spr=4; } + else if(VAL > 128) { sppr=7; spr=3; } + else if(VAL > 128) { sppr=3; spr=4; } + else if(VAL > 128) { sppr=1; spr=5; } + else if(VAL > 128) { sppr=0; spr=6; } + else if(VAL > 112) { sppr=6; spr=3; } + else if(VAL > 96) { sppr=5; spr=3; } + else if(VAL > 96) { sppr=2; spr=4; } + else if(VAL > 80) { sppr=4; spr=3; } + else if(VAL > 64) { sppr=7; spr=2; } + else if(VAL > 64) { sppr=3; spr=3; } + else if(VAL > 64) { sppr=1; spr=4; } + else if(VAL > 64) { sppr=0; spr=5; } + else if(VAL > 56) { sppr=6; spr=2; } + else if(VAL > 48) { sppr=5; spr=2; } + else if(VAL > 48) { sppr=2; spr=3; } + else if(VAL > 40) { sppr=4; spr=2; } + else if(VAL > 32) { sppr=7; spr=1; } + else if(VAL > 32) { sppr=3; spr=2; } + else if(VAL > 32) { sppr=1; spr=3; } + else if(VAL > 32) { sppr=0; spr=4; } + else if(VAL > 28) { sppr=6; spr=1; } + else if(VAL > 24) { sppr=5; spr=1; } + else if(VAL > 24) { sppr=2; spr=2; } + else if(VAL > 20) { sppr=4; spr=1; } + else if(VAL > 16) { sppr=7; spr=0; } + else if(VAL > 16) { sppr=3; spr=1; } + else if(VAL > 16) { sppr=1; spr=2; } + else if(VAL > 16) { sppr=0; spr=3; } + else if(VAL > 14) { sppr=6; spr=0; } + else if(VAL > 12) { sppr=5; spr=0; } + else if(VAL > 12) { sppr=2; spr=1; } + else if(VAL > 10) { sppr=4; spr=0; } + else if(VAL > 8) { sppr=3; spr=0; } + else if(VAL > 8) { sppr=1; spr=1; } + else if(VAL > 8) { sppr=0; spr=2; } + else if(VAL > 6) { sppr=2; spr=0; } + else if(VAL > 4) { sppr=1; spr=0; } + else if(VAL > 4) { sppr=0; spr=1; } + else /* if(VAL > 2) */ { sppr=0; spr=0; } +} + + +#define SPIX (*(KINETISL_SPI_t*)pSPIX) +#define ARM_HARDWARE_SPI + +template +class ARMHardwareSPIOutput { + Selectable *m_pSelect; + + static inline void enable_pins(void) __attribute__((always_inline)) { + switch(_DATA_PIN) { + case 0: CORE_PIN0_CONFIG = PORT_PCR_MUX(2); break; + case 1: CORE_PIN1_CONFIG = PORT_PCR_MUX(5); break; + case 7: CORE_PIN7_CONFIG = PORT_PCR_MUX(2); break; + case 8: CORE_PIN8_CONFIG = PORT_PCR_MUX(5); break; + case 11: CORE_PIN11_CONFIG = PORT_PCR_MUX(2); break; + case 12: CORE_PIN12_CONFIG = PORT_PCR_MUX(5); break; + case 21: CORE_PIN21_CONFIG = PORT_PCR_MUX(2); break; + } + + switch(_CLOCK_PIN) { + case 13: CORE_PIN13_CONFIG = PORT_PCR_MUX(2); break; + case 14: CORE_PIN14_CONFIG = PORT_PCR_MUX(2); break; + case 20: CORE_PIN20_CONFIG = PORT_PCR_MUX(2); break; + } + } + + static inline void disable_pins(void) __attribute((always_inline)) { + switch(_DATA_PIN) { + case 0: CORE_PIN0_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 1: CORE_PIN1_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 7: CORE_PIN7_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 8: CORE_PIN8_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 11: CORE_PIN11_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 12: CORE_PIN12_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 21: CORE_PIN21_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + } + + switch(_CLOCK_PIN) { + case 13: CORE_PIN13_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 14: CORE_PIN14_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + case 20: CORE_PIN20_CONFIG = PORT_PCR_SRE | PORT_PCR_MUX(1); break; + } + } + + void setSPIRate() { + uint8_t sppr, spr; + getScalars<_SPI_CLOCK_DIVIDER>(sppr, spr); + + // Set the speed + SPIX.BR = SPI_BR_SPPR(sppr) | SPI_BR_SPR(spr); + + // Also, force 8 bit transfers (don't want to juggle 8/16 since that flushes the world) + SPIX.C2 = 0; + SPIX.C1 |= SPI_C1_SPE; + } + +public: + ARMHardwareSPIOutput() { m_pSelect = NULL; } + ARMHardwareSPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + + // set the object representing the selectable + void setSelect(Selectable *pSelect) { m_pSelect = pSelect; } + + // initialize the SPI subssytem + void init() { + FastPin<_DATA_PIN>::setOutput(); + FastPin<_CLOCK_PIN>::setOutput(); + + // Enable the SPI clocks + uint32_t sim4 = SIM_SCGC4; + if ((pSPIX == 0x40076000) && !(sim4 & SIM_SCGC4_SPI0)) { + SIM_SCGC4 = sim4 | SIM_SCGC4_SPI0; + } + + if ( (pSPIX == 0x40077000) && !(sim4 & SIM_SCGC4_SPI1)) { + SIM_SCGC4 = sim4 | SIM_SCGC4_SPI1; + } + + SPIX.C1 = SPI_C1_MSTR | SPI_C1_SPE; + SPIX.C2 = 0; + SPIX.BR = SPI_BR_SPPR(1) | SPI_BR_SPR(0); + } + + // latch the CS select + void inline select() __attribute__((always_inline)) { + if(m_pSelect != NULL) { m_pSelect->select(); } + setSPIRate(); + enable_pins(); + } + + + // release the CS select + void inline release() __attribute__((always_inline)) { + disable_pins(); + if(m_pSelect != NULL) { m_pSelect->release(); } + } + + // Wait for the world to be clear + static void wait() __attribute__((always_inline)) { while(!(SPIX.S & SPI_S_SPTEF)); } + + // wait until all queued up data has been written + void waitFully() { wait(); } + + // not the most efficient mechanism in the world - but should be enough for sm16716 and friends + template inline static void writeBit(uint8_t b) { /* TODO */ } + + // write a byte out via SPI (returns immediately on writing register) + static void writeByte(uint8_t b) __attribute__((always_inline)) { wait(); SPIX.DL = b; } + // write a word out via SPI (returns immediately on writing register) + static void writeWord(uint16_t w) __attribute__((always_inline)) { writeByte(w>>8); writeByte(w & 0xFF); } + + // A raw set of writing byte values, assumes setup/init/waiting done elsewhere (static for use by adjustment classes) + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { writeByte(value); } + } + + // A full cycle of writing a value for len bytes, including select, release, and waiting + void writeBytesValue(uint8_t value, int len) { + setSPIRate(); + select(); + while(len--) { + writeByte(value); + } + waitFully(); + release(); + } + + // A full cycle of writing a raw block of data out, including select, release, and waiting + template void writeBytes(register uint8_t *data, int len) { + setSPIRate(); + uint8_t *end = data + len; + select(); + // could be optimized to write 16bit words out instead of 8bit bytes + while(data != end) { + writeByte(D::adjust(*data++)); + } + D::postBlock(len); + waitFully(); + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + + template void writePixels(PixelController pixels) { + int len = pixels.mLen; + + select(); + while(pixels.has(1)) { + if(FLAGS & FLAG_START_BIT) { + writeBit<0>(1); + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + } else { + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + } + + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + release(); + } + +}; + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/arm/kl26/led_sysdefs_arm_kl26.h b/arduino/test/platforms/arm/kl26/led_sysdefs_arm_kl26.h new file mode 100644 index 0000000..5dca7f1 --- /dev/null +++ b/arduino/test/platforms/arm/kl26/led_sysdefs_arm_kl26.h @@ -0,0 +1,45 @@ +#ifndef __INC_LED_SYSDEFS_ARM_KL26_H +#define __INC_LED_SYSDEFS_ARM_KL26_H + +#define FASTLED_TEENSYLC +#define FASTLED_ARM +#define FASTLED_ARM_M0_PLUS + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 1 +#endif + +// Default to allowing interrupts +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 1 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + +#if (F_CPU == 96000000) +#define CLK_DBL 1 +#endif + +// Get some system include files +#include +#include // for cli/se definitions + +// Define the register types +#if defined(ARDUINO) // && ARDUINO < 150 +typedef volatile uint8_t RoReg; /**< Read only 8-bit register (volatile const unsigned int) */ +typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile unsigned int) */ +#endif + +extern volatile uint32_t systick_millis_count; +# define MS_COUNTER systick_millis_count + +// Default to using PROGMEM since TEENSYLC provides it +// even though all it does is ignore it. Just being +// conservative here in case TEENSYLC changes. +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 1 +#endif + +#endif diff --git a/arduino/test/platforms/arm/nrf51/clockless_arm_nrf51.h b/arduino/test/platforms/arm/nrf51/clockless_arm_nrf51.h new file mode 100644 index 0000000..98408ad --- /dev/null +++ b/arduino/test/platforms/arm/nrf51/clockless_arm_nrf51.h @@ -0,0 +1,117 @@ +#ifndef __INC_CLOCKLESS_ARM_NRF51 +#define __INC_CLOCKLESS_ARM_NRF51 + +#if defined(NRF51) + +#include "nrf51_bitfields.h" +#define FASTLED_HAS_CLOCKLESS 1 + +#if (FASTLED_ALLOW_INTERRUPTS==1) +#define SEI_CHK LED_TIMER->CC[0] = (WAIT_TIME * (F_CPU/1000000)); LED_TIMER->TASKS_CLEAR; LED_TIMER->EVENTS_COMPARE[0] = 0; +#define CLI_CHK cli(); if(LED_TIMER->EVENTS_COMPARE[0]) { LED_TIMER->TASKS_STOP = 1; return 0; } +#define INNER_SEI sei(); +#else +#define SEI_CHK +#define CLI_CHK +#define INNER_SEI delaycycles<1>(); +#endif + + +#include "platforms/arm/common/m0clockless.h" +template +class ClocklessController : public CLEDController { + typedef typename FastPinBB::port_ptr_t data_ptr_t; + typedef typename FastPinBB::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPinBB::setOutput(); + mPinMask = FastPinBB::mask(); + mPort = FastPinBB::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + // attempt to re-show a frame if we exit early because of interrupts. + if(!showRGBInternal(pixels)) { + sei(); delayMicroseconds(WAIT_TIME); cli(); + showRGBInternal(pixels); + } + + sei(); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + + if(!showRGBInternal(pixels)) { + sei(); delayMicroseconds(WAIT_TIME); cli(); + showRGBInternal(pixels); + } + + sei(); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + cli(); + showRGBInternal(pixels); + sei(); + mWait.mark(); + } +#endif + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + struct M0ClocklessData data; + data.d[0] = pixels.d[0]; + data.d[1] = pixels.d[1]; + data.d[2] = pixels.d[2]; + data.s[0] = pixels.mScale[0]; + data.s[1] = pixels.mScale[1]; + data.s[2] = pixels.mScale[2]; + data.e[0] = pixels.e[0]; + data.e[1] = pixels.e[1]; + data.e[2] = pixels.e[2]; + data.adj = pixels.mAdvance; + + typename FastPin::port_ptr_t portBase = FastPin::port(); + + // timer mode w/prescaler of 0 + LED_TIMER->MODE = TIMER_MODE_MODE_Timer; + LED_TIMER->PRESCALER = 0; + LED_TIMER->EVENTS_COMPARE[0] = 0; + LED_TIMER->BITMODE = TIMER_BITMODE_BITMODE_16Bit; + LED_TIMER->SHORTS = TIMER_SHORTS_COMPARE0_CLEAR_Msk; + LED_TIMER->TASKS_START = 1; + + int ret = showLedData<4,8,T1,T2,T3,RGB_ORDER,WAIT_TIME>(portBase, FastPin::mask(), pixels.mData, pixels.mLen, &data); + + LED_TIMER->TASKS_STOP = 1; + return ret; // 0x00FFFFFF - _VAL; + } +}; + + +#endif // NRF51 +#endif // __INC_CLOCKLESS_ARM_NRF51 diff --git a/arduino/test/platforms/arm/nrf51/fastled_arm_nrf51.h b/arduino/test/platforms/arm/nrf51/fastled_arm_nrf51.h new file mode 100644 index 0000000..bfdefc3 --- /dev/null +++ b/arduino/test/platforms/arm/nrf51/fastled_arm_nrf51.h @@ -0,0 +1,11 @@ +#ifndef __INC_FASTLED_ARM_NRF51_H +#define __INC_FASTLED_ARM_NRF51_H + +// Include the k20 headers +#include "bitswap.h" +#include "fastled_delay.h" +#include "fastpin_arm_nrf51.h" +#include "fastspi_arm_nrf51.h" +#include "clockless_arm_nrf51.h" + +#endif diff --git a/arduino/test/platforms/arm/nrf51/fastpin_arm_nrf51.h b/arduino/test/platforms/arm/nrf51/fastpin_arm_nrf51.h new file mode 100644 index 0000000..4125f9a --- /dev/null +++ b/arduino/test/platforms/arm/nrf51/fastpin_arm_nrf51.h @@ -0,0 +1,119 @@ +#ifndef __FASTPIN_ARM_NRF51_H +#define __FASTPIN_ARM_NRF51_H + +#if defined(NRF51) +/// Template definition for teensy 3.0 style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data output, set output, clear output, toggle output, input, and direction +#if 0 +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { _DIRSET::r() = _MASK; } + inline static void setInput() { _DIRCLR::r() = _MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _OUTSET::r() = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _OUTCLR::r() = _MASK; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { _OUT::r() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { _OUT::r() ^= _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return _OUT::r() | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _OUT::r() & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_OUT::r(); } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + +#define ADDR(X) *(volatile uint32_t*)X +#define NR_GPIO_ADDR(base,offset) (*(volatile uint32_t *))((uint32_t)(base + offset)) +#define NR_DIRSET ADDR(0x50000518UL) // NR_GPIO_ADDR(NRF_GPIO_BASE, 0x518) +#define NR_DIRCLR ADDR(0x5000051CUL) // NR_GPIO_ADDR(NRF_GPIO_BASE, 0x51C) +#define NR_OUTSET ADDR(0x50000508UL) // NR_GPIO_ADDR(NRF_GPIO_BASE, 0x508) +#define NR_OUTCLR ADDR(0x5000050CUL) // NR_GPIO_ADDR(NRF_GPIO_BASE, 0x50C) +#define NR_OUT ADDR(0x50000504UL) // NR_GPIO_ADDR(NRF_GPIO_BASE, 0x504) + +#define _RD32_NRF(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline reg32_t r() { return T; }}; + +_RD32_NRF(NR_DIRSET); +_RD32_NRF(NR_DIRCLR); +_RD32_NRF(NR_OUTSET); +_RD32_NRF(NR_OUTCLR); +_RD32_NRF(NR_OUT); + +#define _DEFPIN_ARM(PIN) template<> class FastPin : public _ARMPIN {}; +#else + +typedef struct { /*!< GPIO Structure */ + // __I uint32_t RESERVED0[321]; + __IO uint32_t OUT; /*!< Write GPIO port. */ + __IO uint32_t OUTSET; /*!< Set individual bits in GPIO port. */ + __IO uint32_t OUTCLR; /*!< Clear individual bits in GPIO port. */ + __I uint32_t IN; /*!< Read GPIO port. */ + __IO uint32_t DIR; /*!< Direction of GPIO pins. */ + __IO uint32_t DIRSET; /*!< DIR set register. */ + __IO uint32_t DIRCLR; /*!< DIR clear register. */ + __I uint32_t RESERVED1[120]; + __IO uint32_t PIN_CNF[32]; /*!< Configuration of GPIO pins. */ +} FL_NRF_GPIO_Type; + +#define FL_NRF_GPIO_BASE 0x50000504UL +#define FL_NRF_GPIO ((FL_NRF_GPIO_Type *) FL_NRF_GPIO_BASE) + +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { FL_NRF_GPIO->DIRSET = _MASK; } + inline static void setInput() { FL_NRF_GPIO->DIRCLR = _MASK; } + + inline static void hi() __attribute__ ((always_inline)) { FL_NRF_GPIO->OUTSET = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { FL_NRF_GPIO->OUTCLR= _MASK; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { FL_NRF_GPIO->OUT = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { FL_NRF_GPIO->OUT ^= _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return FL_NRF_GPIO->OUT | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return FL_NRF_GPIO->OUT & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &FL_NRF_GPIO->OUT; } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } + + inline static bool isset() __attribute__ ((always_inline)) { return (FL_NRF_GPIO->IN & _MASK) != 0; } +}; + + +#define _DEFPIN_ARM(PIN) template<> class FastPin : public _ARMPIN {}; +#endif + +// Actual pin definitions +#define MAX_PIN 31 +_DEFPIN_ARM(0); _DEFPIN_ARM(1); _DEFPIN_ARM(2); _DEFPIN_ARM(3); +_DEFPIN_ARM(4); _DEFPIN_ARM(5); _DEFPIN_ARM(6); _DEFPIN_ARM(7); +_DEFPIN_ARM(8); _DEFPIN_ARM(9); _DEFPIN_ARM(10); _DEFPIN_ARM(11); +_DEFPIN_ARM(12); _DEFPIN_ARM(13); _DEFPIN_ARM(14); _DEFPIN_ARM(15); +_DEFPIN_ARM(16); _DEFPIN_ARM(17); _DEFPIN_ARM(18); _DEFPIN_ARM(19); +_DEFPIN_ARM(20); _DEFPIN_ARM(21); _DEFPIN_ARM(22); _DEFPIN_ARM(23); +_DEFPIN_ARM(24); _DEFPIN_ARM(25); _DEFPIN_ARM(26); _DEFPIN_ARM(27); +_DEFPIN_ARM(28); _DEFPIN_ARM(29); _DEFPIN_ARM(30); _DEFPIN_ARM(31); + +#define HAS_HARDWARE_PIN_SUPPORT + +#endif + +#endif diff --git a/arduino/test/platforms/arm/nrf51/fastspi_arm_nrf51.h b/arduino/test/platforms/arm/nrf51/fastspi_arm_nrf51.h new file mode 100644 index 0000000..da166db --- /dev/null +++ b/arduino/test/platforms/arm/nrf51/fastspi_arm_nrf51.h @@ -0,0 +1,146 @@ +#ifndef __INC_FASTSPI_NRF_H +#define __INC_FASTSPI_NRF_H + +#ifdef NRF51 + +// A nop/stub class, mostly to show the SPI methods that are needed/used by the various SPI chipset implementations. Should +// be used as a definition for the set of methods that the spi implementation classes should use (since C++ doesn't support the +// idea of interfaces - it's possible this could be done with virtual classes, need to decide if i want that overhead) +template +class NRF51SPIOutput { + + struct saveData { + uint32_t sck; + uint32_t mosi; + uint32_t miso; + uint32_t freq; + uint32_t enable; + } mSavedData; + + void saveSPIData() { + mSavedData.sck = NRF_SPI0->PSELSCK; + mSavedData.mosi = NRF_SPI0->PSELMOSI; + mSavedData.miso = NRF_SPI0->PSELMISO; + mSavedData.freq = NRF_SPI0->FREQUENCY; + mSavedData.enable = NRF_SPI0->ENABLE; + } + + void restoreSPIData() { + NRF_SPI0->PSELSCK = mSavedData.sck; + NRF_SPI0->PSELMOSI = mSavedData.mosi; + NRF_SPI0->PSELMISO = mSavedData.miso; + NRF_SPI0->FREQUENCY = mSavedData.freq; + mSavedData.enable = NRF_SPI0->ENABLE; + } + +public: + NRF51SPIOutput() { FastPin<_DATA_PIN>::setOutput(); FastPin<_CLOCK_PIN>::setOutput(); } + NRF51SPIOutput(Selectable *pSelect) { FastPin<_DATA_PIN>::setOutput(); FastPin<_CLOCK_PIN>::setOutput(); } + + // set the object representing the selectable + void setSelect(Selectable *pSelect) { /* TODO */ } + + // initialize the SPI subssytem + void init() { + FastPin<_DATA_PIN>::setOutput(); + FastPin<_CLOCK_PIN>::setOutput(); + NRF_SPI0->PSELSCK = _CLOCK_PIN; + NRF_SPI0->PSELMOSI = _DATA_PIN; + NRF_SPI0->PSELMISO = 0xFFFFFFFF; + NRF_SPI0->FREQUENCY = 0x80000000; + NRF_SPI0->ENABLE = 1; + NRF_SPI0->EVENTS_READY = 0; + } + + // latch the CS select + void select() { saveSPIData(); init(); } + + // release the CS select + void release() { restoreSPIData(); } + + static bool shouldWait(bool wait = false) __attribute__((always_inline)) __attribute__((always_inline)) { + static bool sWait=false; + return false; // if(sWait) { sWait = wait; return true; } else { sWait = wait; return false; } + } + + // wait until all queued up data has been written + void waitFully() __attribute__((always_inline)){ if(shouldWait()) { while(NRF_SPI0->EVENTS_READY==0); } NRF_SPI0->EVENTS_READY=0; uint8_t b = NRF_SPI0->RXD; } + void wait() __attribute__((always_inline)){ if(shouldWait()) { while(NRF_SPI0->EVENTS_READY==0); } NRF_SPI0->EVENTS_READY=0; uint8_t b = NRF_SPI0->RXD; } + // void waitFully() { while(NRF_SPI0->EVENTS_READY==0); NRF_SPI0->EVENTS_READY=0; uint8_t b = NRF_SPI0->RXD; } + // void wait() { while(NRF_SPI0->EVENTS_READY==0); NRF_SPI0->EVENTS_READY=0; uint8_t b = NRF_SPI0->RXD; } + + // write a byte out via SPI (returns immediately on writing register) + // void writeByte(uint8_t b) { wait(); NRF_SPI0->TXD = b; shouldWait(true); } + // void writeByte(uint8_t b) __attribute__((always_inline)){ wait(); NRF_SPI0->TXD = b; shouldWait(true); } + void writeByte(uint8_t b) __attribute__((always_inline)) { NRF_SPI0->EVENTS_READY=0; /*uint8_t x = NRF_SPI0->RXD;*/ NRF_SPI0->TXD = b; } + + // write a word out via SPI (returns immediately on writing register) + void writeWord(uint16_t w) __attribute__((always_inline)){ writeByte(w>>8); writeByte(w & 0xFF); } + + // A raw set of writing byte values, assumes setup/init/waiting done elsewhere (static for use by adjustment classes) + static void writeBytesValueRaw(uint8_t value, int len) { while(len--) { writeByte(value); } } + + // A full cycle of writing a value for len bytes, including select, release, and waiting + void writeBytesValue(uint8_t value, int len) { + select(); + while(len--) { + writeByte(value); + } + waitFully(); + release(); + } + + // A full cycle of writing a raw block of data out, including select, release, and waiting + template void writeBytes(uint8_t *data, int len) { + uint8_t *end = data + len; + select(); + while(data != end) { + writeByte(D::adjust(*data++)); + } + D::postBlock(len); + waitFully(); + release(); + } + + void writeBytes(uint8_t *data, int len) { + writeBytes(data, len); + } + + // write a single bit out, which bit from the passed in byte is determined by template parameter + template inline static void writeBit(uint8_t b) { + waitFully(); + NRF_SPI0->ENABLE = 0; + if(b & 1<::hi(); + } else { + FastPin<_DATA_PIN>::lo(); + } + FastPin<_CLOCK_PIN>::toggle(); + FastPin<_CLOCK_PIN>::toggle(); + NRF_SPI0->ENABLE = 1; + } + + template void writePixels(PixelController pixels) { + select(); + int len = pixels.mLen; + while(pixels.has(1)) { + if(FLAGS & FLAG_START_BIT) { + writeBit<0>(1); + } + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + waitFully(); + release(); + } + +}; + +#endif + +#endif diff --git a/arduino/test/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h b/arduino/test/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h new file mode 100644 index 0000000..8b209ff --- /dev/null +++ b/arduino/test/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h @@ -0,0 +1,44 @@ +#ifndef __LED_SYSDEFS_ARM_NRF51 +#define __LED_SYSDEFS_ARM_NRF51 + +#ifndef NRF51 +#define NRF51 +#endif + +#define LED_TIMER NRF_TIMER1 +#define FASTLED_NO_PINMAP +#define FASTLED_HAS_CLOCKLESS + +#define FASTLED_ARM +#define FASTLED_ARM_M0 + +#ifndef F_CPU +#define F_CPU 16000000 +#endif + +#include +#include "nrf51.h" +#include "core_cm0.h" + +typedef volatile uint32_t RoReg; +typedef volatile uint32_t RwReg; +typedef uint32_t prog_uint32_t; +typedef uint8_t boolean; + +#define PROGMEM +#define NO_PROGMEM +#define NEED_CXX_BITS + +// Default to NOT using PROGMEM here +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 0 +#endif + +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 1 +#endif + +#define cli() __disable_irq(); +#define sei() __enable_irq(); + +#endif diff --git a/arduino/test/platforms/arm/sam/clockless_arm_sam.h b/arduino/test/platforms/arm/sam/clockless_arm_sam.h new file mode 100644 index 0000000..4cbdf27 --- /dev/null +++ b/arduino/test/platforms/arm/sam/clockless_arm_sam.h @@ -0,0 +1,145 @@ +#ifndef __INC_CLOCKLESS_ARM_SAM_H +#define __INC_CLOCKLESS_ARM_SAM_H + +FASTLED_NAMESPACE_BEGIN + +// Definition for a single channel clockless controller for the sam family of arm chips, like that used in the due and rfduino +// See clockless.h for detailed info on how the template parameters are used. + +#if defined(__SAM3X8E__) + + +#define TADJUST 0 +#define TOTAL ( (T1+TADJUST) + (T2+TADJUST) + (T3+TADJUST) ) +#define T1_MARK (TOTAL - (T1+TADJUST)) +#define T2_MARK (T1_MARK - (T2+TADJUST)) + +#define SCALE(S,V) scale8_video(S,V) +// #define SCALE(S,V) scale8(S,V) +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPinBB::port_ptr_t data_ptr_t; + typedef typename FastPinBB::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPinBB::setOutput(); + mPinMask = FastPinBB::mask(); + mPort = FastPinBB::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + +protected: + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + showRGBInternal(pixels); + sei(); + mWait.mark(); + } +#endif + + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register data_ptr_t port, register uint8_t & b) { + // Make sure we don't slot into a wrapping spot, this will delay up to 12.5µs for WS2812 + // bool bShift=0; + // while(VAL < (TOTAL*10)) { bShift=true; } + // if(bShift) { next_mark = (VAL-TOTAL); }; + + for(register uint32_t i = BITS; i > 0; i--) { + // wait to start the bit, then set the pin high + while(DUE_TIMER_VAL < next_mark); + next_mark = (DUE_TIMER_VAL+TOTAL); + *port = 1; + + // how long we want to wait next depends on whether or not our bit is set to 1 or 0 + if(b&0x80) { + // we're a 1, wait until there's less than T3 clocks left + while((next_mark - DUE_TIMER_VAL) > (T3)); + } else { + // we're a 0, wait until there's less than (T2+T3+slop) clocks left in this bit + while((next_mark - DUE_TIMER_VAL) > (T2+T3+6+TADJUST+TADJUST)); + } + *port=0; + b <<= 1; + } + } + +#define FORCE_REFERENCE(var) asm volatile( "" : : "r" (var) ) + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + // Setup and start the clock + TC_Configure(DUE_TIMER,DUE_TIMER_CHANNEL,TC_CMR_TCCLKS_TIMER_CLOCK1); + pmc_enable_periph_clk(DUE_TIMER_ID); + TC_Start(DUE_TIMER,DUE_TIMER_CHANNEL); + + register data_ptr_t port asm("r7") = FastPinBB::port(); FORCE_REFERENCE(port); + *port = 0; + + // Setup the pixel controller and load/scale the first byte + pixels.preStepFirstByteDithering(); + register uint8_t b = pixels.loadAndScale0(); + + uint32_t next_mark = (DUE_TIMER_VAL + (TOTAL)); + while(pixels.has(1)) { + pixels.stepDithering(); + + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + if(DUE_TIMER_VAL > next_mark) { + if((DUE_TIMER_VAL - next_mark) > ((WAIT_TIME-INTERRUPT_THRESHOLD)*CLKS_PER_US)) { sei(); TC_Stop(DUE_TIMER,DUE_TIMER_CHANNEL); return DUE_TIMER_VAL; } + } + #endif + + writeBits<8+XTRA0>(next_mark, port, b); + + b = pixels.loadAndScale1(); + writeBits<8+XTRA0>(next_mark, port,b); + + b = pixels.loadAndScale2(); + writeBits<8+XTRA0>(next_mark, port,b); + + b = pixels.advanceAndLoadAndScale0(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + }; + + TC_Stop(DUE_TIMER,DUE_TIMER_CHANNEL); + return DUE_TIMER_VAL; + } +}; + +#endif + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/arm/sam/clockless_block_arm_sam.h b/arduino/test/platforms/arm/sam/clockless_block_arm_sam.h new file mode 100644 index 0000000..98e80bb --- /dev/null +++ b/arduino/test/platforms/arm/sam/clockless_block_arm_sam.h @@ -0,0 +1,206 @@ + #ifndef __INC_BLOCK_CLOCKLESS_H +#define __INC_BLOCK_CLOCKLESS_H + +FASTLED_NAMESPACE_BEGIN + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// Base template for clockless controllers. These controllers have 3 control points in their cycle for each bit. The first point +// is where the line is raised hi. The second pointsnt is where the line is dropped low for a zero. The third point is where the +// line is dropped low for a one. T1, T2, and T3 correspond to the timings for those three in clock cycles. +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#if defined(__SAM3X8E__) +#define PORT_MASK (((1< +class InlineBlockClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + if(FIRST_PIN == PORTA_FIRST_PIN) { + switch(LANES) { + case 8: FastPin<31>::setOutput(); + case 7: FastPin<58>::setOutput(); + case 6: FastPin<100>::setOutput(); + case 5: FastPin<59>::setOutput(); + case 4: FastPin<60>::setOutput(); + case 3: FastPin<61>::setOutput(); + case 2: FastPin<68>::setOutput(); + case 1: FastPin<69>::setOutput(); + } + } else if(FIRST_PIN == PORTD_FIRST_PIN) { + switch(LANES) { + case 8: FastPin<11>::setOutput(); + case 7: FastPin<29>::setOutput(); + case 6: FastPin<15>::setOutput(); + case 5: FastPin<14>::setOutput(); + case 4: FastPin<28>::setOutput(); + case 3: FastPin<27>::setOutput(); + case 2: FastPin<26>::setOutput(); + case 1: FastPin<25>::setOutput(); + } + } else if(FIRST_PIN == PORTB_FIRST_PIN) { + switch(LANES) { + case 8: FastPin<97>::setOutput(); + case 7: FastPin<96>::setOutput(); + case 6: FastPin<95>::setOutput(); + case 5: FastPin<94>::setOutput(); + case 4: FastPin<93>::setOutput(); + case 3: FastPin<92>::setOutput(); + case 2: FastPin<91>::setOutput(); + case 1: FastPin<90>::setOutput(); + } + } + mPinMask = FastPin::mask(); + mPort = FastPin::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + showRGBInternal(pixels, nLeds); + sei(); + mWait.mark(); + } + +// #define ADV_RGB +#define ADV_RGB if(maskbit & PORT_MASK) { rgbdata += nLeds; } maskbit <<= 1; + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + MultiPixelController pixels(rgbdata,nLeds, scale, getDither() ); + mWait.wait(); + showRGBInternal(pixels, nLeds); + mWait.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + mWait.wait(); + showRGBInternal(PixelController(rgbdata, nLeds, scale, getDither())); + mWait.mark(); + } +#endif + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register Lines & b, Lines & b3, MultiPixelController &pixels) { // , register uint32_t & b2) { + register Lines b2; + transpose8x1(b.bytes,b2.bytes); + + register uint8_t d = pixels.template getd(pixels); + register uint8_t scale = pixels.template getscale(pixels); + + for(uint32_t i = 0; (i < LANES) && (i<8); i++) { + while(DUE_TIMER_VAL < next_mark); + next_mark = (DUE_TIMER_VAL+TOTAL); + + *FastPin::sport() = PORT_MASK; + + while((next_mark - DUE_TIMER_VAL) > (T2+T3+6)); + *FastPin::cport() = (~b2.bytes[7-i]) & PORT_MASK; + + while((next_mark - (DUE_TIMER_VAL)) > T3); + *FastPin::cport() = PORT_MASK; + + b3.bytes[i] = pixels.template loadAndScale(pixels,i,d,scale); + } + + for(uint32_t i = LANES; i < 8; i++) { + while(DUE_TIMER_VAL > next_mark); + + next_mark = DUE_TIMER_VAL - (TOTAL-3); + *FastPin::sport() = PORT_MASK; + + while((next_mark - DUE_TIMER_VAL) > (T2+T3+6)); + *FastPin::cport() = (~b2.bytes[7-i]) & PORT_MASK; + + while((next_mark - DUE_TIMER_VAL) > T3); + *FastPin::cport() = PORT_MASK; + } + } + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(MultiPixelController &allpixels, int nLeds) { + // Serial.println("Entering show"); + // Setup the pixel controller and load/scale the first byte + Lines b0,b1,b2; + + allpixels.preStepFirstByteDithering(); + for(int i = 0; i < LANES; i++) { + b0.bytes[i] = allpixels.loadAndScale0(i); + } + + // Setup and start the clock + TC_Configure(DUE_TIMER,DUE_TIMER_CHANNEL,TC_CMR_TCCLKS_TIMER_CLOCK1); + pmc_enable_periph_clk(DUE_TIMER_ID); + TC_Start(DUE_TIMER,DUE_TIMER_CHANNEL); + + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + #endif + uint32_t next_mark = (DUE_TIMER_VAL + (TOTAL)); + while(nLeds--) { + allpixels.stepDithering(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + if(DUE_TIMER_VAL > next_mark) { + if((DUE_TIMER_VAL - next_mark) > ((WAIT_TIME-INTERRUPT_THRESHOLD)*CLKS_PER_US)) { + sei(); TC_Stop(DUE_TIMER,DUE_TIMER_CHANNEL); return DUE_TIMER_VAL; + } + } + #endif + + // Write first byte, read next byte + writeBits<8+XTRA0,1>(next_mark, b0, b1, allpixels); + + // Write second byte, read 3rd byte + writeBits<8+XTRA0,2>(next_mark, b1, b2, allpixels); + + allpixels.advanceData(); + // Write third byte + writeBits<8+XTRA0,0>(next_mark, b2, b0, allpixels); + + #if (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + } + + return DUE_TIMER_VAL; + } + + +}; + +#endif + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/arm/sam/fastled_arm_sam.h b/arduino/test/platforms/arm/sam/fastled_arm_sam.h new file mode 100644 index 0000000..fd61c14 --- /dev/null +++ b/arduino/test/platforms/arm/sam/fastled_arm_sam.h @@ -0,0 +1,11 @@ +#ifndef __INC_FASTLED_ARM_SAM_H +#define __INC_FASTLED_ARM_SAM_H + +// Include the sam headers +#include "fastled_delay.h" +#include "fastpin_arm_sam.h" +#include "fastspi_arm_sam.h" +#include "clockless_arm_sam.h" +#include "clockless_block_arm_sam.h" + +#endif diff --git a/arduino/test/platforms/arm/sam/fastpin_arm_sam.h b/arduino/test/platforms/arm/sam/fastpin_arm_sam.h new file mode 100644 index 0000000..2bb7804 --- /dev/null +++ b/arduino/test/platforms/arm/sam/fastpin_arm_sam.h @@ -0,0 +1,137 @@ +#ifndef __INC_FASTPIN_ARM_SAM_H +#define __INC_FASTPIN_ARM_SAM_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + + +/// Template definition for arduino due style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data register, set output register, clear output register, set data direction register +template class _DUEPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _PSOR::r() = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _PCOR::r() = _MASK; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { _PDOR::r() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { _PDOR::r() ^= _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return _PDOR::r() | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _PDOR::r() & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_PDOR::r(); } + inline static port_ptr_t sport() __attribute__ ((always_inline)) { return &_PSOR::r(); } + inline static port_ptr_t cport() __attribute__ ((always_inline)) { return &_PCOR::r(); } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + + +/// Template definition for DUE style ARM pins using bit banding, providing direct access to the various GPIO registers. GCC +/// does a poor job of optimizing around these accesses so they are not being used just yet. +template class _DUEPIN_BITBAND { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = 1; } + inline static void lo() __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = 0; } + inline static void set(register port_t val) __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { *_PDOR::template rx<_BIT>() ^= 1; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return 1; } + inline static port_t loval() __attribute__ ((always_inline)) { return 0; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return _PDOR::template rx<_BIT>(); } + inline static port_t mask() __attribute__ ((always_inline)) { return 1; } +}; + +#define GPIO_BITBAND_ADDR(reg, bit) (((uint32_t)&(reg) - 0x40000000) * 32 + (bit) * 4 + 0x42000000) +#define GPIO_BITBAND_PTR(reg, bit) ((uint32_t *)GPIO_BITBAND_ADDR((reg), (bit))) + +#define _R(T) struct __gen_struct_ ## T +#define _RD32(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline reg32_t r() { return T; } \ + template static __attribute__((always_inline)) inline ptr_reg32_t rx() { return GPIO_BITBAND_PTR(T, BIT); } }; +#define DUE_IO32(L) _RD32(REG_PIO ## L ## _ODSR); _RD32(REG_PIO ## L ## _SODR); _RD32(REG_PIO ## L ## _CODR); _RD32(REG_PIO ## L ## _OER); + +#define _DEFPIN_DUE(PIN, BIT, L) template<> class FastPin : public _DUEPIN {}; \ + template<> class FastPinBB : public _DUEPIN_BITBAND {}; + +#if defined(__SAM3X8E__) + +DUE_IO32(A); +DUE_IO32(B); +DUE_IO32(C); +DUE_IO32(D); + +#define MAX_PIN 78 +_DEFPIN_DUE(0, 8, A); _DEFPIN_DUE(1, 9, A); _DEFPIN_DUE(2, 25, B); _DEFPIN_DUE(3, 28, C); +_DEFPIN_DUE(4, 26, C); _DEFPIN_DUE(5, 25, C); _DEFPIN_DUE(6, 24, C); _DEFPIN_DUE(7, 23, C); +_DEFPIN_DUE(8, 22, C); _DEFPIN_DUE(9, 21, C); _DEFPIN_DUE(10, 29, C); _DEFPIN_DUE(11, 7, D); +_DEFPIN_DUE(12, 8, D); _DEFPIN_DUE(13, 27, B); _DEFPIN_DUE(14, 4, D); _DEFPIN_DUE(15, 5, D); +_DEFPIN_DUE(16, 13, A); _DEFPIN_DUE(17, 12, A); _DEFPIN_DUE(18, 11, A); _DEFPIN_DUE(19, 10, A); +_DEFPIN_DUE(20, 12, B); _DEFPIN_DUE(21, 13, B); _DEFPIN_DUE(22, 26, B); _DEFPIN_DUE(23, 14, A); +_DEFPIN_DUE(24, 15, A); _DEFPIN_DUE(25, 0, D); _DEFPIN_DUE(26, 1, D); _DEFPIN_DUE(27, 2, D); +_DEFPIN_DUE(28, 3, D); _DEFPIN_DUE(29, 6, D); _DEFPIN_DUE(30, 9, D); _DEFPIN_DUE(31, 7, A); +_DEFPIN_DUE(32, 10, D); _DEFPIN_DUE(33, 1, C); _DEFPIN_DUE(34, 2, C); _DEFPIN_DUE(35, 3, C); +_DEFPIN_DUE(36, 4, C); _DEFPIN_DUE(37, 5, C); _DEFPIN_DUE(38, 6, C); _DEFPIN_DUE(39, 7, C); +_DEFPIN_DUE(40, 8, C); _DEFPIN_DUE(41, 9, C); _DEFPIN_DUE(42, 19, A); _DEFPIN_DUE(43, 20, A); +_DEFPIN_DUE(44, 19, C); _DEFPIN_DUE(45, 18, C); _DEFPIN_DUE(46, 17, C); _DEFPIN_DUE(47, 16, C); +_DEFPIN_DUE(48, 15, C); _DEFPIN_DUE(49, 14, C); _DEFPIN_DUE(50, 13, C); _DEFPIN_DUE(51, 12, C); +_DEFPIN_DUE(52, 21, B); _DEFPIN_DUE(53, 14, B); _DEFPIN_DUE(54, 16, A); _DEFPIN_DUE(55, 24, A); +_DEFPIN_DUE(56, 23, A); _DEFPIN_DUE(57, 22, A); _DEFPIN_DUE(58, 6, A); _DEFPIN_DUE(59, 4, A); +_DEFPIN_DUE(60, 3, A); _DEFPIN_DUE(61, 2, A); _DEFPIN_DUE(62, 17, B); _DEFPIN_DUE(63, 18, B); +_DEFPIN_DUE(64, 19, B); _DEFPIN_DUE(65, 20, B); _DEFPIN_DUE(66, 15, B); _DEFPIN_DUE(67, 16, B); +_DEFPIN_DUE(68, 1, A); _DEFPIN_DUE(69, 0, A); _DEFPIN_DUE(70, 17, A); _DEFPIN_DUE(71, 18, A); +_DEFPIN_DUE(72, 30, C); _DEFPIN_DUE(73, 21, A); _DEFPIN_DUE(74, 25, A); _DEFPIN_DUE(75, 26, A); +_DEFPIN_DUE(76, 27, A); _DEFPIN_DUE(77, 28, A); _DEFPIN_DUE(78, 23, B); + +// digix pins +_DEFPIN_DUE(90, 0, B); _DEFPIN_DUE(91, 1, B); _DEFPIN_DUE(92, 2, B); _DEFPIN_DUE(93, 3, B); +_DEFPIN_DUE(94, 4, B); _DEFPIN_DUE(95, 5, B); _DEFPIN_DUE(96, 6, B); _DEFPIN_DUE(97, 7, B); +_DEFPIN_DUE(98, 8, B); _DEFPIN_DUE(99, 9, B); _DEFPIN_DUE(100, 5, A); _DEFPIN_DUE(101, 22, B); +_DEFPIN_DUE(102, 23, B); _DEFPIN_DUE(103, 24, B); _DEFPIN_DUE(104, 27, C); _DEFPIN_DUE(105, 20, C); +_DEFPIN_DUE(106, 11, C); _DEFPIN_DUE(107, 10, C); _DEFPIN_DUE(108, 21, A); _DEFPIN_DUE(109, 30, C); +_DEFPIN_DUE(110, 29, B); _DEFPIN_DUE(111, 30, B); _DEFPIN_DUE(112, 31, B); _DEFPIN_DUE(113, 28, B); + +#define SPI_DATA 75 +#define SPI_CLOCK 76 +#define ARM_HARDWARE_SPI +#define HAS_HARDWARE_PIN_SUPPORT + +#endif + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + + +#endif // __INC_FASTPIN_ARM_SAM_H diff --git a/arduino/test/platforms/arm/sam/fastspi_arm_sam.h b/arduino/test/platforms/arm/sam/fastspi_arm_sam.h new file mode 100644 index 0000000..eb9abe4 --- /dev/null +++ b/arduino/test/platforms/arm/sam/fastspi_arm_sam.h @@ -0,0 +1,163 @@ +#ifndef __INC_FASTSPI_ARM_SAM_H +#define __INC_FASTSPI_ARM_SAM_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(__SAM3X8E__) +#define m_SPI ((Spi*)SPI0) + +template +class SAMHardwareSPIOutput { + Selectable *m_pSelect; + + static inline void waitForEmpty() { while ((m_SPI->SPI_SR & SPI_SR_TDRE) == 0); } + + void enableConfig() { m_SPI->SPI_WPMR &= ~SPI_WPMR_WPEN; } + void disableConfig() { m_SPI->SPI_WPMR |= SPI_WPMR_WPEN; } + + void enableSPI() { m_SPI->SPI_CR = SPI_CR_SPIEN; } + void disableSPI() { m_SPI->SPI_CR = SPI_CR_SPIDIS; } + void resetSPI() { m_SPI->SPI_CR = SPI_CR_SWRST; } + + static inline void readyTransferBits(register uint32_t bits) { + bits -= 8; + // don't change the number of transfer bits while data is still being transferred from TDR to the shift register + waitForEmpty(); + m_SPI->SPI_CSR[0] = SPI_CSR_NCPHA | SPI_CSR_CSAAT | (bits << SPI_CSR_BITS_Pos) | SPI_CSR_DLYBCT(1) | SPI_CSR_SCBR(_SPI_CLOCK_DIVIDER); + } + + template static inline void writeBits(uint16_t w) { + waitForEmpty(); + m_SPI->SPI_TDR = (uint32_t)w | SPI_PCS(0); + } + +public: + SAMHardwareSPIOutput() { m_pSelect = NULL; } + SAMHardwareSPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + + // set the object representing the selectable + void setSelect(Selectable *pSelect) { /* TODO */ } + + // initialize the SPI subssytem + void init() { + // m_SPI = SPI0; + + // set the output pins master out, master in, clock. Note doing this here because I still don't + // know how I want to expose this type of functionality in FastPin. + PIO_Configure(PIOA, PIO_PERIPH_A, FastPin<_DATA_PIN>::mask(), PIO_DEFAULT); + PIO_Configure(PIOA, PIO_PERIPH_A, FastPin<_DATA_PIN-1>::mask(), PIO_DEFAULT); + PIO_Configure(PIOA, PIO_PERIPH_A, FastPin<_CLOCK_PIN>::mask(), PIO_DEFAULT); + + release(); + + // Configure the SPI clock, divider between 1-255 + // SCBR = _SPI_CLOCK_DIVIDER + pmc_enable_periph_clk(ID_SPI0); + disableSPI(); + + // reset twice (what the sam code does, not sure why?) + resetSPI(); + resetSPI(); + + // Configure SPI as master, enable + // Bits we want in MR: master, disable mode fault detection, variable peripheral select + m_SPI->SPI_MR = SPI_MR_MSTR | SPI_MR_MODFDIS | SPI_MR_PS; + + enableSPI(); + + // Send everything out in 8 bit chunks, other sizes appear to work, poorly... + readyTransferBits(8); + } + + // latch the CS select + void inline select() __attribute__((always_inline)) { if(m_pSelect != NULL) { m_pSelect->select(); } } + + // release the CS select + void inline release() __attribute__((always_inline)) { if(m_pSelect != NULL) { m_pSelect->release(); } } + + // wait until all queued up data has been written + void waitFully() { while((m_SPI->SPI_SR & SPI_SR_TXEMPTY) == 0); } + + // write a byte out via SPI (returns immediately on writing register) + static void writeByte(uint8_t b) { + writeBits<8>(b); + } + + // write a word out via SPI (returns immediately on writing register) + static void writeWord(uint16_t w) { + writeBits<16>(w); + } + + // A raw set of writing byte values, assumes setup/init/waiting done elsewhere + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { writeByte(value); } + } + + // A full cycle of writing a value for len bytes, including select, release, and waiting + void writeBytesValue(uint8_t value, int len) { + select(); writeBytesValueRaw(value, len); release(); + } + + template void writeBytes(register uint8_t *data, int len) { + uint8_t *end = data + len; + select(); + // could be optimized to write 16bit words out instead of 8bit bytes + while(data != end) { + writeByte(D::adjust(*data++)); + } + D::postBlock(len); + waitFully(); + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + // write a single bit out, which bit from the passed in byte is determined by template parameter + // not the most efficient mechanism in the world - but should be enough for sm16716 and friends + template inline void writeBit(uint8_t b) { + // need to wait for all exisiting data to go out the door, first + waitFully(); + disableSPI(); + if(b & (1 << BIT)) { + FastPin<_DATA_PIN>::hi(); + } else { + FastPin<_DATA_PIN>::lo(); + } + + FastPin<_CLOCK_PIN>::hi(); + FastPin<_CLOCK_PIN>::lo(); + enableSPI(); + } + + // write a block of uint8_ts out in groups of three. len is the total number of uint8_ts to write out. The template + // parameters indicate how many uint8_ts to skip at the beginning and/or end of each grouping + template void writePixels(PixelController pixels) { + select(); + int len = pixels.mLen; + + if(FLAGS & FLAG_START_BIT) { + while(pixels.has(1)) { + writeBits<9>((1<<8) | D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + pixels.advanceData(); + pixels.stepDithering(); + } + } else { + while(pixels.has(1)) { + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + pixels.advanceData(); + pixels.stepDithering(); + } + } + D::postBlock(len); + release(); + } +}; + +#endif + +FASTLED_NAMESPACE_END +#endif diff --git a/arduino/test/platforms/arm/sam/led_sysdefs_arm_sam.h b/arduino/test/platforms/arm/sam/led_sysdefs_arm_sam.h new file mode 100644 index 0000000..a482864 --- /dev/null +++ b/arduino/test/platforms/arm/sam/led_sysdefs_arm_sam.h @@ -0,0 +1,39 @@ +#ifndef __INC_LED_SYSDEFS_ARM_SAM_H +#define __INC_LED_SYSDEFS_ARM_SAM_H + + +#define FASTLED_ARM + +// Setup DUE timer defines/channels/etc... +#ifndef DUE_TIMER_CHANNEL +#define DUE_TIMER_GROUP 0 +#endif + +#ifndef DUE_TIMER_CHANNEL +#define DUE_TIMER_CHANNEL 0 +#endif + +#define DUE_TIMER ((DUE_TIMER_GROUP==0) ? TC0 : ((DUE_TIMER_GROUP==1) ? TC1 : TC2)) +#define DUE_TIMER_ID (ID_TC0 + (DUE_TIMER_GROUP*3) + DUE_TIMER_CHANNEL) +#define DUE_TIMER_VAL (DUE_TIMER->TC_CHANNEL[DUE_TIMER_CHANNEL].TC_CV << 1) +#define DUE_TIMER_RUNNING ((DUE_TIMER->TC_CHANNEL[DUE_TIMER_CHANNEL].TC_SR & TC_SR_CLKSTA) != 0) + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 1 +#endif + +// Default to allowing interrupts +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 1 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + +// reusing/abusing cli/sei defs for due +#define cli() __disable_irq(); __disable_fault_irq(); +#define sei() __enable_irq(); __enable_fault_irq(); + + +#endif diff --git a/arduino/test/platforms/arm/stm32/clockless_arm_stm32.h b/arduino/test/platforms/arm/stm32/clockless_arm_stm32.h new file mode 100644 index 0000000..d427aba --- /dev/null +++ b/arduino/test/platforms/arm/stm32/clockless_arm_stm32.h @@ -0,0 +1,147 @@ +#ifndef __INC_CLOCKLESS_ARM_STM32_H +#define __INC_CLOCKLESS_ARM_STM32_H + +FASTLED_NAMESPACE_BEGIN +// Definition for a single channel clockless controller for the stm32 family of chips, like that used in the spark core +// See clockless.h for detailed info on how the template parameters are used. + +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + data_t mPinMask; + data_ptr_t mPort; + CMinWait mWait; +public: + virtual void init() { + FastPin::setOutput(); + mPinMask = FastPin::mask(); + mPort = FastPin::port(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0, 0, 0), nLeds, 0); + } + +protected: + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + + #ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + PixelController pixels(rgbdata, nLeds, scale, getDither()); + mWait.wait(); + showRGBInternal(pixels); + mWait.mark(); + } + #endif + +#define _CYCCNT (*(volatile uint32_t*)(0xE0001004UL)) + + template __attribute__ ((always_inline)) inline static void writeBits(register uint32_t & next_mark, register data_ptr_t port, register data_t hi, register data_t lo, register uint8_t & b) { + for(register uint32_t i = BITS-1; i > 0; i--) { + while(_CYCCNT < (T1+T2+T3-20)); + FastPin::fastset(port, hi); + _CYCCNT = 4; + if(b&0x80) { + while(_CYCCNT < (T1+T2-20)); + FastPin::fastset(port, lo); + } else { + while(_CYCCNT < (T1-10)); + FastPin::fastset(port, lo); + } + b <<= 1; + } + + while(_CYCCNT < (T1+T2+T3-20)); + FastPin::fastset(port, hi); + _CYCCNT = 4; + + if(b&0x80) { + while(_CYCCNT < (T1+T2-20)); + FastPin::fastset(port, lo); + } else { + while(_CYCCNT < (T1-10)); + FastPin::fastset(port, lo); + } + } + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static uint32_t showRGBInternal(PixelController & pixels) { + // Get access to the clock + CoreDebug->DEMCR |= CoreDebug_DEMCR_TRCENA_Msk; + DWT->CTRL |= DWT_CTRL_CYCCNTENA_Msk; + DWT->CYCCNT = 0; + + register data_ptr_t port = FastPin::port(); + register data_t hi = *port | FastPin::mask();; + register data_t lo = *port & ~FastPin::mask();; + *port = lo; + + // Setup the pixel controller and load/scale the first byte + pixels.preStepFirstByteDithering(); + register uint8_t b = pixels.loadAndScale0(); + + cli(); + + uint32_t next_mark = (T1+T2+T3); + + DWT->CYCCNT = 0; + while(pixels.has(1)) { + pixels.stepDithering(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + cli(); + // if interrupts took longer than 45µs, punt on the current frame + if(DWT->CYCCNT > next_mark) { + if((DWT->CYCCNT-next_mark) > ((WAIT_TIME-INTERRUPT_THRESHOLD)*CLKS_PER_US)) { sei(); return DWT->CYCCNT; } + } + + hi = *port | FastPin::mask(); + lo = *port & ~FastPin::mask(); + #endif + + // Write first byte, read next byte + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.loadAndScale1(); + + // Write second byte, read 3rd byte + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.loadAndScale2(); + + // Write third byte, read 1st byte of next pixel + writeBits<8+XTRA0>(next_mark, port, hi, lo, b); + b = pixels.advanceAndLoadAndScale0(); + #if (FASTLED_ALLOW_INTERRUPTS == 1) + sei(); + #endif + }; + + sei(); + return DWT->CYCCNT; + } +}; + +FASTLED_NAMESPACE_END + + #endif diff --git a/arduino/test/platforms/arm/stm32/fastled_arm_stm32.h b/arduino/test/platforms/arm/stm32/fastled_arm_stm32.h new file mode 100644 index 0000000..e790bfe --- /dev/null +++ b/arduino/test/platforms/arm/stm32/fastled_arm_stm32.h @@ -0,0 +1,10 @@ +#ifndef __INC_FASTLED_ARM_SAM_H +#define __INC_FASTLED_ARM_SAM_H + +// Include the sam headers +#include "fastled_delay.h" +#include "fastpin_arm_stm32.h" +// #include "fastspi_arm_stm32.h" +#include "clockless_arm_stm32.h" + +#endif diff --git a/arduino/test/platforms/arm/stm32/fastpin_arm_stm32.h b/arduino/test/platforms/arm/stm32/fastpin_arm_stm32.h new file mode 100644 index 0000000..63729bb --- /dev/null +++ b/arduino/test/platforms/arm/stm32/fastpin_arm_stm32.h @@ -0,0 +1,105 @@ +#ifndef __FASTPIN_ARM_STM32_H +#define __FASTPIN_ARM_STM32_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + +/// Template definition for STM32 style ARM pins, providing direct access to the various GPIO registers. Note that this +/// uses the full port GPIO registers. In theory, in some way, bit-band register access -should- be faster, however I have found +/// that something about the way gcc does register allocation results in the bit-band code being slower. It will need more fine tuning. +/// The registers are data output, set output, clear output, toggle output, input, and direction + +template class _ARMPIN { +public: + typedef volatile uint32_t * port_ptr_t; + typedef uint32_t port_t; + + #if 0 + inline static void setOutput() { + if(_BIT<8) { + _CRL::r() = (_CRL::r() & (0xF << (_BIT*4)) | (0x1 << (_BIT*4)); + } else { + _CRH::r() = (_CRH::r() & (0xF << ((_BIT-8)*4))) | (0x1 << ((_BIT-8)*4)); + } + } + inline static void setInput() { /* TODO */ } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + #endif + + inline static void setOutput() { pinMode(PIN, OUTPUT); } // TODO: perform MUX config { _PDDR::r() |= _MASK; } + inline static void setInput() { pinMode(PIN, INPUT); } // TODO: preform MUX config { _PDDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _GPIO::r()->BSRR = _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _GPIO::r()->BRR = _MASK; } + // inline static void lo() __attribute__ ((always_inline)) { _GPIO::r()->BSRR = (_MASK<<16); } + inline static void set(register port_t val) __attribute__ ((always_inline)) { _GPIO::r()->ODR = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { if(_GPIO::r()->ODR & _MASK) { lo(); } else { hi(); } } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register port_t val) __attribute__ ((always_inline)) { *port = val; } + + inline static port_t hival() __attribute__ ((always_inline)) { return _GPIO::r()->ODR | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _GPIO::r()->ODR & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_GPIO::r()->ODR; } + inline static port_ptr_t sport() __attribute__ ((always_inline)) { return &_GPIO::r()->BSRR; } + inline static port_ptr_t cport() __attribute__ ((always_inline)) { return &_GPIO::r()->BRR; } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + +#define _R(T) struct __gen_struct_ ## T +#define _RD32(T) struct __gen_struct_ ## T { static __attribute__((always_inline)) inline volatile GPIO_TypeDef * r() { return T; } }; + +#define _IO32(L) _RD32(GPIO ## L) + +#define _DEFPIN_ARM(PIN, BIT, L) template<> class FastPin : public _ARMPIN {}; + +// Actual pin definitions +#if defined(SPARK) + +_IO32(A); _IO32(B); _IO32(C); _IO32(D); _IO32(E); _IO32(F); _IO32(G); + + +#define MAX_PIN 19 +_DEFPIN_ARM(0, 7, B); +_DEFPIN_ARM(1, 6, B); +_DEFPIN_ARM(2, 5, B); +_DEFPIN_ARM(3, 4, B); +_DEFPIN_ARM(4, 3, B); +_DEFPIN_ARM(5, 15, A); +_DEFPIN_ARM(6, 14, A); +_DEFPIN_ARM(7, 13, A); +_DEFPIN_ARM(8, 8, A); +_DEFPIN_ARM(9, 9, A); +_DEFPIN_ARM(10, 0, A); +_DEFPIN_ARM(11, 1, A); +_DEFPIN_ARM(12, 4, A); +_DEFPIN_ARM(13, 5, A); +_DEFPIN_ARM(14, 6, A); +_DEFPIN_ARM(15, 7, A); +_DEFPIN_ARM(16, 0, B); +_DEFPIN_ARM(17, 1, B); +_DEFPIN_ARM(18, 3, A); +_DEFPIN_ARM(19, 2, A); + + +#define SPI_DATA 15 +#define SPI_CLOCK 13 + +#define HAS_HARDWARE_PIN_SUPPORT + +#endif + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + +#endif // __INC_FASTPIN_ARM_STM32 diff --git a/arduino/test/platforms/arm/stm32/led_sysdefs_arm_stm32.h b/arduino/test/platforms/arm/stm32/led_sysdefs_arm_stm32.h new file mode 100644 index 0000000..c15e001 --- /dev/null +++ b/arduino/test/platforms/arm/stm32/led_sysdefs_arm_stm32.h @@ -0,0 +1,47 @@ +#ifndef __INC_LED_SYSDEFS_ARM_SAM_H +#define __INC_LED_SYSDEFS_ARM_SAM_H + +#include "application.h" + +#define FASTLED_NAMESPACE_BEGIN namespace NSFastLED { +#define FASTLED_NAMESPACE_END } +#define FASTLED_USING_NAMESPACE using namespace NSFastLED; + +#define FASTLED_ARM + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 1 +#endif + +// Default to allowing interrupts +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 0 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + +// reusing/abusing cli/sei defs for due +#define cli() __disable_irq(); __disable_fault_irq(); +#define sei() __enable_irq(); __enable_fault_irq(); + +// pgmspace definitions +#define PROGMEM +#define pgm_read_dword(addr) (*(const unsigned long *)(addr)) +#define pgm_read_dword_near(addr) pgm_read_dword(addr) + +// Default to NOT using PROGMEM here +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 0 +#endif + +// data type defs +typedef volatile uint8_t RoReg; /**< Read only 8-bit register (volatile const unsigned int) */ +typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile unsigned int) */ + +#define FASTLED_NO_PINMAP + +#define F_CPU 72000000 + +#endif diff --git a/arduino/test/platforms/avr/clockless_trinket.h b/arduino/test/platforms/avr/clockless_trinket.h new file mode 100644 index 0000000..7ddb064 --- /dev/null +++ b/arduino/test/platforms/avr/clockless_trinket.h @@ -0,0 +1,514 @@ +#ifndef __INC_CLOCKLESS_TRINKET_H +#define __INC_CLOCKLESS_TRINKET_H + +#include "controller.h" +#include "lib8tion.h" +#include // for cli/se definitions + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_AVR) + +// Scaling macro choice +#ifndef TRINKET_SCALE +#define TRINKET_SCALE 1 +// whether or not to use dithering +#define DITHER 1 +#endif + +#if (F_CPU==8000000) +#define FASTLED_SLOW_CLOCK_ADJUST asm __volatile__ ("mov r0,r0\n\t"); +#else +#define FASTLED_SLOW_CLOCK_ADJUST +#endif + +#define US_PER_TICK (64 / (F_CPU/1000000)) + +// Variations on the functions in delay.h - w/a loop var passed in to preserve registers across calls by the optimizer/compiler +template inline void _dc(register uint8_t & loopvar); + +template __attribute__((always_inline)) inline void _dc_AVR(register uint8_t & loopvar) { + _dc(loopvar); + // The convolution in here is to ensure that the state of the carry flag coming into the delay loop is preserved + asm __volatile__ ( "BRCS L_PC%=\n\t" + " LDI %[loopvar], %[_LOOP]\n\tL_%=: DEC %[loopvar]\n\t BRNE L_%=\n\tBREQ L_DONE%=\n\t" + "L_PC%=: LDI %[loopvar], %[_LOOP]\n\tLL_%=: DEC %[loopvar]\n\t BRNE LL_%=\n\tBSET 0\n\t" + "L_DONE%=:\n\t" + : + [loopvar] "+a" (loopvar) : [_LOOP] "M" (_LOOP) : ); +} + +template __attribute__((always_inline)) inline void _dc(register uint8_t & loopvar) { + _dc_AVR(loopvar); +} +template<> __attribute__((always_inline)) inline void _dc<-6>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc<-5>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc<-4>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc<-3>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc<-2>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc<-1>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc< 0>(register uint8_t & loopvar) {} +template<> __attribute__((always_inline)) inline void _dc< 1>(register uint8_t & loopvar) {asm __volatile__("mov r0,r0":::);} +template<> __attribute__((always_inline)) inline void _dc< 2>(register uint8_t & loopvar) {asm __volatile__("rjmp .+0":::);} +template<> __attribute__((always_inline)) inline void _dc< 3>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<1>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc< 4>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<2>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc< 5>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<3>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc< 6>(register uint8_t & loopvar) { _dc<2>(loopvar); _dc<2>(loopvar); _dc<2>(loopvar);} +template<> __attribute__((always_inline)) inline void _dc< 7>(register uint8_t & loopvar) { _dc<4>(loopvar); _dc<3>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc< 8>(register uint8_t & loopvar) { _dc<4>(loopvar); _dc<4>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc< 9>(register uint8_t & loopvar) { _dc<5>(loopvar); _dc<4>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<10>(register uint8_t & loopvar) { _dc<6>(loopvar); _dc<4>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<11>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<1>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<12>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<2>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<13>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<3>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<14>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<4>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<15>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<5>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<16>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<6>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<17>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<7>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<18>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<8>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<19>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<9>(loopvar); } +template<> __attribute__((always_inline)) inline void _dc<20>(register uint8_t & loopvar) { _dc<10>(loopvar); _dc<10>(loopvar); } + +#define DINTPIN(T,ADJ,PINADJ) (T-(PINADJ+ADJ)>0) ? _dc(loopvar) : _dc<0>(loopvar); +#define DINT(T,ADJ) if(AVR_PIN_CYCLES(DATA_PIN)==1) { DINTPIN(T,ADJ,1) } else { DINTPIN(T,ADJ,2); } +#define D1(ADJ) DINT(T1,ADJ) +#define D2(ADJ) DINT(T2,ADJ) +#define D3(ADJ) DINT(T3,ADJ) + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// Base template for clockless controllers. These controllers have 3 control points in their cycle for each bit. The first point +// is where the line is raised hi. The second point is where the line is dropped low for a zero. The third point is where the +// line is dropped low for a one. T1, T2, and T3 correspond to the timings for those three in clock cycles. +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#if (!defined(NO_CORRECTION) || (NO_CORRECTION == 0)) && (FASTLED_ALLOW_INTERRUPTS == 0) +static uint8_t gTimeErrorAccum256ths; +#endif + +#define FASTLED_HAS_CLOCKLESS 1 + +template +class ClocklessController : public CLEDController { + typedef typename FastPin::port_ptr_t data_ptr_t; + typedef typename FastPin::port_t data_t; + + CMinWait mWait; +public: + virtual void init() { + FastPin::setOutput(); + } + + virtual uint16_t getMaxRefreshRate() const { return 400; } + + virtual void clearLeds(int nLeds) { + CRGB zeros(0,0,0); + showAdjTime((uint8_t*)&zeros, nLeds, zeros, false, 0); + } + +protected: + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & rgbdata, int nLeds, CRGB scale) { + showAdjTime((uint8_t*)&rgbdata, nLeds, scale, false, 0); + } + + virtual void show(const struct CRGB *rgbdata, int nLeds, CRGB scale) { + showAdjTime((uint8_t*)rgbdata, nLeds, scale, true, 0); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *rgbdata, int nLeds, CRGB scale) { + showAdjTime((uint8_t*)rgbdata, nLeds, scale, true, 1); + } +#endif + + void showAdjTime(const uint8_t *data, int nLeds, CRGB & scale, bool advance, int skip) { + PixelController pixels(data, nLeds, scale, getDither(), advance, skip); + + mWait.wait(); + cli(); + + showRGBInternal(pixels); + + // Adjust the timer +#if (!defined(NO_CORRECTION) || (NO_CORRECTION == 0)) && (FASTLED_ALLOW_INTERRUPTS == 0) + uint32_t microsTaken = (uint32_t)nLeds * (uint32_t)CLKS_TO_MICROS(24 * (T1 + T2 + T3)); + + // adust for approximate observed actal runtime (as of January 2015) + // roughly 9.6 cycles per pixel, which is 0.6us/pixel at 16MHz + // microsTaken += nLeds * 0.6 * CLKS_TO_MICROS(16); + microsTaken += scale16by8(nLeds,(0.6 * 256) + 1) * CLKS_TO_MICROS(16); + + // if less than 1000us, there is NO timer impact, + // this is because the ONE interrupt that might come in while interrupts + // are disabled is queued up, and it will be serviced as soon as + // interrupts are re-enabled. + // This actually should technically also account for the runtime of the + // interrupt handler itself, but we're just not going to worry about that. + if( microsTaken > 1000) { + + // Since up to one timer tick will be queued, we don't need + // to adjust the MS_COUNTER for that one. + microsTaken -= 1000; + + // Now convert microseconds to 256ths of a second, approximately like this: + // 250ths = (us/4) + // 256ths = 250ths * (263/256); + uint16_t x256ths = microsTaken >> 2; + x256ths += scale16by8(x256ths,7); + + x256ths += gTimeErrorAccum256ths; + MS_COUNTER += (x256ths >> 8); + gTimeErrorAccum256ths = x256ths & 0xFF; + } + +#if 0 + // For pixel counts of 30 and under at 16Mhz, no correction is necessary. + // For pixel counts of 15 and under at 8Mhz, no correction is necessary. + // + // This code, below, is smaller, and quicker clock correction, which drifts much + // more significantly, but is a few bytes smaller. Presented here for consideration + // as an alternate on the ATtiny, which can't have more than about 150 pixels MAX + // anyway, meaning that microsTaken will never be more than about 4,500, which fits in + // a 16-bit variable. The difference between /1000 and /1024 only starts showing + // up in the range of about 100 pixels, so many ATtiny projects won't even + // see a clock difference due to the approximation there. + uint16_t microsTaken = (uint32_t)nLeds * (uint32_t)CLKS_TO_MICROS((24) * (T1 + T2 + T3)); + MS_COUNTER += (microsTaken >> 10); +#endif + +#endif + + sei(); + mWait.mark(); + } +#define USE_ASM_MACROS + +// The variables that our various asm statemetns use. The same block of variables needs to be declared for +// all the asm blocks because GCC is pretty stupid and it would clobber variables happily or optimize code away too aggressively +#define ASM_VARS : /* write variables */ \ + [count] "+x" (count), \ + [data] "+z" (data), \ + [b1] "+a" (b1), \ + [d0] "+r" (d0), \ + [d1] "+r" (d1), \ + [d2] "+r" (d2), \ + [loopvar] "+a" (loopvar), \ + [scale_base] "+a" (scale_base) \ + : /* use variables */ \ + [ADV] "r" (advanceBy), \ + [b0] "a" (b0), \ + [hi] "r" (hi), \ + [lo] "r" (lo), \ + [s0] "r" (s0), \ + [s1] "r" (s1), \ + [s2] "r" (s2), \ + [e0] "r" (e0), \ + [e1] "r" (e1), \ + [e2] "r" (e2), \ + [PORT] "M" (FastPin::port()-0x20), \ + [O0] "M" (RGB_BYTE0(RGB_ORDER)), \ + [O1] "M" (RGB_BYTE1(RGB_ORDER)), \ + [O2] "M" (RGB_BYTE2(RGB_ORDER)) \ + : "cc" /* clobber registers */ + + +// Note: the code in the else in HI1/LO1 will be turned into an sts (2 cycle, 2 word) opcode +// 1 cycle, write hi to the port +#define HI1 FASTLED_SLOW_CLOCK_ADJUST if((int)(FastPin::port())-0x20 < 64) { asm __volatile__("out %[PORT], %[hi]" ASM_VARS ); } else { *FastPin::port()=hi; } +// 1 cycle, write lo to the port +#define LO1 if((int)(FastPin::port())-0x20 < 64) { asm __volatile__("out %[PORT], %[lo]" ASM_VARS ); } else { *FastPin::port()=lo; } + +// 2 cycles, sbrs on flipping the line to lo if we're pushing out a 0 +#define QLO2(B, N) asm __volatile__("sbrs %[" #B "], " #N ASM_VARS ); LO1; +// load a byte from ram into the given var with the given offset +#define LD2(B,O) asm __volatile__("ldd %[" #B "], Z + %[" #O "]\n\t" ASM_VARS ); +// 4 cycles - load a byte from ram into the scaling scratch space with the given offset, clear the target var, clear carry +#define LDSCL4(B,O) asm __volatile__("ldd %[scale_base], Z + %[" #O "]\n\tclr %[" #B "]\n\tclc\n\t" ASM_VARS ); + +#if (DITHER==1) +// apply dithering value before we do anything with scale_base +#define PRESCALE4(D) asm __volatile__("cpse %[scale_base], __zero_reg__\n\t add %[scale_base],%[" #D "]\n\tbrcc L_%=\n\tldi %[scale_base], 0xFF\n\tL_%=:\n\t" ASM_VARS); + +// Do the add for the prescale +#define PRESCALEA2(D) asm __volatile__("cpse %[scale_base], __zero_reg__\n\t add %[scale_base],%[" #D "]\n\t" ASM_VARS); + +// Do the clamp for the prescale, clear carry when we're done - NOTE: Must ensure carry flag state is preserved! +#define PRESCALEB3(D) asm __volatile__("brcc L_%=\n\tldi %[scale_base], 0xFF\n\tL_%=:\n\tCLC" ASM_VARS); + +#else +#define PRESCALE4(D) _dc<4>(loopvar); +#define PRESCALEA2(D) _dc<2>(loopvar); +#define PRESCALEB3(D) _dc<3>(loopvar); +#endif + +// 2 cycles - perform one step of the scaling (if a given bit is set in scale, add scale-base to the scratch space) +#define _SCALE02(B, N) "sbrc %[s0], " #N "\n\tadd %[" #B "], %[scale_base]\n\t" +#define _SCALE12(B, N) "sbrc %[s1], " #N "\n\tadd %[" #B "], %[scale_base]\n\t" +#define _SCALE22(B, N) "sbrc %[s2], " #N "\n\tadd %[" #B "], %[scale_base]\n\t" +#define SCALE02(B,N) asm __volatile__( _SCALE02(B,N) ASM_VARS ); +#define SCALE12(B,N) asm __volatile__( _SCALE12(B,N) ASM_VARS ); +#define SCALE22(B,N) asm __volatile__( _SCALE22(B,N) ASM_VARS ); + +// 1 cycle - rotate right, pulling in from carry +#define _ROR1(B) "ror %[" #B "]\n\t" +#define ROR1(B) asm __volatile__( _ROR1(B) ASM_VARS); + +// 1 cycle, clear the carry bit +#define _CLC1 "clc\n\t" +#define CLC1 asm __volatile__( _CLC1 ASM_VARS ); + +// 2 cycles, rortate right, pulling in from carry then clear the carry bit +#define RORCLC2(B) asm __volatile__( _ROR1(B) _CLC1 ASM_VARS ); + +// 4 cycles, rotate, clear carry, scale next bit +#define RORSC04(B, N) asm __volatile__( _ROR1(B) _CLC1 _SCALE02(B, N) ASM_VARS ); +#define RORSC14(B, N) asm __volatile__( _ROR1(B) _CLC1 _SCALE12(B, N) ASM_VARS ); +#define RORSC24(B, N) asm __volatile__( _ROR1(B) _CLC1 _SCALE22(B, N) ASM_VARS ); + +// 4 cycles, scale bit, rotate, clear carry +#define SCROR04(B, N) asm __volatile__( _SCALE02(B,N) _ROR1(B) _CLC1 ASM_VARS ); +#define SCROR14(B, N) asm __volatile__( _SCALE12(B,N) _ROR1(B) _CLC1 ASM_VARS ); +#define SCROR24(B, N) asm __volatile__( _SCALE22(B,N) _ROR1(B) _CLC1 ASM_VARS ); + +///////////////////////////////////////////////////////////////////////////////////// +// Loop life cycle + +// dither adjustment macro - should be kept in sync w/what's in stepDithering +// #define ADJDITHER2(D, E) D = E - D; +#define ADJDITHER2(D, E) asm __volatile__ ("neg %[" #D "]\n\tadd %[" #D "],%[" #E "]\n\t" ASM_VARS); + +// #define xstr(a) str(a) +// #define str(a) #a +// #define ADJDITHER2(D,E) asm __volatile__("subi %[" #D "], " xstr(DUSE) "\n\tand %[" #D "], %[" #E "]\n\t" ASM_VARS); + +// define the beginning of the loop +#define LOOP asm __volatile__("1:" ASM_VARS ); +// define the end of the loop +#define DONE asm __volatile__("2:" ASM_VARS ); + +// 2 cycles - increment the data pointer +#define IDATA2 asm __volatile__("add %A[data], %[ADV]\n\tadc %B[data], __zero_reg__\n\t" ASM_VARS ); +#define IDATACLC3 asm __volatile__("add %A[data], %[ADV]\n\tadc %B[data], __zero_reg__\n\t" _CLC1 ASM_VARS ); + +// 1 cycle mov +#define MOV1(B1, B2) asm __volatile__("mov %[" #B1 "], %[" #B2 "]" ASM_VARS ); + +// 2 cycles - decrement the counter +#define DCOUNT2 asm __volatile__("sbiw %[count], 1" ASM_VARS ); +// 2 cycles - jump to the beginning of the loop +#define JMPLOOP2 asm __volatile__("rjmp 1b" ASM_VARS ); +// 2 cycles - jump out of the loop +#define BRLOOP1 asm __volatile__("brne 3\n\trjmp 2f\n\t3:" ASM_VARS ); + +// 5 cycles 2 sbiw, 3 for the breq/rjmp +#define ENDLOOP5 asm __volatile__("sbiw %[count], 1\n\tbreq L_%=\n\trjmp 1b\n\tL_%=:\n\t" ASM_VARS); + +// NOP using the variables, forcing a move +#define DNOP asm __volatile__("mov r0,r0" ASM_VARS); + +#define DADVANCE 3 +#define DUSE (0xFF - (DADVANCE-1)) + + // This method is made static to force making register Y available to use for data on AVR - if the method is non-static, then + // gcc will use register Y for the this pointer. + static void /*__attribute__((optimize("O0")))*/ /*__attribute__ ((always_inline))*/ showRGBInternal(PixelController & pixels) { + uint8_t *data = (uint8_t*)pixels.mData; + data_ptr_t port = FastPin::port(); + data_t mask = FastPin::mask(); + uint8_t scale_base = 0; + + // register uint8_t *end = data + nLeds; + data_t hi = *port | mask; + data_t lo = *port & ~mask; + *port = lo; + + // the byte currently being written out + uint8_t b0 = 0; + // the byte currently being worked on to write the next out + uint8_t b1 = 0; + + // Setup the pixel controller + pixels.preStepFirstByteDithering(); + + // pull the dithering/adjustment values out of the pixels object for direct asm access + uint8_t advanceBy = pixels.advanceBy(); + uint16_t count = pixels.mLen; + + uint8_t s0 = pixels.mScale.raw[RO(0)]; + uint8_t s1 = pixels.mScale.raw[RO(1)]; + uint8_t s2 = pixels.mScale.raw[RO(2)]; + uint8_t d0 = pixels.d[RO(0)]; + uint8_t d1 = pixels.d[RO(1)]; + uint8_t d2 = pixels.d[RO(2)]; + uint8_t e0 = pixels.e[RO(0)]; + uint8_t e1 = pixels.e[RO(1)]; + uint8_t e2 = pixels.e[RO(2)]; + + uint8_t loopvar=0; + + // load/scale the first byte +#if !defined(LIB8_ATTINY) + // we have a hardware multiply, can use loadAndScale0 + b0 = pixels.loadAndScale0(); +#else + // no hardware multiply, we have to do our own mul by hand here, lest we incur a + // function call which will kill all of our register usage/allocations below + b0 = data[RO(0)]; + { + LDSCL4(b0,O0) PRESCALEA2(d0) + PRESCALEB3(d0) SCALE02(b0,0) + RORSC04(b0,1) ROR1(b0) CLC1 + SCROR04(b0,2) SCALE02(b0,3) + RORSC04(b0,4) ROR1(b0) CLC1 + SCROR04(b0,5) SCALE02(b0,6) + RORSC04(b0,7) ROR1(b0) CLC1 + } +#endif + + // #if (FASTLED_ALLOW_INTERRUPTS == 1) + // TCCR0A |= 0x30; + // OCR0B = (uint8_t)(TCNT0 + ((WAIT_TIME-INTERRUPT_THRESHOLD)/US_PER_TICK)); + // TIFR0 = 0x04; + // #endif + { + // while(--count) + { + // Loop beginning, does some stuff that's outside of the pixel write cycle, namely incrementing d0-2 and masking off + // by the E values (see the definition ) + DNOP; + LOOP; + + // ADJDITHER2(d0,e0); + // ADJDITHER2(d1,e1); + // ADJDITHER2(d2,e2); + // NOP; + // #if (FASTLED_ALLOW_INTERRUPTS == 1) + // cli(); + // if(TIFR0 & 0x04) { + // sei(); + // TCCR0A &= ~0x30; + // return; + // } + // hi = *port | mask; + // lo = *port & ~mask; + // #endif + + // Sum of the clock counts across each row should be 10 for 8Mhz, WS2811 + // The values in the D1/D2/D3 indicate how many cycles the previous column takes + // to allow things to line back up. + // + // While writing out byte 0, we're loading up byte 1, applying the dithering adjustment, + // then scaling it using 8 cycles of shift/add interleaved in between writing the bits + // out. When doing byte 1, we're doing the above for byte 2. When we're doing byte 2, + // we're cycling back around and doing the above for byte 0. +#if TRINKET_SCALE + // Inline scaling - RGB ordering + // DNOP + HI1 D1(1) QLO2(b0, 7) LDSCL4(b1,O1) D2(4) LO1 PRESCALEA2(d1) D3(2) + HI1 D1(1) QLO2(b0, 6) PRESCALEB3(d1) D2(3) LO1 SCALE12(b1,0) D3(2) + HI1 D1(1) QLO2(b0, 5) RORSC14(b1,1) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 4) SCROR14(b1,2) D2(4) LO1 SCALE12(b1,3) D3(2) + HI1 D1(1) QLO2(b0, 3) RORSC14(b1,4) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 2) SCROR14(b1,5) D2(4) LO1 SCALE12(b1,6) D3(2) + HI1 D1(1) QLO2(b0, 1) RORSC14(b1,7) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 0) + switch(XTRA0) { + case 4: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 3: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 2: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 1: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + } + ADJDITHER2(d1,e1) D2(2) LO1 MOV1(b0,b1) D3(1) + + HI1 D1(1) QLO2(b0, 7) LDSCL4(b1,O2) D2(4) LO1 PRESCALEA2(d2) D3(2) + HI1 D1(1) QLO2(b0, 6) PRESCALEB3(d2) D2(3) LO1 SCALE22(b1,0) D3(2) + HI1 D1(1) QLO2(b0, 5) RORSC24(b1,1) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 4) SCROR24(b1,2) D2(4) LO1 SCALE22(b1,3) D3(2) + HI1 D1(1) QLO2(b0, 3) RORSC24(b1,4) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 2) SCROR24(b1,5) D2(4) LO1 SCALE22(b1,6) D3(2) + HI1 D1(1) QLO2(b0, 1) RORSC24(b1,7) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 0) + switch(XTRA0) { + case 4: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 3: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 2: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 1: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + } + IDATACLC3 MOV1(b0,b1) D2(4) LO1 ADJDITHER2(d2,e2) D3(2) + + HI1 D1(1) QLO2(b0, 7) LDSCL4(b1,O0) D2(4) LO1 PRESCALEA2(d0) D3(2) + HI1 D1(1) QLO2(b0, 6) PRESCALEB3(d0) D2(3) LO1 SCALE02(b1,0) D3(2) + HI1 D1(1) QLO2(b0, 5) RORSC04(b1,1) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 4) SCROR04(b1,2) D2(4) LO1 SCALE02(b1,3) D3(2) + HI1 D1(1) QLO2(b0, 3) RORSC04(b1,4) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 2) SCROR04(b1,5) D2(4) LO1 SCALE02(b1,6) D3(2) + HI1 D1(1) QLO2(b0, 1) RORSC04(b1,7) D2(4) LO1 RORCLC2(b1) D3(2) + HI1 D1(1) QLO2(b0, 0) + switch(XTRA0) { + case 4: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 3: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 2: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + case 1: D2(0) LO1 D3(0) HI1 D1(1) QLO2(b0,0) + } + ADJDITHER2(d0,e0) MOV1(b0,b1) D2(3) LO1 D3(6) + ENDLOOP5 +#else + // no inline scaling - non-straight RGB ordering -- no longer in line with the actual asm macros above, left for + // reference only + HI1 D1(1) QLO2(b0, 7) LD2(b1,O1) D2(2) LO1 D3(0) + HI1 D1(1) QLO2(b0, 6) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 5) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 4) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 3) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 2) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 1) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b0, 0) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 7) LD2(b1,O2) D2(2) LO1 D3(0) + HI1 D1(1) QLO2(b1, 6) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 5) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 4) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 3) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 2) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 1) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 0) IDATA2 D2(2) LO1 D3(0) + HI1 D1(1) QLO2(b1, 7) LD2(b0,O0) D2(2) LO1 D3(0) + HI1 D1(1) QLO2(b1, 6) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 5) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 4) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 3) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 2) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 1) D2(0) LO1 D3(0) + HI1 D1(1) QLO2(b1, 0) D2(0) LO1 D3(0) +#endif + + // #if (FASTLED_ALLOW_INTERRUPTS == 1) + // // set the counter mark + // OCR0B = (uint8_t)(TCNT0 + ((WAIT_TIME-INTERRUPT_THRESHOLD)/US_PER_TICK)); + // TIFR0 = 0x04; + // sei(); + // #endif + } + DONE; + } + + #if (FASTLED_ALLOW_INTERRUPTS == 1) + // stop using the clock juggler + TCCR0A &= ~0x30; + #endif + } + +#ifdef SUPPORT_ARGB + virtual void showARGB(struct CARGB *data, int nLeds) { + // TODO: IMPLEMENTME + } +#endif +}; + +#endif + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/platforms/avr/fastled_avr.h b/arduino/test/platforms/avr/fastled_avr.h new file mode 100644 index 0000000..f5b5ee5 --- /dev/null +++ b/arduino/test/platforms/avr/fastled_avr.h @@ -0,0 +1,14 @@ +#ifndef __INC_FASTLED_AVR_H +#define __INC_FASTLED_AVR_H + +#include "fastled_delay.h" +#include "fastpin_avr.h" +#include "fastspi_avr.h" +#include "clockless_trinket.h" + +// Default to using PROGMEM +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 1 +#endif + +#endif diff --git a/arduino/test/platforms/avr/fastpin_avr.h b/arduino/test/platforms/avr/fastpin_avr.h new file mode 100644 index 0000000..e92f163 --- /dev/null +++ b/arduino/test/platforms/avr/fastpin_avr.h @@ -0,0 +1,280 @@ +#ifndef __INC_FASTPIN_AVR_H +#define __INC_FASTPIN_AVR_H + +FASTLED_NAMESPACE_BEGIN + +#if defined(FASTLED_FORCE_SOFTWARE_PINS) +#warning "Software pin support forced, pin access will be sloightly slower." +#define NO_HARDWARE_PIN_SUPPORT +#undef HAS_HARDWARE_PIN_SUPPORT + +#else + +#define AVR_PIN_CYCLES(_PIN) ((((int)FastPin<_PIN>::port())-0x20 < 64) ? 1 : 2) + +/// Class definition for a Pin where we know the port registers at compile time for said pin. This allows us to make +/// a lot of optimizations, as the inlined hi/lo methods will devolve to a single io register write/bitset. +template class _AVRPIN { +public: + typedef volatile uint8_t * port_ptr_t; + typedef uint8_t port_t; + + inline static void setOutput() { _DDR::r() |= _MASK; } + inline static void setInput() { _DDR::r() &= ~_MASK; } + + inline static void hi() __attribute__ ((always_inline)) { _PORT::r() |= _MASK; } + inline static void lo() __attribute__ ((always_inline)) { _PORT::r() &= ~_MASK; } + inline static void set(register uint8_t val) __attribute__ ((always_inline)) { _PORT::r() = val; } + + inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); } + + inline static void toggle() __attribute__ ((always_inline)) { _PIN::r() = _MASK; } + + inline static void hi(register port_ptr_t port) __attribute__ ((always_inline)) { hi(); } + inline static void lo(register port_ptr_t port) __attribute__ ((always_inline)) { lo(); } + inline static void fastset(register port_ptr_t port, register uint8_t val) __attribute__ ((always_inline)) { set(val); } + + inline static port_t hival() __attribute__ ((always_inline)) { return _PORT::r() | _MASK; } + inline static port_t loval() __attribute__ ((always_inline)) { return _PORT::r() & ~_MASK; } + inline static port_ptr_t port() __attribute__ ((always_inline)) { return &_PORT::r(); } + inline static port_t mask() __attribute__ ((always_inline)) { return _MASK; } +}; + + + +/// AVR definitions for pins. Getting around the fact that I can't pass GPIO register addresses in as template arguments by instead creating +/// a custom type for each GPIO register with a single, static, aggressively inlined function that returns that specific GPIO register. A similar +/// trick is used a bit further below for the ARM GPIO registers (of which there are far more than on AVR!) +typedef volatile uint8_t & reg8_t; +#define _R(T) struct __gen_struct_ ## T +#define _RD8(T) struct __gen_struct_ ## T { static inline reg8_t r() { return T; }}; +#define _IO(L) _RD8(DDR ## L); _RD8(PORT ## L); _RD8(PIN ## L); +#define _DEFPIN_AVR(_PIN, MASK, L) template<> class FastPin<_PIN> : public _AVRPIN<_PIN, MASK, _R(PORT ## L), _R(DDR ## L), _R(PIN ## L)> {}; + +#if defined(__AVR_ATtiny85__) || defined(__AVR_ATtiny45__) +_IO(B); + +#define MAX_PIN 5 + +_DEFPIN_AVR(0, 0x01, B); _DEFPIN_AVR(1, 0x02, B); _DEFPIN_AVR(2, 0x04, B); _DEFPIN_AVR(3, 0x08, B); +_DEFPIN_AVR(4, 0x10, B); _DEFPIN_AVR(5, 0x20, B); + +#define HAS_HARDWARE_PIN_SUPPORT 1 + +#elif defined(ARDUINO_AVR_DIGISPARK) // digispark pin layout +#define MAX_PIN 5 +#define HAS_HARDWARE_PIN_SUPPORT 1 +_IO(A); _IO(B); + +_DEFPIN_AVR(0, 0x01, B); _DEFPIN_AVR(1, 0x02, B); _DEFPIN_AVR(2, 0x04, B); +_DEFPIN_AVR(3, 0x80, A); _DEFPIN_AVR(4, 0x40, A); _DEFPIN_AVR(5, 0x20, A); + +#elif defined(__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny25__) +_IO(A); _IO(B); + +#define MAX_PIN 10 + +_DEFPIN_AVR(0, 0x01, A); _DEFPIN_AVR(1, 0x02, A); _DEFPIN_AVR(2, 0x04, A); _DEFPIN_AVR(3, 0x08, A); +_DEFPIN_AVR(4, 0x10, A); _DEFPIN_AVR(5, 0x20, A); _DEFPIN_AVR(6, 0x40, A); _DEFPIN_AVR(7, 0x80, A); +_DEFPIN_AVR(8, 0x04, B); _DEFPIN_AVR(9, 0x02, B); _DEFPIN_AVR(10, 0x01, B); + +#define HAS_HARDWARE_PIN_SUPPORT 1 + +#elif defined(ARDUINO_AVR_DIGISPARKPRO) + +_IO(A); _IO(B); +#define MAX_PIN 12 + +_DEFPIN_AVR(0, 0x01, B); _DEFPIN_AVR(1, 0x02, B); _DEFPIN_AVR(2, 0x04, B); _DEFPIN_AVR(3, 0x20, B); +_DEFPIN_AVR(4, 0x08, B); _DEFPIN_AVR(5, 0x80, A); _DEFPIN_AVR(6, 0x01, A); _DEFPIN_AVR(7, 0x02, A); +_DEFPIN_AVR(8, 0x04, A); _DEFPIN_AVR(9, 0x08, A); _DEFPIN_AVR(10, 0x10, A); _DEFPIN_AVR(11, 0x20, A); +_DEFPIN_AVR(12, 0x40, A); + +#elif defined(__AVR_ATtiny167__) || defined(__AVR_ATtiny87__) +_IO(A); _IO(B); + +#define MAX_PIN 15 + +_DEFPIN_AVR(0, 0x01, A); _DEFPIN_AVR(1, 0x02, A); _DEFPIN_AVR(2, 0x04, A); _DEFPIN_AVR(3, 0x08, A); +_DEFPIN_AVR(4, 0x10, A); _DEFPIN_AVR(5, 0x20, A); _DEFPIN_AVR(6, 0x40, A); _DEFPIN_AVR(7, 0x80, A); +_DEFPIN_AVR(8, 0x01, B); _DEFPIN_AVR(9, 0x02, B); _DEFPIN_AVR(10, 0x04, B); _DEFPIN_AVR(11, 0x08, B); +_DEFPIN_AVR(12, 0x10, B); _DEFPIN_AVR(13, 0x20, B); _DEFPIN_AVR(14, 0x40, B); _DEFPIN_AVR(15, 0x80, B); + +#define SPI_DATA 4 +#define SPI_CLOCK 5 +#define AVR_HARDWARE_SPI 1 + +#define HAS_HARDWARE_PIN_SUPPORT 1 +#elif defined(ARDUINO_HOODLOADER2) && (defined(__AVR_ATmega32U2__) || defined(__AVR_ATmega16U2__) || defined(__AVR_ATmega8U2__)) || defined(__AVR_AT90USB82__) || defined(__AVR_AT90USB162__) + +_IO(D); _IO(B); _IO(C); + +#define MAX_PIN 20 + +_DEFPIN_AVR( 0, 0x01, B); _DEFPIN_AVR( 1, 0x02, B); _DEFPIN_AVR( 2, 0x04, B); _DEFPIN_AVR( 3, 0x08, B); +_DEFPIN_AVR( 4, 0x10, B); _DEFPIN_AVR( 5, 0x20, B); _DEFPIN_AVR( 6, 0x40, B); _DEFPIN_AVR( 7, 0x80, B); + +_DEFPIN_AVR( 8, 0x80, C); _DEFPIN_AVR( 9, 0x40, C); _DEFPIN_AVR( 10, 0x20,C); _DEFPIN_AVR( 11, 0x10, C); +_DEFPIN_AVR( 12, 0x04, C); _DEFPIN_AVR( 13, 0x01, D); _DEFPIN_AVR( 14, 0x02, D); _DEFPIN_AVR(15, 0x04, D); +_DEFPIN_AVR( 16, 0x08, D); _DEFPIN_AVR( 17, 0x10, D); _DEFPIN_AVR( 18, 0x20, D); _DEFPIN_AVR( 19, 0x40, D); +_DEFPIN_AVR( 20, 0x80, D); + +#define HAS_HARDWARE_PIN_SUPPORT 1 +// #define SPI_DATA 2 +// #define SPI_CLOCK 1 +// #define AVR_HARDWARE_SPI 1 + +#elif defined(__AVR_ATmega328P__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega168P__) || defined(__AVR_ATmega8__) +// Accelerated port definitions for arduino avrs +_IO(D); _IO(B); _IO(C); + +#define MAX_PIN 19 +_DEFPIN_AVR( 0, 0x01, D); _DEFPIN_AVR( 1, 0x02, D); _DEFPIN_AVR( 2, 0x04, D); _DEFPIN_AVR( 3, 0x08, D); +_DEFPIN_AVR( 4, 0x10, D); _DEFPIN_AVR( 5, 0x20, D); _DEFPIN_AVR( 6, 0x40, D); _DEFPIN_AVR( 7, 0x80, D); +_DEFPIN_AVR( 8, 0x01, B); _DEFPIN_AVR( 9, 0x02, B); _DEFPIN_AVR(10, 0x04, B); _DEFPIN_AVR(11, 0x08, B); +_DEFPIN_AVR(12, 0x10, B); _DEFPIN_AVR(13, 0x20, B); _DEFPIN_AVR(14, 0x01, C); _DEFPIN_AVR(15, 0x02, C); +_DEFPIN_AVR(16, 0x04, C); _DEFPIN_AVR(17, 0x08, C); _DEFPIN_AVR(18, 0x10, C); _DEFPIN_AVR(19, 0x20, C); + +#define SPI_DATA 11 +#define SPI_CLOCK 13 +#define SPI_SELECT 10 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +#define SPI_UART0_DATA 1 +#define SPI_UART0_CLOCK 4 + +#elif defined(__AVR_ATmega1284P__) + +_IO(A); _IO(B); _IO(C); _IO(D); + +_DEFPIN_AVR(0, 1<<0, D); _DEFPIN_AVR(1, 1<<1, D); _DEFPIN_AVR(2, 1<<2, B); _DEFPIN_AVR(3, 1<<3, B); +_DEFPIN_AVR(4, 1<<0, B); _DEFPIN_AVR(5, 1<<1, B); _DEFPIN_AVR(6, 1<<2, D); _DEFPIN_AVR(7, 1<<3, D); +_DEFPIN_AVR(8, 1<<5, D); _DEFPIN_AVR(9, 1<<6, D); _DEFPIN_AVR(10, 1<<4, B); _DEFPIN_AVR(11, 1<<5, B); +_DEFPIN_AVR(12, 1<<6, B); _DEFPIN_AVR(13, 1<<7, B); _DEFPIN_AVR(14, 1<<7, A); _DEFPIN_AVR(15, 1<<6, A); +_DEFPIN_AVR(16, 1<<5, A); _DEFPIN_AVR(17, 1<<4, A); _DEFPIN_AVR(18, 1<<3, A); _DEFPIN_AVR(19, 1<<2, A); +_DEFPIN_AVR(20, 1<<1, A); _DEFPIN_AVR(21, 1<<0, A); _DEFPIN_AVR(22, 1<<0, C); _DEFPIN_AVR(23, 1<<1, C); +_DEFPIN_AVR(24, 1<<2, C); _DEFPIN_AVR(25, 1<<3, C); _DEFPIN_AVR(26, 1<<4, C); _DEFPIN_AVR(27, 1<<5, C); +_DEFPIN_AVR(28, 1<<6, C); _DEFPIN_AVR(29, 1<<7, C); _DEFPIN_AVR(30, 1<<4, D); _DEFPIN_AVR(31, 1<<7, D); + +#define SPI_DATA 11 +#define SPI_CLOCK 13 +#define SPI_SELECT 10 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) +// megas + +_IO(A); _IO(B); _IO(C); _IO(D); _IO(E); _IO(F); _IO(G); _IO(H); _IO(J); _IO(K); _IO(L); + +#define MAX_PIN 69 +_DEFPIN_AVR(0, 1, E); _DEFPIN_AVR(1, 2, E); _DEFPIN_AVR(2, 16, E); _DEFPIN_AVR(3, 32, E); +_DEFPIN_AVR(4, 32, G); _DEFPIN_AVR(5, 8, E); _DEFPIN_AVR(6, 8, H); _DEFPIN_AVR(7, 16, H); +_DEFPIN_AVR(8, 32, H); _DEFPIN_AVR(9, 64, H); _DEFPIN_AVR(10, 16, B); _DEFPIN_AVR(11, 32, B); +_DEFPIN_AVR(12, 64, B); _DEFPIN_AVR(13, 128, B); _DEFPIN_AVR(14, 2, J); _DEFPIN_AVR(15, 1, J); +_DEFPIN_AVR(16, 2, H); _DEFPIN_AVR(17, 1, H); _DEFPIN_AVR(18, 8, D); _DEFPIN_AVR(19, 4, D); +_DEFPIN_AVR(20, 2, D); _DEFPIN_AVR(21, 1, D); _DEFPIN_AVR(22, 1, A); _DEFPIN_AVR(23, 2, A); +_DEFPIN_AVR(24, 4, A); _DEFPIN_AVR(25, 8, A); _DEFPIN_AVR(26, 16, A); _DEFPIN_AVR(27, 32, A); +_DEFPIN_AVR(28, 64, A); _DEFPIN_AVR(29, 128, A); _DEFPIN_AVR(30, 128, C); _DEFPIN_AVR(31, 64, C); +_DEFPIN_AVR(32, 32, C); _DEFPIN_AVR(33, 16, C); _DEFPIN_AVR(34, 8, C); _DEFPIN_AVR(35, 4, C); +_DEFPIN_AVR(36, 2, C); _DEFPIN_AVR(37, 1, C); _DEFPIN_AVR(38, 128, D); _DEFPIN_AVR(39, 4, G); +_DEFPIN_AVR(40, 2, G); _DEFPIN_AVR(41, 1, G); _DEFPIN_AVR(42, 128, L); _DEFPIN_AVR(43, 64, L); +_DEFPIN_AVR(44, 32, L); _DEFPIN_AVR(45, 16, L); _DEFPIN_AVR(46, 8, L); _DEFPIN_AVR(47, 4, L); +_DEFPIN_AVR(48, 2, L); _DEFPIN_AVR(49, 1, L); _DEFPIN_AVR(50, 8, B); _DEFPIN_AVR(51, 4, B); +_DEFPIN_AVR(52, 2, B); _DEFPIN_AVR(53, 1, B); _DEFPIN_AVR(54, 1, F); _DEFPIN_AVR(55, 2, F); +_DEFPIN_AVR(56, 4, F); _DEFPIN_AVR(57, 8, F); _DEFPIN_AVR(58, 16, F); _DEFPIN_AVR(59, 32, F); +_DEFPIN_AVR(60, 64, F); _DEFPIN_AVR(61, 128, F); _DEFPIN_AVR(62, 1, K); _DEFPIN_AVR(63, 2, K); +_DEFPIN_AVR(64, 4, K); _DEFPIN_AVR(65, 8, K); _DEFPIN_AVR(66, 16, K); _DEFPIN_AVR(67, 32, K); +_DEFPIN_AVR(68, 64, K); _DEFPIN_AVR(69, 128, K); + +#define SPI_DATA 51 +#define SPI_CLOCK 52 +#define SPI_SELECT 53 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +// Leonardo, teensy, blinkm +#elif defined(__AVR_ATmega32U4__) && defined(CORE_TEENSY) + +// teensy defs +_IO(B); _IO(C); _IO(D); _IO(E); _IO(F); + +#define MAX_PIN 23 +_DEFPIN_AVR(0, 1, B); _DEFPIN_AVR(1, 2, B); _DEFPIN_AVR(2, 4, B); _DEFPIN_AVR(3, 8, B); +_DEFPIN_AVR(4, 128, B); _DEFPIN_AVR(5, 1, D); _DEFPIN_AVR(6, 2, D); _DEFPIN_AVR(7, 4, D); +_DEFPIN_AVR(8, 8, D); _DEFPIN_AVR(9, 64, C); _DEFPIN_AVR(10, 128, C); _DEFPIN_AVR(11, 64, D); +_DEFPIN_AVR(12, 128, D); _DEFPIN_AVR(13, 16, B); _DEFPIN_AVR(14, 32, B); _DEFPIN_AVR(15, 64, B); +_DEFPIN_AVR(16, 128, F); _DEFPIN_AVR(17, 64, F); _DEFPIN_AVR(18, 32, F); _DEFPIN_AVR(19, 16, F); +_DEFPIN_AVR(20, 2, F); _DEFPIN_AVR(21, 1, F); _DEFPIN_AVR(22, 16, D); _DEFPIN_AVR(23, 32, D); + +#define SPI_DATA 2 +#define SPI_CLOCK 1 +#define SPI_SELECT 0 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +// PD3/PD5 +#define SPI_UART1_DATA 8 +#define SPI_UART1_CLOCK 23 + +#elif defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__) +// teensy++ 2 defs + +_IO(A); _IO(B); _IO(C); _IO(D); _IO(E); _IO(F); + +#define MAX_PIN 45 +_DEFPIN_AVR(0, 1, D); _DEFPIN_AVR(1, 2, D); _DEFPIN_AVR(2, 4, D); _DEFPIN_AVR(3, 8, D); +_DEFPIN_AVR(4, 16, D); _DEFPIN_AVR(5, 32, D); _DEFPIN_AVR(6, 64, D); _DEFPIN_AVR(7, 128, D); +_DEFPIN_AVR(8, 1, E); _DEFPIN_AVR(9, 2, E); _DEFPIN_AVR(10, 1, C); _DEFPIN_AVR(11, 2, C); +_DEFPIN_AVR(12, 4, C); _DEFPIN_AVR(13, 8, C); _DEFPIN_AVR(14, 16, C); _DEFPIN_AVR(15, 32, C); +_DEFPIN_AVR(16, 64, C); _DEFPIN_AVR(17, 128, C); _DEFPIN_AVR(18, 64, E); _DEFPIN_AVR(19, 128, E); +_DEFPIN_AVR(20, 1, B); _DEFPIN_AVR(21, 2, B); _DEFPIN_AVR(22, 4, B); _DEFPIN_AVR(23, 8, B); +_DEFPIN_AVR(24, 16, B); _DEFPIN_AVR(25, 32, B); _DEFPIN_AVR(26, 64, B); _DEFPIN_AVR(27, 128, B); +_DEFPIN_AVR(28, 1, A); _DEFPIN_AVR(29, 2, A); _DEFPIN_AVR(30, 4, A); _DEFPIN_AVR(31, 8, A); +_DEFPIN_AVR(32, 16, A); _DEFPIN_AVR(33, 32, A); _DEFPIN_AVR(34, 64, A); _DEFPIN_AVR(35, 128, A); +_DEFPIN_AVR(36, 16, E); _DEFPIN_AVR(37, 32, E); _DEFPIN_AVR(38, 1, F); _DEFPIN_AVR(39, 2, F); +_DEFPIN_AVR(40, 4, F); _DEFPIN_AVR(41, 8, F); _DEFPIN_AVR(42, 16, F); _DEFPIN_AVR(43, 32, F); +_DEFPIN_AVR(44, 64, F); _DEFPIN_AVR(45, 128, F); + +#define SPI_DATA 22 +#define SPI_CLOCK 21 +#define SPI_SELECT 20 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +// PD3/PD5 +#define SPI_UART1_DATA 3 +#define SPI_UART1_CLOCK 5 + + +#elif defined(__AVR_ATmega32U4__) + +// leonard defs +_IO(B); _IO(C); _IO(D); _IO(E); _IO(F); + +#define MAX_PIN 23 +_DEFPIN_AVR(0, 4, D); _DEFPIN_AVR(1, 8, D); _DEFPIN_AVR(2, 2, D); _DEFPIN_AVR(3, 1, D); +_DEFPIN_AVR(4, 16, D); _DEFPIN_AVR(5, 64, C); _DEFPIN_AVR(6, 128, D); _DEFPIN_AVR(7, 64, E); +_DEFPIN_AVR(8, 16, B); _DEFPIN_AVR(9, 32, B); _DEFPIN_AVR(10, 64, B); _DEFPIN_AVR(11, 128, B); +_DEFPIN_AVR(12, 64, D); _DEFPIN_AVR(13, 128, C); _DEFPIN_AVR(14, 8, B); _DEFPIN_AVR(15, 2, B); +_DEFPIN_AVR(16, 4, B); _DEFPIN_AVR(17, 1, B); _DEFPIN_AVR(18, 128, F); _DEFPIN_AVR(19, 64, F); +_DEFPIN_AVR(20, 32, F); _DEFPIN_AVR(21, 16, F); _DEFPIN_AVR(22, 2, F); _DEFPIN_AVR(23, 1, F); + +#define SPI_DATA 16 +#define SPI_CLOCK 15 +#define AVR_HARDWARE_SPI 1 +#define HAS_HARDWARE_PIN_SUPPORT 1 + +// PD3/PD5 +// #define SPI_UART1_DATA 1 +// #define SPI_UART1_CLOCK 4 + + +#endif + +#endif // FASTLED_FORCE_SOFTWARE_PINS + +FASTLED_NAMESPACE_END + +#endif // __INC_FASTPIN_AVR_H diff --git a/arduino/test/platforms/avr/fastspi_avr.h b/arduino/test/platforms/avr/fastspi_avr.h new file mode 100644 index 0000000..2ed5bb1 --- /dev/null +++ b/arduino/test/platforms/avr/fastspi_avr.h @@ -0,0 +1,505 @@ +#ifndef __INC_FASTSPI_AVR_H +#define __INC_FASTSPI_AVR_H + +FASTLED_NAMESPACE_BEGIN + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// Hardware SPI support using USART registers and friends +// +// TODO: Complete/test implementation - right now this doesn't work +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +// uno/mini/duemilanove +#if defined(AVR_HARDWARE_SPI) + +#if defined(UBRR1) + +#ifndef UCPHA1 +#define UCPHA1 1 +#endif + +template +class AVRUSART1SPIOutput { + Selectable *m_pSelect; + +public: + AVRUSART1SPIOutput() { m_pSelect = NULL; } + AVRUSART1SPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + void setSelect(Selectable *pSelect) { m_pSelect = pSelect; } + + void init() { + UBRR1 = 0; + + /* Set MSPI mode of operation and SPI data mode 0. */ + UCSR1C = (1<::setOutput(); + FastPin<_DATA_PIN>::setOutput(); + + // must be done last, see page 206 + setSPIRate(); + } + + void setSPIRate() { + if(_SPI_CLOCK_DIVIDER > 2) { + UBRR1 = (_SPI_CLOCK_DIVIDER/2)-1; + } else { + UBRR1 = 0; + } + } + + + static void stop() { + // TODO: stop the uart spi output + } + + static bool shouldWait(bool wait = false) __attribute__((always_inline)) { + static bool sWait=false; + if(sWait) { + sWait = wait; return true; + } else { + sWait = wait; return false; + } + // return true; + } + static void wait() __attribute__((always_inline)) { + if(shouldWait()) { + while(!(UCSR1A & (1<>8); writeByte(w&0xFF); } + + static void writeByte(uint8_t b) __attribute__((always_inline)) { wait(); UDR1=b; shouldWait(true); } + static void writeBytePostWait(uint8_t b) __attribute__((always_inline)) { UDR1=b; shouldWait(true); wait(); } + static void writeByteNoWait(uint8_t b) __attribute__((always_inline)) { UDR1=b; shouldWait(true); } + + + template inline static void writeBit(uint8_t b) { + if(b && (1 << BIT)) { + FastPin<_DATA_PIN>::hi(); + } else { + FastPin<_DATA_PIN>::lo(); + } + + FastPin<_CLOCK_PIN>::hi(); + FastPin<_CLOCK_PIN>::lo(); + } + + void enable_pins() { } + void disable_pins() { } + + void select() { + if(m_pSelect != NULL) { + m_pSelect->select(); + } + enable_pins(); + setSPIRate(); + } + + void release() { + if(m_pSelect != NULL) { + m_pSelect->release(); + } + disable_pins(); + } + + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { + writeByte(value); + } + } + + void writeBytesValue(uint8_t value, int len) { + //setSPIRate(); + select(); + while(len--) { + writeByte(value); + } + release(); + } + + // Write a block of n uint8_ts out + template void writeBytes(register uint8_t *data, int len) { + //setSPIRate(); + uint8_t *end = data + len; + select(); + while(data != end) { + // a slight touch of delay here helps optimize the timing of the status register check loop (not used on ARM) + writeByte(D::adjust(*data++)); delaycycles<3>(); + } + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + // write a block of uint8_ts out in groups of three. len is the total number of uint8_ts to write out. The template + // parameters indicate how many uint8_ts to skip at the beginning and/or end of each grouping + template void writePixels(PixelController pixels) { + //setSPIRate(); + int len = pixels.mLen; + + select(); + while(pixels.has(1)) { + if(FLAGS & FLAG_START_BIT) { + writeBit<0>(1); + writeBytePostWait(D::adjust(pixels.loadAndScale0())); + writeBytePostWait(D::adjust(pixels.loadAndScale1())); + writeBytePostWait(D::adjust(pixels.loadAndScale2())); + } else { + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + } + + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + release(); + } +}; +#endif + +#if defined(UBRR0) +template +class AVRUSART0SPIOutput { + Selectable *m_pSelect; + +public: + AVRUSART0SPIOutput() { m_pSelect = NULL; } + AVRUSART0SPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + void setSelect(Selectable *pSelect) { m_pSelect = pSelect; } + + void init() { + UBRR0 = 0; + + /* Set MSPI mode of operation and SPI data mode 0. */ + UCSR0C = (1<::setOutput(); + FastPin<_DATA_PIN>::setOutput(); + + + // must be done last, see page 206 + setSPIRate(); + } + + void setSPIRate() { + if(_SPI_CLOCK_DIVIDER > 2) { + UBRR0 = (_SPI_CLOCK_DIVIDER/2)-1; + } else { + UBRR0 = 0; + } + } + + static void stop() { + // TODO: stop the uart spi output + } + + static bool shouldWait(bool wait = false) __attribute__((always_inline)) { + static bool sWait=false; + if(sWait) { + sWait = wait; return true; + } else { + sWait = wait; return false; + } + // return true; + } + static void wait() __attribute__((always_inline)) { + if(shouldWait()) { + while(!(UCSR0A & (1<>8); writeByte(w&0xFF); } + + static void writeByte(uint8_t b) __attribute__((always_inline)) { wait(); UDR0=b; shouldWait(true); } + static void writeBytePostWait(uint8_t b) __attribute__((always_inline)) { UDR0=b; shouldWait(true); wait(); } + static void writeByteNoWait(uint8_t b) __attribute__((always_inline)) { UDR0=b; shouldWait(true); } + + + template inline static void writeBit(uint8_t b) { + if(b && (1 << BIT)) { + FastPin<_DATA_PIN>::hi(); + } else { + FastPin<_DATA_PIN>::lo(); + } + + FastPin<_CLOCK_PIN>::hi(); + FastPin<_CLOCK_PIN>::lo(); + } + + void enable_pins() { } + void disable_pins() { } + + void select() { + if(m_pSelect != NULL) { + m_pSelect->select(); + } + enable_pins(); + setSPIRate(); + } + + void release() { + if(m_pSelect != NULL) { + m_pSelect->release(); + } + disable_pins(); + } + + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { + writeByte(value); + } + } + + void writeBytesValue(uint8_t value, int len) { + //setSPIRate(); + select(); + while(len--) { + writeByte(value); + } + release(); + } + + // Write a block of n uint8_ts out + template void writeBytes(register uint8_t *data, int len) { + //setSPIRate(); + uint8_t *end = data + len; + select(); + while(data != end) { + // a slight touch of delay here helps optimize the timing of the status register check loop (not used on ARM) + writeByte(D::adjust(*data++)); delaycycles<3>(); + } + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + // write a block of uint8_ts out in groups of three. len is the total number of uint8_ts to write out. The template + // parameters indicate how many uint8_ts to skip at the beginning and/or end of each grouping + template void writePixels(PixelController pixels) { + //setSPIRate(); + int len = pixels.mLen; + + select(); + while(pixels.has(1)) { + if(FLAGS & FLAG_START_BIT) { + writeBit<0>(1); + writeBytePostWait(D::adjust(pixels.loadAndScale0())); + writeBytePostWait(D::adjust(pixels.loadAndScale1())); + writeBytePostWait(D::adjust(pixels.loadAndScale2())); + } else { + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + } + + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + waitFully(); + release(); + } +}; + +#endif + + +#if defined(SPSR) + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// Hardware SPI support using SPDR registers and friends +// +// Technically speaking, this uses the AVR SPI registers. This will work on the Teensy 3.0 because Paul made a set of compatability +// classes that map the AVR SPI registers to ARM's, however this caps the performance of output. +// +// TODO: implement ARMHardwareSPIOutput +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +template +class AVRHardwareSPIOutput { + Selectable *m_pSelect; + bool mWait; +public: + AVRHardwareSPIOutput() { m_pSelect = NULL; mWait = false;} + AVRHardwareSPIOutput(Selectable *pSelect) { m_pSelect = pSelect; } + void setSelect(Selectable *pSelect) { m_pSelect = pSelect; } + + void setSPIRate() { + SPCR &= ~ ( (1<= 128) { SPCR |= (1<= 64) { SPCR |= (1<= 32) { SPCR |= (1<= 16) { SPCR |= (1<= 8) { SPCR |= (1<= 4) { /* do nothing - default rate */ } + else { b2x = true; } + + if(b2x) { SPSR |= (1<::setOutput(); + FastPin<_CLOCK_PIN>::setOutput(); +#ifdef SPI_SELECT + // Make sure the slave select line is set to output, or arduino will block us + FastPin::setOutput(); + FastPin::lo(); +#endif + + SPCR |= ((1<= 128) { SPCR |= (1<= 64) { SPCR |= (1<= 32) { SPCR |= (1<= 16) { SPCR |= (1<= 8) { SPCR |= (1<= 4) { /* do nothing - default rate */ } + else { b2x = true; } + + if(b2x) { SPSR |= (1<>8); writeByte(w&0xFF); } + + static void writeByte(uint8_t b) __attribute__((always_inline)) { wait(); SPDR=b; shouldWait(true); } + static void writeBytePostWait(uint8_t b) __attribute__((always_inline)) { SPDR=b; shouldWait(true); wait(); } + static void writeByteNoWait(uint8_t b) __attribute__((always_inline)) { SPDR=b; shouldWait(true); } + + template inline static void writeBit(uint8_t b) { + SPCR &= ~(1 << SPE); + if(b & (1 << BIT)) { + FastPin<_DATA_PIN>::hi(); + } else { + FastPin<_DATA_PIN>::lo(); + } + + FastPin<_CLOCK_PIN>::hi(); + FastPin<_CLOCK_PIN>::lo(); + SPCR |= 1 << SPE; + shouldWait(false); + } + + void enable_pins() { + SPCR |= ((1<select(); } + enable_pins(); + setSPIRate(); + } + + void release() { + if(m_pSelect != NULL) { m_pSelect->release(); } + disable_pins(); + } + + static void writeBytesValueRaw(uint8_t value, int len) { + while(len--) { writeByte(value); } + } + + void writeBytesValue(uint8_t value, int len) { + //setSPIRate(); + select(); + while(len--) { + writeByte(value); + } + release(); + } + + // Write a block of n uint8_ts out + template void writeBytes(register uint8_t *data, int len) { + //setSPIRate(); + uint8_t *end = data + len; + select(); + while(data != end) { + // a slight touch of delay here helps optimize the timing of the status register check loop (not used on ARM) + writeByte(D::adjust(*data++)); delaycycles<3>(); + } + release(); + } + + void writeBytes(register uint8_t *data, int len) { writeBytes(data, len); } + + // write a block of uint8_ts out in groups of three. len is the total number of uint8_ts to write out. The template + // parameters indicate how many uint8_ts to skip at the beginning and/or end of each grouping + template void writePixels(PixelController pixels) { + //setSPIRate(); + int len = pixels.mLen; + + select(); + while(pixels.has(1)) { + if(FLAGS & FLAG_START_BIT) { + writeBit<0>(1); + writeBytePostWait(D::adjust(pixels.loadAndScale0())); + writeBytePostWait(D::adjust(pixels.loadAndScale1())); + writeBytePostWait(D::adjust(pixels.loadAndScale2())); + } else { + writeByte(D::adjust(pixels.loadAndScale0())); + writeByte(D::adjust(pixels.loadAndScale1())); + writeByte(D::adjust(pixels.loadAndScale2())); + } + + pixels.advanceData(); + pixels.stepDithering(); + } + D::postBlock(len); + waitFully(); + release(); + } +}; +#endif + +#else +// #define FASTLED_FORCE_SOFTWARE_SPI +#endif + +FASTLED_NAMESPACE_END; + + +#endif diff --git a/arduino/test/platforms/avr/led_sysdefs_avr.h b/arduino/test/platforms/avr/led_sysdefs_avr.h new file mode 100644 index 0000000..d90ee6e --- /dev/null +++ b/arduino/test/platforms/avr/led_sysdefs_avr.h @@ -0,0 +1,52 @@ +#ifndef __INC_LED_SYSDEFS_AVR_H +#define __INC_LED_SYSDEFS_AVR_H + +#define FASTLED_AVR + +#ifndef INTERRUPT_THRESHOLD +#define INTERRUPT_THRESHOLD 2 +#endif + +#include +#include // for cli/se definitions + +// Define the register types +#if defined(ARDUINO) // && ARDUINO < 150 +typedef volatile uint8_t RoReg; /**< Read only 8-bit register (volatile const unsigned int) */ +typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile unsigned int) */ +#endif + + +// Default to disallowing interrupts (may want to gate this on teensy2 vs. other arm platforms, since the +// teensy2 has a good, fast millis interrupt implementation) +#ifndef FASTLED_ALLOW_INTERRUPTS +#define FASTLED_ALLOW_INTERRUPTS 0 +#endif + +#if FASTLED_ALLOW_INTERRUPTS == 1 +#define FASTLED_ACCURATE_CLOCK +#endif + + +// Default to using PROGMEM here +#ifndef FASTLED_USE_PROGMEM +#define FASTLED_USE_PROGMEM 1 +#endif + +#if defined(ARDUINO_AVR_DIGISPARK) || defined(ARDUINO_AVR_DIGISPARKPRO) +#ifndef NO_CORRECTION +#define NO_CORRECTION 1 +#endif +#endif + +extern "C" { +# if defined(CORE_TEENSY) || defined(TEENSYDUINO) +extern volatile unsigned long timer0_millis_count; +# define MS_COUNTER timer0_millis_count +# else +extern volatile unsigned long timer0_millis; +# define MS_COUNTER timer0_millis +# endif +}; + +#endif diff --git a/arduino/test/power_mgt.cpp b/arduino/test/power_mgt.cpp new file mode 100644 index 0000000..c4cbf54 --- /dev/null +++ b/arduino/test/power_mgt.cpp @@ -0,0 +1,180 @@ +#define FASTLED_INTERNAL +#include "FastLED.h" +#include "power_mgt.h" + +FASTLED_NAMESPACE_BEGIN + +//// POWER MANAGEMENT + +// These power usage values are approximate, and your exact readings +// will be slightly (10%?) different from these. +// +// They were arrived at by actually measuing the power draw of a number +// of different LED strips, and a bunch of closed-loop-feedback testing +// to make sure that if we USE these values, we stay at or under +// the target power consumption. +// Actual power consumption is much, much more complicated and has +// to include things like voltage drop, etc., etc. +// However, this is good enough for most cases, and almost certainly better +// than no power management at all. +// +// You're welcome to adjust these values as needed; there may eventually be an API +// for changing these on the fly, but it saves codespace and RAM to have them +// be compile-time constants. + +static const uint8_t gRed_mW = 16 * 5; // 16mA @ 5v = 80mW +static const uint8_t gGreen_mW = 11 * 5; // 11mA @ 5v = 55mW +static const uint8_t gBlue_mW = 15 * 5; // 15mA @ 5v = 75mW +static const uint8_t gDark_mW = 1 * 5; // 1mA @ 5v = 5mW + +// Alternate calibration by RAtkins via pre-PSU wattage measurments; +// these are all probably about 20%-25% too high due to PSU heat losses, +// but if you're measuring wattage on the PSU input side, this may +// be a better set of calibrations. (WS2812B) +// static const uint8_t gRed_mW = 100; +// static const uint8_t gGreen_mW = 48; +// static const uint8_t gBlue_mW = 100; +// static const uint8_t gDark_mW = 12; + + +#define POWER_LED 1 +#define POWER_DEBUG_PRINT 0 + + +// Power consumed by the MCU +static const uint8_t gMCU_mW = 25 * 5; // 25mA @ 5v = 125 mW + + +static uint32_t gMaxPowerInMilliwatts = (uint32_t)(400) * (uint32_t)(5); // 400mA @ 5v default to avoid USB bricking +static uint8_t gMaxPowerIndicatorLEDPinNumber = 0; // default = Arduino onboard LED pin. set to zero to skip this. + + +uint32_t calculate_unscaled_power_mW( const CRGB* ledbuffer, uint16_t numLeds ) //25354 +{ + uint32_t red32 = 0, green32 = 0, blue32 = 0; + const CRGB* firstled = &(ledbuffer[0]); + uint8_t* p = (uint8_t*)(firstled); + + uint16_t count = numLeds; + + // This loop might benefit from an AVR assembly version -MEK + while( count) { + red32 += *p++; + green32 += *p++; + blue32 += *p++; + count--; + } + + red32 *= gRed_mW; + green32 *= gGreen_mW; + blue32 *= gBlue_mW; + + red32 >>= 8; + green32 >>= 8; + blue32 >>= 8; + + uint32_t total = red32 + green32 + blue32 + (gDark_mW * numLeds); + + return total; +} + + + +// sets brightness to +// - no more than target_brightness +// - no more than max_mW milliwatts +uint8_t calculate_max_brightness_for_power_mW( uint8_t target_brightness, uint32_t max_power_mW) +{ + uint32_t total_mW = gMCU_mW; + + CLEDController *pCur = CLEDController::head(); + while(pCur) { + total_mW += calculate_unscaled_power_mW( pCur->leds(), pCur->size()); + pCur = pCur->next(); + } + +#if POWER_DEBUG_PRINT == 1 + Serial.print("power demand at full brightness mW = "); + Serial.println( total_mW); +#endif + + uint32_t requested_power_mW = ((uint32_t)total_mW * target_brightness) / 256; +#if POWER_DEBUG_PRINT == 1 + if( target_brightness != 255 ) { + Serial.print("power demand at scaled brightness mW = "); + Serial.println( requested_power_mW); + } + Serial.print("power limit mW = "); + Serial.println( max_power_mW); +#endif + + if( requested_power_mW < max_power_mW) { +#if POWER_LED > 0 + if( gMaxPowerIndicatorLEDPinNumber ) { + digitalWrite(gMaxPowerIndicatorLEDPinNumber, LOW); // turn the LED off + } +#endif +#if POWER_DEBUG_PRINT == 1 + Serial.print("demand is under the limit"); +#endif + return target_brightness; + } + + uint8_t recommended_brightness = (uint32_t)((uint8_t)(target_brightness) * (uint32_t)(max_power_mW)) / ((uint32_t)(requested_power_mW)); +#if POWER_DEBUG_PRINT == 1 + Serial.print("recommended brightness # = "); + Serial.println( recommended_brightness); + + uint32_t resultant_power_mW = (total_mW * recommended_brightness) / 256; + Serial.print("resultant power demand mW = "); + Serial.println( resultant_power_mW); + + Serial.println(); +#endif + +#if POWER_LED > 0 + if( gMaxPowerIndicatorLEDPinNumber ) { + digitalWrite( gMaxPowerIndicatorLEDPinNumber, HIGH); // turn the LED on + } +#endif + + return recommended_brightness; +} + + +void set_max_power_indicator_LED( uint8_t pinNumber) +{ + gMaxPowerIndicatorLEDPinNumber = pinNumber; +} + +void set_max_power_in_volts_and_milliamps( uint8_t volts, uint32_t milliamps) +{ + gMaxPowerInMilliwatts = (uint32_t)((uint32_t)(volts) * milliamps); +} + +void set_max_power_in_milliwatts( uint32_t powerInmW) +{ + gMaxPowerInMilliwatts = powerInmW; +} + +void show_at_max_brightness_for_power() +{ + uint8_t targetBrightness = FastLED.getBrightness(); + uint8_t max = calculate_max_brightness_for_power_mW( targetBrightness, gMaxPowerInMilliwatts); + + FastLED.setBrightness( max ); + FastLED.show(); + FastLED.setBrightness( targetBrightness ); +} + +void delay_at_max_brightness_for_power( uint16_t ms) +{ + uint8_t targetBrightness = FastLED.getBrightness(); + uint8_t max = calculate_max_brightness_for_power_mW( targetBrightness, gMaxPowerInMilliwatts); + + FastLED.setBrightness( max ); + FastLED.delay( ms); + FastLED.setBrightness( targetBrightness ); +} + +FASTLED_NAMESPACE_END diff --git a/arduino/test/power_mgt.h b/arduino/test/power_mgt.h new file mode 100644 index 0000000..4672f0e --- /dev/null +++ b/arduino/test/power_mgt.h @@ -0,0 +1,65 @@ +#ifndef POWER_MGT_H +#define POWER_MGT_H + +#include "pixeltypes.h" + +FASTLED_NAMESPACE_BEGIN + +///@defgroup Power Power management functions +/// functions used to limit the amount of power used by FastLED + +// Power Control setup functions +// +// Example: +// set_max_power_in_volts_and_milliamps( 5, 400); +// + +/// Set the maximum power used in milliamps for a given voltage +void set_max_power_in_volts_and_milliamps( uint8_t volts, uint32_t milliamps); +/// Set the maximum power used in watts +void set_max_power_in_milliwatts( uint32_t powerInmW); + +/// Select a ping with an led that will be flashed to indicate that power management +/// is pulling down the brightness +void set_max_power_indicator_LED( uint8_t pinNumber); // zero = no indicator LED + + +// Power Control 'show' and 'delay' functions +// +// These are drop-in replacements for FastLED.show() and FastLED.delay() +// In order to use these, you have to actually replace your calls to +// FastLED.show() and FastLED.delay() with these two functions. +// +// Example: +// // was: FastLED.show(); +// // now is: +// show_at_max_brightness_for_power(); +// + +/// Similar to FastLED.show, but pre-adjusts brightness to keep below the power +/// threshold. +void show_at_max_brightness_for_power(); +/// Similar to FastLED.delay, but pre-adjusts brightness to keep below the power +/// threshold. +void delay_at_max_brightness_for_power( uint16_t ms); + + +// Power Control internal helper functions + +/// calculate_unscaled_power_mW tells you how many milliwatts the current +/// LED data would draw at brightness = 255. +/// +uint32_t calculate_unscaled_power_mW( const CRGB* ledbuffer, uint16_t numLeds); + +/// calculate_max_brightness_for_power_mW tells you the highest brightness +/// level you can use and still stay under the specified power budget. It +/// takes a 'target brightness' which is the brightness you'd ideally like +/// to use. The result from this function will be no higher than the +/// target_brightess you supply, but may be lower. +uint8_t calculate_max_brightness_for_power_mW( uint8_t target_brightness, uint32_t max_power_mW); + +FASTLED_NAMESPACE_END +///@} +// POWER_MGT_H + +#endif diff --git a/arduino/test/preview_changes.txt b/arduino/test/preview_changes.txt new file mode 100644 index 0000000..dbbd946 --- /dev/null +++ b/arduino/test/preview_changes.txt @@ -0,0 +1,19 @@ +FastLED 3.1 preview changes: +* UART in SPI mode support on AVR +* Support for using both hardware SPI pinsets on the Teensy 3.x - 11/13 and 7/14. +* Added UCS1904 support +* Better AVR cycle counting +* Split WS2812/WS2811 timings +* Added DOTSTAR definition for adafruit dotstar pixels (aka APA102) +* 8-way parallel output on teensy 3, 3.1 (portc,portd), due/digix (porta, portb, portd) +* 12-way parallel output on teensy 3, 3.1 (portc) +* 16-way parallel output on teensy 3, 3.1 (portc & portd paired) +* refresh rate limiting +* interrupt friendly code on teensy 3/3.1 +* -interrupt friendly code on AVR- <-- disabled for now +* interrupt friendly code on the due +* code re-org for future wider platform support +* Spark Core support +* arduino zero support (no hardware spi yet) +* greatly improved clockless output for avr +* greatly improved clockless output for arm m0 boards diff --git a/arduino/test/release_notes.md b/arduino/test/release_notes.md new file mode 100644 index 0000000..a06ad21 --- /dev/null +++ b/arduino/test/release_notes.md @@ -0,0 +1,127 @@ +FastLED3.1.0 +============ +* Added support for the following platforms + * Arduino Zero + * Teensy LC + * RFDuino/nrf51822 + * Spark Core +* Major internal code reoganization +* Started doxygen based documentation +* Lots of bug/performance fixes +* Parallel output on various arm platforms +* lots of new stuff + +FastLED3.0.2 +============ +* possibly fix issues #67 and #90 by fixing gcc 4.8.x support + +FastLED3.0.1 +============ +* fix issue #89 w/power management pin always being on + +FastLED3.0 +========== + +* Added support for the following platforms: + * Arduino due + * Teensy 3.1 +* Added the following LED chipsets: + * USC1903_400 + * GW6205 / GW6205_400 + * APA102 + * APA104 + * LPD1886 + * P9813 + * SmartMatrix +* Added multiple examples: + * ColorPalette - show off the color palette code + * ColorTemperature - show off the color correction code + * Fire2012 + * Fire2012WithPalette + * Multiple led controller examples + * Noise + * NoisePlayground + * NoisePlusPalette + * SmartMatrix - show off SmartMatrix support + * XYMatrix - show how to use a mtrix layout of leds +* Added color correction +* Added dithering +* Added power management support +* Added support for color palettes +* Added easing functions +* Added fast trig functions +* Added simplex noise functions +* Added color utility functions +* Fixed DMXSERIAL/DMXSIMPLE support +* Timing adjustments for existing SPI chipsets +* Cleaned up the code layout to make platform support easier +* Many bug fixes +* A number of performance/memory improvements +* Remove Squant (takes up space!) + +FastLED2 +======== + +## Full release of the library + +## Release Candidate 6 +* Rename library, offically, to FastLED, move to github +* Update keywords with all the new stuffs + +## Release Candidate 5 +* Gemma and Trinket: supported except for global "setBrightness" + +## Release Candidate 4 +* Added NEOPIXEL as a synonym for WS2811 +* Fix WS2811/WS2812B timings, bring it in line to exactly 1.25ns/bit. +* Fix handling of constant color definitions (damn you, gcc!) + +## Release Candidate 3 +* Fixed bug when Clock and Data were on the same port +* Added ability to set pixel color directly from HSV +* Added ability to retrieve current random16 seed + +## Release Candidate 2 +* mostly bug fixes +* Fix SPI macro definitions for latest teensy3 software update +* Teensy 2 compilation fix +* hsv2rgb_rainbow performance fix + +## Release Candidate 1 +* New unified/simplified API for adding/using controllers +* fleshout clockless chip support +* add hsv (spectrum and rainbow style colors) +* high speed memory management operations +* library for interpolation/easing functions +* various api changes, addition of clear and showColor functions +* scale value applied to all show methods +* bug fixes for SM16716 +* performance improvements, lpd8806 exceeds 22Mbit now +* hardware def fixes +* allow alternate rgb color orderings +* high speed math methods +* rich CRGB structure + +## Preview 3 +* True hardware SPI support for teensy (up to 20Mbit output!) +* Minor bug fixes/tweaks + +## Preview 2 +* Rename pin class to FastPin +* Replace latch with select, more accurate description of what it does +* Enforce intra-frame timing for ws2801s +* SM16716 support +* Add #define FAST_SPI_INTERRUPTS_WRITE_PINS to make sure world is ok w/interrupts and SPI +* Add #define FASTLED_FORCE_SOFTWARE_SPI for those times when you absolutely don't want to use hardware SPI, ev +en if you're using the hardware SPI pins +* Add pin definitions for the arduino megas - should fix ws2811 support +* Add pin definitions for the leonardo - should fix spi support and pin mappings +* Add warnings when pin definitions are missing +* Added google+ community for fastspi users - https://plus.google.com/communities/109127054924227823508 +# Add pin definitions for Teensy++ 2.0 + + +## Preview 1 +* Initial release + + diff --git a/arduino/test/test.ino b/arduino/test/test.ino new file mode 100644 index 0000000..228854b --- /dev/null +++ b/arduino/test/test.ino @@ -0,0 +1,69 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#define SLAVE_ADDRESS 0x12 +#define PIN_LED 13 +#define PIN_STRIP 6 + +// Parameter 1 = number of pixels in strip +// Parameter 2 = pin number (most are valid) +// Parameter 3 = pixel type flags, add together as needed: +// NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs) +// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers) +// NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products) +// NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2) +Adafruit_NeoPixel strip = Adafruit_NeoPixel(6, PIN, NEO_GRB + NEO_KHZ800); + + +void setup() { + Wire.begin(SLAVE_ADDRESS); + Wire.onReceive(receiveData); + pinMode(PIN_LED, OUTPUT); + digitalWrite(PIN_LED, LOW); + +strip.begin();// initialize strip +strip.show(); // Update all LEDs (= turn OFF, since none of them have been set yet!) +c = strip.Color(255, 0, 0); // define the variable c as RED (R,G,B) +strip.setPixelColor(2, c); // set LED 10 to the color in variable c (red) +strip.show(); // Update all LEDs (= make LED 10 red) + +} + +void loop() { + delay(10000); +} + +void receiveData(int byteCount) { + while(Wire.available()) { + if (1 == Wire.read()) { + digitalWrite(13, HIGH); + } else { + digitalWrite(13, LOW); + } + } +} diff --git a/arduino/test/wiring.cpp b/arduino/test/wiring.cpp new file mode 100644 index 0000000..b2af51c --- /dev/null +++ b/arduino/test/wiring.cpp @@ -0,0 +1,238 @@ +#define FASTLED_INTERNAL +#include "FastLED.h" + +FASTLED_USING_NAMESPACE + +#if 0 + +#if defined(FASTLED_AVR) && !defined(TEENSYDUINO) && !defined(LIB8_ATTINY) +extern "C" { +// the prescaler is set so that timer0 ticks every 64 clock cycles, and the +// the overflow handler is called every 256 ticks. +#define MICROSECONDS_PER_TIMER0_OVERFLOW (clockCyclesToMicroseconds(64 * 256)) + +typedef union { unsigned long _long; uint8_t raw[4]; } tBytesForLong; +// tBytesForLong FastLED_timer0_overflow_count; +volatile unsigned long FastLED_timer0_overflow_count=0; +volatile unsigned long FastLED_timer0_millis = 0; + +LIB8STATIC void __attribute__((always_inline)) fastinc32 (volatile uint32_t & _long) { + uint8_t b = ++((tBytesForLong&)_long).raw[0]; + if(!b) { + b = ++((tBytesForLong&)_long).raw[1]; + if(!b) { + b = ++((tBytesForLong&)_long).raw[2]; + if(!b) { + ++((tBytesForLong&)_long).raw[3]; + } + } + } +} + +#if defined(__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) +ISR(TIM0_OVF_vect) +#else +ISR(TIMER0_OVF_vect) +#endif +{ + fastinc32(FastLED_timer0_overflow_count); + // FastLED_timer0_overflow_count++; +} + +// there are 1024 microseconds per overflow counter tick. +unsigned long millis() +{ + unsigned long m; + uint8_t oldSREG = SREG; + + // disable interrupts while we read FastLED_timer0_millis or we might get an + // inconsistent value (e.g. in the middle of a write to FastLED_timer0_millis) + cli(); + m = FastLED_timer0_overflow_count; //._long; + SREG = oldSREG; + + return (m*(MICROSECONDS_PER_TIMER0_OVERFLOW/8))/(1000/8); +} + +unsigned long micros() { + unsigned long m; + uint8_t oldSREG = SREG, t; + + cli(); + m = FastLED_timer0_overflow_count; // ._long; +#if defined(TCNT0) + t = TCNT0; +#elif defined(TCNT0L) + t = TCNT0L; +#else + #error TIMER 0 not defined +#endif + + +#ifdef TIFR0 + if ((TIFR0 & _BV(TOV0)) && (t < 255)) + m++; +#else + if ((TIFR & _BV(TOV0)) && (t < 255)) + m++; +#endif + + SREG = oldSREG; + + return ((m << 8) + t) * (64 / clockCyclesPerMicrosecond()); +} + +void delay(unsigned long ms) +{ + uint16_t start = (uint16_t)micros(); + + while (ms > 0) { + if (((uint16_t)micros() - start) >= 1000) { + ms--; + start += 1000; + } + } +} + +#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) +void init() +{ + // this needs to be called before setup() or some functions won't + // work there + sei(); + + // on the ATmega168, timer 0 is also used for fast hardware pwm + // (using phase-correct PWM would mean that timer 0 overflowed half as often + // resulting in different millis() behavior on the ATmega8 and ATmega168) +#if defined(TCCR0A) && defined(WGM01) + sbi(TCCR0A, WGM01); + sbi(TCCR0A, WGM00); +#endif + + // set timer 0 prescale factor to 64 +#if defined(__AVR_ATmega128__) + // CPU specific: different values for the ATmega128 + sbi(TCCR0, CS02); +#elif defined(TCCR0) && defined(CS01) && defined(CS00) + // this combination is for the standard atmega8 + sbi(TCCR0, CS01); + sbi(TCCR0, CS00); +#elif defined(TCCR0B) && defined(CS01) && defined(CS00) + // this combination is for the standard 168/328/1280/2560 + sbi(TCCR0B, CS01); + sbi(TCCR0B, CS00); +#elif defined(TCCR0A) && defined(CS01) && defined(CS00) + // this combination is for the __AVR_ATmega645__ series + sbi(TCCR0A, CS01); + sbi(TCCR0A, CS00); +#else + #error Timer 0 prescale factor 64 not set correctly +#endif + + // enable timer 0 overflow interrupt +#if defined(TIMSK) && defined(TOIE0) + sbi(TIMSK, TOIE0); +#elif defined(TIMSK0) && defined(TOIE0) + sbi(TIMSK0, TOIE0); +#else + #error Timer 0 overflow interrupt not set correctly +#endif + + // timers 1 and 2 are used for phase-correct hardware pwm + // this is better for motors as it ensures an even waveform + // note, however, that fast pwm mode can achieve a frequency of up + // 8 MHz (with a 16 MHz clock) at 50% duty cycle + +#if defined(TCCR1B) && defined(CS11) && defined(CS10) + TCCR1B = 0; + + // set timer 1 prescale factor to 64 + sbi(TCCR1B, CS11); +#if F_CPU >= 8000000L + sbi(TCCR1B, CS10); +#endif +#elif defined(TCCR1) && defined(CS11) && defined(CS10) + sbi(TCCR1, CS11); +#if F_CPU >= 8000000L + sbi(TCCR1, CS10); +#endif +#endif + // put timer 1 in 8-bit phase correct pwm mode +#if defined(TCCR1A) && defined(WGM10) + sbi(TCCR1A, WGM10); +#elif defined(TCCR1) + #warning this needs to be finished +#endif + + // set timer 2 prescale factor to 64 +#if defined(TCCR2) && defined(CS22) + sbi(TCCR2, CS22); +#elif defined(TCCR2B) && defined(CS22) + sbi(TCCR2B, CS22); +#else + #warning Timer 2 not finished (may not be present on this CPU) +#endif + + // configure timer 2 for phase correct pwm (8-bit) +#if defined(TCCR2) && defined(WGM20) + sbi(TCCR2, WGM20); +#elif defined(TCCR2A) && defined(WGM20) + sbi(TCCR2A, WGM20); +#else + #warning Timer 2 not finished (may not be present on this CPU) +#endif + +#if defined(TCCR3B) && defined(CS31) && defined(WGM30) + sbi(TCCR3B, CS31); // set timer 3 prescale factor to 64 + sbi(TCCR3B, CS30); + sbi(TCCR3A, WGM30); // put timer 3 in 8-bit phase correct pwm mode +#endif + +#if defined(TCCR4A) && defined(TCCR4B) && defined(TCCR4D) /* beginning of timer4 block for 32U4 and similar */ + sbi(TCCR4B, CS42); // set timer4 prescale factor to 64 + sbi(TCCR4B, CS41); + sbi(TCCR4B, CS40); + sbi(TCCR4D, WGM40); // put timer 4 in phase- and frequency-correct PWM mode + sbi(TCCR4A, PWM4A); // enable PWM mode for comparator OCR4A + sbi(TCCR4C, PWM4D); // enable PWM mode for comparator OCR4D +#else /* beginning of timer4 block for ATMEGA1280 and ATMEGA2560 */ +#if defined(TCCR4B) && defined(CS41) && defined(WGM40) + sbi(TCCR4B, CS41); // set timer 4 prescale factor to 64 + sbi(TCCR4B, CS40); + sbi(TCCR4A, WGM40); // put timer 4 in 8-bit phase correct pwm mode +#endif +#endif /* end timer4 block for ATMEGA1280/2560 and similar */ + +#if defined(TCCR5B) && defined(CS51) && defined(WGM50) + sbi(TCCR5B, CS51); // set timer 5 prescale factor to 64 + sbi(TCCR5B, CS50); + sbi(TCCR5A, WGM50); // put timer 5 in 8-bit phase correct pwm mode +#endif + +#if defined(ADCSRA) + // set a2d prescale factor to 128 + // 16 MHz / 128 = 125 KHz, inside the desired 50-200 KHz range. + // XXX: this will not work properly for other clock speeds, and + // this code should use F_CPU to determine the prescale factor. + sbi(ADCSRA, ADPS2); + sbi(ADCSRA, ADPS1); + sbi(ADCSRA, ADPS0); + + // enable a2d conversions + sbi(ADCSRA, ADEN); +#endif + + // the bootloader connects pins 0 and 1 to the USART; disconnect them + // here so they can be used as normal digital i/o; they will be + // reconnected in Serial.begin() +#if defined(UCSRB) + UCSRB = 0; +#elif defined(UCSR0B) + UCSR0B = 0; +#endif +} +}; +#endif + +#endif + diff --git a/ras/test.py b/ras/test.py new file mode 100644 index 0000000..efeef49 --- /dev/null +++ b/ras/test.py @@ -0,0 +1,40 @@ +import smbus +import time + +# Simple test, on up/down * 2 avec sleep 1 seconde entre chaque + +# Remplacer 0 par 1 si nouveau Raspberry +bus = smbus.SMBus(1) +address = 0x12 + +#print "Envoi de la valeur 3" +#bus.write_byte(address, 3) +bus.write_byte(address, 1) +# Pause de 1 seconde pour laisser le temps au traitement de se faire +time.sleep(1) +reponse = bus.read_byte(address) +print "La reponse de l'arduino : ", reponse + + +time.sleep(1) +bus.write_byte(address, 0) +# Pause de 1 seconde pour laisser le temps au traitement de se faire +time.sleep(1) +reponse = bus.read_byte(address) +print "La reponse de l'arduino : ", reponse + + +time.sleep(1) +bus.write_byte(address, 1) +# Pause de 1 seconde pour laisser le temps au traitement de se faire +time.sleep(1) +reponse = bus.read_byte(address) +print "La reponse de l'arduino : ", reponse + + +time.sleep(1) +bus.write_byte(address, 0) +# Pause de 1 seconde pour laisser le temps au traitement de se faire +time.sleep(1) +reponse = bus.read_byte(address) +print "La reponse de l'arduino : ", reponse diff --git a/ras/test2.py b/ras/test2.py new file mode 100644 index 0000000..08f0965 --- /dev/null +++ b/ras/test2.py @@ -0,0 +1,13 @@ +import smbus +import time + +# Remplacer 0 par 1 si nouveau Raspberry +bus = smbus.SMBus(1) +address = 0x12 + +for x in range(0, 100): + bus.write_byte(address, 1) + #bus.read_byte(address) +for x in range(0, 100): + bus.write_byte(address, 0) + #bus.read_byte(address) diff --git a/ras/test3.py b/ras/test3.py new file mode 100644 index 0000000..f5f51e6 --- /dev/null +++ b/ras/test3.py @@ -0,0 +1,12 @@ +import smbus +import time + +# Remplacer 0 par 1 si nouveau Raspberry +bus = smbus.SMBus(1) +address = 0x12 + +for x in range(0, 100): + bus.write_byte(address, 1) + time.sleep(0.01) + bus.write_byte(address, 0) + time.sleep(0.01) diff --git a/schema/rastable.fzz b/schema/rastable.fzz new file mode 100644 index 0000000000000000000000000000000000000000..5563a7c85af219e5f3d84fe53fd7366b0047a840 GIT binary patch literal 122891 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 literal 0 HcmV?d00001

    %bzq1Cb9xum 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 R(g?aXVTY!oZ)xAY{|`H!2>1X1 literal 0 HcmV?d00001 diff --git a/arduino/test/libraries/docs/Doxyfile b/arduino/test/libraries/docs/Doxyfile new file mode 100644 index 0000000..aa55681 --- /dev/null +++ b/arduino/test/libraries/docs/Doxyfile @@ -0,0 +1,2331 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "FastLED" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 3.1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = YES + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = . lib8tion + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = M0-clocklessnotes.md TODO.md + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html/docs/3.1 + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /oP6!2IAy3 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

  • ~AW! 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 YB;AhAbg*SG?HTrV3_C|_`$&iX14IGxMgRZ+ literal 0 HcmV?d00001 diff --git a/arduino/Fire2012WithPalette/Fire2012WithPalette.ino b/arduino/Fire2012WithPalette/Fire2012WithPalette.ino new file mode 100644 index 0000000..8a18551 --- /dev/null +++ b/arduino/Fire2012WithPalette/Fire2012WithPalette.ino @@ -0,0 +1,164 @@ +#include + +#define LED_PIN 6 +#define COLOR_ORDER GRB +#define CHIPSET WS2812 +#define NUM_LEDS 6 + +#define BRIGHTNESS 200 +#define FRAMES_PER_SECOND 60 + +bool gReverseDirection = false; + +CRGB leds[NUM_LEDS]; + +// Fire2012 with programmable Color Palette +// +// This code is the same fire simulation as the original "Fire2012", +// but each heat cell's temperature is translated to color through a FastLED +// programmable color palette, instead of through the "HeatColor(...)" function. +// +// Four different static color palettes are provided here, plus one dynamic one. +// +// The three static ones are: +// 1. the FastLED built-in HeatColors_p -- this is the default, and it looks +// pretty much exactly like the original Fire2012. +// +// To use any of the other palettes below, just "uncomment" the corresponding code. +// +// 2. a gradient from black to red to yellow to white, which is +// visually similar to the HeatColors_p, and helps to illustrate +// what the 'heat colors' palette is actually doing, +// 3. a similar gradient, but in blue colors rather than red ones, +// i.e. from black to blue to aqua to white, which results in +// an "icy blue" fire effect, +// 4. a simplified three-step gradient, from black to red to white, just to show +// that these gradients need not have four components; two or +// three are possible, too, even if they don't look quite as nice for fire. +// +// The dynamic palette shows how you can change the basic 'hue' of the +// color palette every time through the loop, producing "rainbow fire". + +CRGBPalette16 gPal; + +void setup() { + delay(3000); // sanity delay + FastLED.addLeds(leds, NUM_LEDS).setCorrection( TypicalLEDStrip ); + FastLED.setBrightness( BRIGHTNESS ); + + // This first palette is the basic 'black body radiation' colors, + // which run from black to red to bright yellow to white. + gPal = HeatColors_p; + + // These are other ways to set up the color palette for the 'fire'. + // First, a gradient from black to red to yellow to white -- similar to HeatColors_p + // gPal = CRGBPalette16( CRGB::Black, CRGB::Red, CRGB::Yellow, CRGB::White); + + // Second, this palette is like the heat colors, but blue/aqua instead of red/yellow + // gPal = CRGBPalette16( CRGB::Black, CRGB::Blue, CRGB::Aqua, CRGB::White); + + // Third, here's a simpler, three-step gradient, from black to red to white + // gPal = CRGBPalette16( CRGB::Black, CRGB::Red, CRGB::White); + +} + +void loop() +{ + // Add entropy to random number generator; we use a lot of it. + random16_add_entropy( random()); + + // Fourth, the most sophisticated: this one sets up a new palette every + // time through the loop, based on a hue that changes every time. + // The palette is a gradient from black, to a dark color based on the hue, + // to a light color based on the hue, to white. + // + // static uint8_t hue = 0; + // hue++; + // CRGB darkcolor = CHSV(hue,255,192); // pure hue, three-quarters brightness + // CRGB lightcolor = CHSV(hue,128,255); // half 'whitened', full brightness + // gPal = CRGBPalette16( CRGB::Black, darkcolor, lightcolor, CRGB::White); + + + Fire2012WithPalette(); // run simulation frame, using palette colors + + FastLED.show(); // display this frame + FastLED.delay(1000 / FRAMES_PER_SECOND); +} + + +// Fire2012 by Mark Kriegsman, July 2012 +// as part of "Five Elements" shown here: http://youtu.be/knWiGsmgycY +//// +// This basic one-dimensional 'fire' simulation works roughly as follows: +// There's a underlying array of 'heat' cells, that model the temperature +// at each point along the line. Every cycle through the simulation, +// four steps are performed: +// 1) All cells cool down a little bit, losing heat to the air +// 2) The heat from each cell drifts 'up' and diffuses a little +// 3) Sometimes randomly new 'sparks' of heat are added at the bottom +// 4) The heat from each cell is rendered as a color into the leds array +// The heat-to-color mapping uses a black-body radiation approximation. +// +// Temperature is in arbitrary units from 0 (cold black) to 255 (white hot). +// +// This simulation scales it self a bit depending on NUM_LEDS; it should look +// "OK" on anywhere from 20 to 100 LEDs without too much tweaking. +// +// I recommend running this simulation at anywhere from 30-100 frames per second, +// meaning an interframe delay of about 10-35 milliseconds. +// +// Looks best on a high-density LED setup (60+ pixels/meter). +// +// +// There are two main parameters you can play with to control the look and +// feel of your fire: COOLING (used in step 1 above), and SPARKING (used +// in step 3 above). +// +// COOLING: How much does the air cool as it rises? +// Less cooling = taller flames. More cooling = shorter flames. +// Default 55, suggested range 20-100 +#define COOLING 55 + +// SPARKING: What chance (out of 255) is there that a new spark will be lit? +// Higher chance = more roaring fire. Lower chance = more flickery fire. +// Default 120, suggested range 50-200. +#define SPARKING 120 + + +void Fire2012WithPalette() +{ +// Array of temperature readings at each simulation cell + static byte heat[NUM_LEDS]; + + // Step 1. Cool down every cell a little + for( int i = 0; i < NUM_LEDS; i++) { + heat[i] = qsub8( heat[i], random8(0, ((COOLING * 10) / NUM_LEDS) + 2)); + } + + // Step 2. Heat from each cell drifts 'up' and diffuses a little + for( int k= NUM_LEDS - 1; k >= 2; k--) { + heat[k] = (heat[k - 1] + heat[k - 2] + heat[k - 2] ) / 3; + } + + // Step 3. Randomly ignite new 'sparks' of heat near the bottom + if( random8() < SPARKING ) { + int y = random8(7); + heat[y] = qadd8( heat[y], random8(160,255) ); + } + + // Step 4. Map from heat cells to LED colors + for( int j = 0; j < NUM_LEDS; j++) { + // Scale the heat value from 0-255 down to 0-240 + // for best results with color palettes. + byte colorindex = scale8( heat[j], 240); + CRGB color = ColorFromPalette( gPal, colorindex); + int pixelnumber; + if( gReverseDirection ) { + pixelnumber = (NUM_LEDS-1) - j; + } else { + pixelnumber = j; + } + leds[pixelnumber] = color; + } +} + diff --git a/arduino/Noise/Noise.ino b/arduino/Noise/Noise.ino new file mode 100644 index 0000000..f1ad740 --- /dev/null +++ b/arduino/Noise/Noise.ino @@ -0,0 +1,112 @@ +#include + +// +// Mark's xy coordinate mapping code. See the XYMatrix for more information on it. +// + +// Params for width and height +const uint8_t kMatrixWidth = 1; +const uint8_t kMatrixHeight = 6; +#define MAX_DIMENSION ((kMatrixWidth>kMatrixHeight) ? kMatrixWidth : kMatrixHeight) +#define NUM_LEDS (kMatrixWidth * kMatrixHeight) +// Param for different pixel layouts +const bool kMatrixSerpentineLayout = true; + + +uint16_t XY( uint8_t x, uint8_t y) +{ + uint16_t i; + + if( kMatrixSerpentineLayout == false) { + i = (y * kMatrixWidth) + x; + } + + if( kMatrixSerpentineLayout == true) { + if( y & 0x01) { + // Odd rows run backwards + uint8_t reverseX = (kMatrixWidth - 1) - x; + i = (y * kMatrixWidth) + reverseX; + } else { + // Even rows run forwards + i = (y * kMatrixWidth) + x; + } + } + + return i; +} + +// The leds +CRGB leds[kMatrixWidth * kMatrixHeight]; + +// The 32bit version of our coordinates +static uint16_t x; +static uint16_t y; +static uint16_t z; + +// We're using the x/y dimensions to map to the x/y pixels on the matrix. We'll +// use the z-axis for "time". speed determines how fast time moves forward. Try +// 1 for a very slow moving effect, or 60 for something that ends up looking like +// water. +// uint16_t speed = 1; // almost looks like a painting, moves very slowly +uint16_t speed = 20; // a nice starting speed, mixes well with a scale of 100 +// uint16_t speed = 33; +// uint16_t speed = 100; // wicked fast! + +// Scale determines how far apart the pixels in our noise matrix are. Try +// changing these values around to see how it affects the motion of the display. The +// higher the value of scale, the more "zoomed out" the noise iwll be. A value +// of 1 will be so zoomed in, you'll mostly see solid colors. + +// uint16_t scale = 1; // mostly just solid colors +// uint16_t scale = 4011; // very zoomed out and shimmery +uint16_t scale = 311; + +// This is the array that we keep our computed noise values in +uint8_t noise[MAX_DIMENSION][MAX_DIMENSION]; + +void setup() { + // uncomment the following lines if you want to see FPS count information + // Serial.begin(38400); + // Serial.println("resetting!"); + delay(3000); + LEDS.addLeds(leds,NUM_LEDS); + LEDS.setBrightness(96); + + // Initialize our coordinates to some random values + x = random16(); + y = random16(); + z = random16(); +} + +// Fill the x/y array of 8-bit noise values using the inoise8 function. +void fillnoise8() { + for(int i = 0; i < MAX_DIMENSION; i++) { + int ioffset = scale * i; + for(int j = 0; j < MAX_DIMENSION; j++) { + int joffset = scale * j; + noise[i][j] = inoise8(x + ioffset,y + joffset,z); + } + } + z += speed; +} + + +void loop() { + static uint8_t ihue=0; + fillnoise8(); + for(int i = 0; i < kMatrixWidth; i++) { + for(int j = 0; j < kMatrixHeight; j++) { + // We use the value at the (i,j) coordinate in the noise + // array for our brightness, and the flipped value from (j,i) + // for our pixel's hue. + leds[XY(i,j)] = CHSV(noise[j][i],255,noise[i][j]); + + // You can also explore other ways to constrain the hue used, like below + // leds[XY(i,j)] = CHSV(ihue + (noise[j][i]>>2),255,noise[i][j]); + } + } + ihue+=1; + + LEDS.show(); + // delay(10); +} diff --git a/arduino/arduino-headless b/arduino/arduino-headless new file mode 100755 index 0000000..7fad0cc --- /dev/null +++ b/arduino/arduino-headless @@ -0,0 +1,5 @@ +#!/bin/bash +Xvfb :1 -nolisten tcp -screen :1 1280x800x24 & +xvfb="$!" +DISPLAY=:1 arduino "$@" +kill -9 $xvfb diff --git a/arduino/slave/slave.ino b/arduino/slave/slave.ino new file mode 100644 index 0000000..5bff57d --- /dev/null +++ b/arduino/slave/slave.ino @@ -0,0 +1,38 @@ +#include + +#define SLAVE_ADDRESS 0x12 +int dataReceived = 0; + +void setup() { + Serial.begin(9600); + Wire.begin(SLAVE_ADDRESS); + Wire.onReceive(receiveData); + Wire.onRequest(sendData); + pinMode(13, OUTPUT); + digitalWrite(13, LOW); +} + +void loop() { + delay(100); +} + +void receiveData(int byteCount) { + while(Wire.available()) { + dataReceived = Wire.read(); + Serial.print("Donnee recue : "); + Serial.println(dataReceived); + } +} + +void sendData() { + if (dataReceived == 1) { + Serial.println("HIGH"); + digitalWrite(13, HIGH); + } else { + Serial.println("LOW"); + digitalWrite(13, LOW); + } + //int envoi = dataReceived + 1; + //Wire.write(envoi); + Wire.write(0); +} diff --git a/arduino/stripok.bkp/stripok.ino b/arduino/stripok.bkp/stripok.ino new file mode 100644 index 0000000..831e8e7 --- /dev/null +++ b/arduino/stripok.bkp/stripok.ino @@ -0,0 +1,86 @@ +#include "FastLED.h" +#include + +#define NUM_LEDS 6 +#define DATA_PIN 6 +#define SLAVE_ADDRESS 0x12 + +// Define the array of leds +CRGB leds[NUM_LEDS]; + +void setup() { + FastLED.addLeds(leds, NUM_LEDS); + Wire.begin(SLAVE_ADDRESS); + Wire.onReceive(receiveData); +} + +void loop() { + /* + // Turn the LED on, then pause + leds[0] = CRGB::Red; + FastLED.show(); + delay(500); + // Now turn the LED off, then pause + leds[0] = CRGB::Blue; + FastLED.show(); + */ + delay(500); +} + +void receiveData(int byteCount) { + while(Wire.available()) { + if (1 == Wire.read()) { + leds[0] = CRGB::Red; + FastLED.show(); + } else { + leds[0] = CRGB::Blue; + FastLED.show(); + } + } +} + +/* +#include + +#define SLAVE_ADDRESS 0x12 +#define PIN_LED 13 + #define NUM_LEDS 6 + #define DATA_PIN 6 + +// Parameter 1 = number of pixels in strip +// Parameter 2 = pin number (most are valid) +// Parameter 3 = pixel type flags, add together as needed: +// NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs) +// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers) +// NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products) +// NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2) +Adafruit_NeoPixel strip = Adafruit_NeoPixel(6, 6, NEO_GRB + NEO_KHZ800); + +void setup() { + Wire.begin(SLAVE_ADDRESS); + Wire.onReceive(receiveData); + pinMode(PIN_LED, OUTPUT); + digitalWrite(PIN_LED, LOW); + +strip.begin();// initialize strip +strip.show(); // Update all LEDs (= turn OFF, since none of them have been set yet!) +c = strip.Color(255, 0, 0); // define the variable c as RED (R,G,B) +strip.setPixelColor(2, c); // set LED 10 to the color in variable c (red) +strip.show(); // Update all LEDs (= make LED 10 red) + +} + +void loop() { + delay(10000); +} + +void receiveData(int byteCount) { + while(Wire.available()) { + if (1 == Wire.read()) { + digitalWrite(13, HIGH); + } else { + digitalWrite(13, LOW); + } + } +} +*/ diff --git a/arduino/stripok/stripok.ino b/arduino/stripok/stripok.ino new file mode 100644 index 0000000..70d8156 --- /dev/null +++ b/arduino/stripok/stripok.ino @@ -0,0 +1,31 @@ +#include "FastLED.h" +#include + +#define NUM_LEDS 6 +#define DATA_PIN 6 +#define SLAVE_ADDRESS 0x12 + +// Define the array of leds +CRGB leds[NUM_LEDS]; + +void setup() { + FastLED.addLeds(leds, NUM_LEDS); + Wire.begin(SLAVE_ADDRESS); + Wire.onReceive(receiveData); +} + +void loop() { + delay(500); +} + +void receiveData(int byteCount) { + while(Wire.available()) { + if (1 == Wire.read()) { + leds[0] = CRGB::Red; + FastLED.show(); + } else { + leds[0] = CRGB::Blue; + FastLED.show(); + } + } +} diff --git a/arduino/test/FastLED.cpp b/arduino/test/FastLED.cpp new file mode 100644 index 0000000..9de0ce3 --- /dev/null +++ b/arduino/test/FastLED.cpp @@ -0,0 +1,247 @@ +#define FASTLED_INTERNAL +#include "FastLED.h" + + +#if defined(__SAM3X8E__) +volatile uint32_t fuckit; +#endif + +FASTLED_NAMESPACE_BEGIN + +void *pSmartMatrix = NULL; + +CFastLED FastLED; + +CLEDController *CLEDController::m_pHead = NULL; +CLEDController *CLEDController::m_pTail = NULL; +static uint32_t lastshow = 0; + +// uint32_t CRGB::Squant = ((uint32_t)((__TIME__[4]-'0') * 28))<<16 | ((__TIME__[6]-'0')*50)<<8 | ((__TIME__[7]-'0')*28); + +CFastLED::CFastLED() { + // clear out the array of led controllers + // m_nControllers = 0; + m_Scale = 255; + m_nFPS = 0; +} + +CLEDController &CFastLED::addLeds(CLEDController *pLed, + struct CRGB *data, + int nLedsOrOffset, int nLedsIfOffset) { + int nOffset = (nLedsIfOffset > 0) ? nLedsOrOffset : 0; + int nLeds = (nLedsIfOffset > 0) ? nLedsIfOffset : nLedsOrOffset; + + pLed->init(); + pLed->setLeds(data + nOffset, nLeds); + FastLED.setMaxRefreshRate(pLed->getMaxRefreshRate(),true); + return *pLed; +} + +void CFastLED::show(uint8_t scale) { + // guard against showing too rapidly + while(m_nMinMicros && ((micros()-lastshow) < m_nMinMicros)); + lastshow = micros(); + + CLEDController *pCur = CLEDController::head(); + while(pCur) { + uint8_t d = pCur->getDither(); + if(m_nFPS < 100) { pCur->setDither(0); } + pCur->showLeds(scale); + pCur->setDither(d); + pCur = pCur->next(); + } + countFPS(); +} + +int CFastLED::count() { + int x = 0; + CLEDController *pCur = CLEDController::head(); + while( pCur) { + x++; + pCur = pCur->next(); + } + return x; +} + +CLEDController & CFastLED::operator[](int x) { + CLEDController *pCur = CLEDController::head(); + while(x-- && pCur) { + pCur = pCur->next(); + } + if(pCur == NULL) { + return *(CLEDController::head()); + } else { + return *pCur; + } +} + +void CFastLED::showColor(const struct CRGB & color, uint8_t scale) { + while(m_nMinMicros && ((micros()-lastshow) < m_nMinMicros)); + lastshow = micros(); + + CLEDController *pCur = CLEDController::head(); + while(pCur) { + uint8_t d = pCur->getDither(); + if(m_nFPS < 100) { pCur->setDither(0); } + pCur->showColor(color, scale); + pCur->setDither(d); + pCur = pCur->next(); + } + countFPS(); +} + +void CFastLED::clear(boolean writeData) { + if(writeData) { + showColor(CRGB(0,0,0), 0); + } + clearData(); +} + +void CFastLED::clearData() { + CLEDController *pCur = CLEDController::head(); + while(pCur) { + pCur->clearLedData(); + pCur = pCur->next(); + } +} + +void CFastLED::delay(unsigned long ms) { + unsigned long start = millis(); + while((millis()-start) < ms) { +#ifndef FASTLED_ACCURATE_CLOCK + // make sure to allow at least one ms to pass to ensure the clock moves + // forward + ::delay(1); +#endif + show(); + } +} + +void CFastLED::setTemperature(const struct CRGB & temp) { + CLEDController *pCur = CLEDController::head(); + while(pCur) { + pCur->setTemperature(temp); + pCur = pCur->next(); + } +} + +void CFastLED::setCorrection(const struct CRGB & correction) { + CLEDController *pCur = CLEDController::head(); + while(pCur) { + pCur->setCorrection(correction); + pCur = pCur->next(); + } +} + +void CFastLED::setDither(uint8_t ditherMode) { + CLEDController *pCur = CLEDController::head(); + while(pCur) { + pCur->setDither(ditherMode); + pCur = pCur->next(); + } +} + +// +// template void transpose8(unsigned char A[8], unsigned char B[8]) { +// uint32_t x, y, t; +// +// // Load the array and pack it into x and y. +// y = *(unsigned int*)(A); +// x = *(unsigned int*)(A+4); +// +// // x = (A[0]<<24) | (A[m]<<16) | (A[2*m]<<8) | A[3*m]; +// // y = (A[4*m]<<24) | (A[5*m]<<16) | (A[6*m]<<8) | A[7*m]; +// + // // pre-transform x + // t = (x ^ (x >> 7)) & 0x00AA00AA; x = x ^ t ^ (t << 7); + // t = (x ^ (x >>14)) & 0x0000CCCC; x = x ^ t ^ (t <<14); + // + // // pre-transform y + // t = (y ^ (y >> 7)) & 0x00AA00AA; y = y ^ t ^ (t << 7); + // t = (y ^ (y >>14)) & 0x0000CCCC; y = y ^ t ^ (t <<14); + // + // // final transform + // t = (x & 0xF0F0F0F0) | ((y >> 4) & 0x0F0F0F0F); + // y = ((x << 4) & 0xF0F0F0F0) | (y & 0x0F0F0F0F); + // x = t; +// +// B[7*n] = y; y >>= 8; +// B[6*n] = y; y >>= 8; +// B[5*n] = y; y >>= 8; +// B[4*n] = y; +// +// B[3*n] = x; x >>= 8; +// B[2*n] = x; x >>= 8; +// B[n] = x; x >>= 8; +// B[0] = x; +// // B[0]=x>>24; B[n]=x>>16; B[2*n]=x>>8; B[3*n]=x>>0; +// // B[4*n]=y>>24; B[5*n]=y>>16; B[6*n]=y>>8; B[7*n]=y>>0; +// } +// +// void transposeLines(Lines & out, Lines & in) { +// transpose8<1,2>(in.bytes, out.bytes); +// transpose8<1,2>(in.bytes + 8, out.bytes + 1); +// } + +extern int noise_min; +extern int noise_max; + +void CFastLED::countFPS(int nFrames) { + static int br = 0; + static uint32_t lastframe = 0; // millis(); + + if(br++ >= nFrames) { + uint32_t now = millis(); + now -= lastframe; + m_nFPS = (br * 1000) / now; + br = 0; + lastframe = millis(); + } +} + +void CFastLED::setMaxRefreshRate(uint16_t refresh, bool constrain) { + if(constrain) { + // if we're constraining, the new value of m_nMinMicros _must_ be higher than previously (because we're only + // allowed to slow things down if constraining) + if(refresh > 0) { + m_nMinMicros = ( (1000000/refresh) > m_nMinMicros) ? (1000000/refresh) : m_nMinMicros; + } + } else if(refresh > 0) { + m_nMinMicros = 1000000 / refresh; + } else { + m_nMinMicros = 0; + } +} + + +#ifdef NEED_CXX_BITS +namespace __cxxabiv1 +{ + extern "C" void __cxa_pure_virtual (void) {} + /* guard variables */ + + /* The ABI requires a 64-bit type. */ + __extension__ typedef int __guard __attribute__((mode(__DI__))); + + extern "C" int __cxa_guard_acquire (__guard *); + extern "C" void __cxa_guard_release (__guard *); + extern "C" void __cxa_guard_abort (__guard *); + + extern "C" int __cxa_guard_acquire (__guard *g) + { + return !*(char *)(g); + } + + extern "C" void __cxa_guard_release (__guard *g) + { + *(char *)g = 1; + } + + extern "C" void __cxa_guard_abort (__guard *) + { + + } +} +#endif + +FASTLED_NAMESPACE_END diff --git a/arduino/test/FastLED.h b/arduino/test/FastLED.h new file mode 100644 index 0000000..fd0f63b --- /dev/null +++ b/arduino/test/FastLED.h @@ -0,0 +1,490 @@ +#ifndef __INC_FASTSPI_LED2_H +#define __INC_FASTSPI_LED2_H + +///@file FastLED.h +/// central include file for FastLED, defines the CFastLED class/object + +#define xstr(s) str(s) +#define str(s) #s + +#define FASTLED_VERSION 3001000 +#ifndef FASTLED_INTERNAL +#warning FastLED version 3.001.000 (Not really a warning, just telling you here.) +#endif + +#ifndef __PROG_TYPES_COMPAT__ +#define __PROG_TYPES_COMPAT__ +#endif + +#ifdef SmartMatrix_h +#include +#endif + +#ifdef DmxSimple_h +#include +#endif + +#ifdef DmxSerial_h +#include +#endif + +#include + +#include "fastled_config.h" +#include "led_sysdefs.h" + +#include "bitswap.h" +#include "controller.h" +#include "fastpin.h" +#include "fastspi_types.h" +#include "./dmx.h" + +#include "platforms.h" +#include "fastled_progmem.h" + +#include "lib8tion.h" +#include "hsv2rgb.h" +#include "colorutils.h" +#include "colorpalettes.h" + +#include "noise.h" +#include "power_mgt.h" + +#include "fastspi.h" +#include "chipsets.h" + +FASTLED_NAMESPACE_BEGIN + +/// definitions for the spi chipset constants +enum ESPIChipsets { + LPD8806, + WS2801, + WS2803, + SM16716, + P9813, + APA102, + DOTSTAR +}; + +enum ESM { SMART_MATRIX }; +enum OWS2811 { OCTOWS2811,OCTOWS2811_400 }; + +#ifdef FASTLED_HAS_CLOCKLESS +template class NEOPIXEL : public WS2812Controller800Khz {}; +template class TM1829 : public TM1829Controller800Khz {}; +template class TM1809 : public TM1809Controller800Khz {}; +template class TM1804 : public TM1809Controller800Khz {}; +template class TM1803 : public TM1803Controller400Khz {}; +template class UCS1903 : public UCS1903Controller400Khz {}; +template class UCS1903B : public UCS1903BController800Khz {}; +template class UCS1904 : public UCS1904Controller800Khz {}; +template class WS2812 : public WS2812Controller800Khz {}; +template class WS2812B : public WS2812Controller800Khz {}; +template class WS2811 : public WS2811Controller800Khz {}; +template class APA104 : public WS2811Controller800Khz {}; +template class WS2811_400 : public WS2811Controller400Khz {}; +template class GW6205 : public GW6205Controller800Khz {}; +template class GW6205_400 : public GW6205Controller400Khz {}; +template class LPD1886 : public LPD1886Controller1250Khz {}; +#ifdef DmxSimple_h +template class DMXSIMPLE : public DMXSimpleController {}; +#endif +#ifdef DmxSerial_h +template class DMXSERIAL : public DMXSerialController {}; +#endif +#endif + +enum EBlockChipsets { +#ifdef PORTA_FIRST_PIN + WS2811_PORTA, + WS2811_400_PORTA, +#endif +#ifdef PORTB_FIRST_PIN + WS2811_PORTB, + WS2811_400_PORTB, +#endif +#ifdef PORTC_FIRST_PIN + WS2811_PORTC, + WS2811_400_PORTC, +#endif +#ifdef PORTD_FIRST_PIN + WS2811_PORTD, + WS2811_400_PORTD, +#endif +#ifdef HAS_PORTDC + WS2811_PORTDC, + WS2811_400_PORTDC, +#endif +}; + +#if defined(LIB8_ATTINY) +#define NUM_CONTROLLERS 2 +#else +#define NUM_CONTROLLERS 8 +#endif + +/// High level controller interface for FastLED. This class manages controllers, global settings and trackings +/// such as brightness, and refresh rates, and provides access functions for driving led data to controllers +/// via the show/showColor/clear methods. +/// @nosubgrouping +class CFastLED { + // int m_nControllers; + uint8_t m_Scale; ///< The current global brightness scale setting + uint16_t m_nFPS; ///< Tracking for current FPS value + uint32_t m_nMinMicros; ///< minimum µs between frames, used for capping frame rates. +public: + CFastLED(); + + + /// Add a CLEDController instance to the world. Exposed to the public to allow people to implement their own + /// CLEDController objects or instances. There are two ways to call this method (as well as the other addLeds) + /// variations. The first is with 3 arguments, in which case the arguments are the controller, a pointer to + /// led data, and the number of leds used by this controller. The seocond is with 4 arguments, in which case + /// the first two arguments are the same, the third argument is an offset into the CRGB data where this controller's + /// CRGB data begins, and the fourth argument is the number of leds for this controller object. + /// @param pLed - the led controller being added + /// @param data - base point to an array of CRGB data structures + /// @param nLedsOrOffset - number of leds (3 argument version) or offset into the data array + /// @param nLedsIfOffset - number of leds (4 argument version) + /// @returns a reference to the added controller + static CLEDController &addLeds(CLEDController *pLed, struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0); + + /// @name Adding SPI based controllers + //@{ + /// Add an SPI based CLEDController instance to the world. + /// There are two ways to call this method (as well as the other addLeds) + /// variations. The first is with 2 arguments, in which case the arguments are a pointer to + /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case + /// the first argument is the same, the second argument is an offset into the CRGB data where this controller's + /// CRGB data begins, and the third argument is the number of leds for this controller object. + /// + /// This method also takes a 1 to 5 template parameters for identifying the specific chipset, data and clock pins, + /// RGB ordering, and SPI data rate + /// @param data - base point to an array of CRGB data structures + /// @param nLedsOrOffset - number of leds (3 argument version) or offset into the data array + /// @param nLedsIfOffset - number of leds (4 argument version) + /// @tparam CHIPSET - the chipset type + /// @tparam DATA_PIN - the optional data pin for the leds (if omitted, will default to the first hardware SPI MOSI pin) + /// @tparam CLOCK_PIN - the optional clock pin for the leds (if omitted, will default to the first hardware SPI clock pin) + /// @tparam RGB_ORDER - the rgb ordering for the leds (e.g. what order red, green, and blue data is written out in) + /// @tparam SPI_DATA_RATE - the data rate to drive the SPI clock at, defined using DATA_RATE_MHZ or DATA_RATE_KHZ macros + /// @returns a reference to the added controller + template CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + switch(CHIPSET) { + case LPD8806: { static LPD8806Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2801: { static WS2801Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2803: { static WS2803Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case SM16716: { static SM16716Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case P9813: { static P9813Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case DOTSTAR: + case APA102: { static APA102Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + } + } + + template static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + switch(CHIPSET) { + case LPD8806: { static LPD8806Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2801: { static WS2801Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2803: { static WS2803Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case SM16716: { static SM16716Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case P9813: { static P9813Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case DOTSTAR: + case APA102: { static APA102Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + } + } + + template static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + switch(CHIPSET) { + case LPD8806: { static LPD8806Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2801: { static WS2801Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case WS2803: { static WS2803Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case SM16716: { static SM16716Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case P9813: { static P9813Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + case DOTSTAR: + case APA102: { static APA102Controller c; return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); } + } + } + +#ifdef SPI_DATA + template static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + return addLeds(data, nLedsOrOffset, nLedsIfOffset); + } + + template static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + return addLeds(data, nLedsOrOffset, nLedsIfOffset); + } + + template static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + return addLeds(data, nLedsOrOffset, nLedsIfOffset); + } + +#endif + //@} + +#ifdef FASTLED_HAS_CLOCKLESS + /// @name Adding 3-wire led controllers + //@{ + /// Add a clockless (aka 3wire, also DMX) based CLEDController instance to the world. + /// There are two ways to call this method (as well as the other addLeds) + /// variations. The first is with 2 arguments, in which case the arguments are a pointer to + /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case + /// the first argument is the same, the second argument is an offset into the CRGB data where this controller's + /// CRGB data begins, and the third argument is the number of leds for this controller object. + /// + /// This method also takes a 2 to 3 template parameters for identifying the specific chipset, data pin, and rgb ordering + /// RGB ordering, and SPI data rate + /// @param data - base point to an array of CRGB data structures + /// @param nLedsOrOffset - number of leds (3 argument version) or offset into the data array + /// @param nLedsIfOffset - number of leds (4 argument version) + /// @tparam CHIPSET - the chipset type (required) + /// @tparam DATA_PIN - the optional data pin for the leds (required) + /// @tparam RGB_ORDER - the rgb ordering for the leds (e.g. what order red, green, and blue data is written out in) + /// @returns a reference to the added controller + template class CHIPSET, uint8_t DATA_PIN, EOrder RGB_ORDER> + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + static CHIPSET c; + return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); + } + + template class CHIPSET, uint8_t DATA_PIN> + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + static CHIPSET c; + return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); + } + + template class CHIPSET, uint8_t DATA_PIN> + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + static CHIPSET c; + return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); + } + + #ifdef FASTSPI_USE_DMX_SIMPLE + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) + { + switch(CHIPSET) { + case DMX: { static DMXController controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } + } + } + #endif + //@} +#endif + + /// @name Adding 3rd party library controllers + //@{ + /// Add a 3rd party library based CLEDController instance to the world. + /// There are two ways to call this method (as well as the other addLeds) + /// variations. The first is with 2 arguments, in which case the arguments are a pointer to + /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case + /// the first argument is the same, the second argument is an offset into the CRGB data where this controller's + /// CRGB data begins, and the third argument is the number of leds for this controller object. This class includes the SmartMatrix + /// and OctoWS2811 based controllers + /// + /// This method also takes a 1 to 2 template parameters for identifying the specific chipset and rgb ordering + /// RGB ordering, and SPI data rate + /// @param data - base point to an array of CRGB data structures + /// @param nLedsOrOffset - number of leds (3 argument version) or offset into the data array + /// @param nLedsIfOffset - number of leds (4 argument version) + /// @tparam CHIPSET - the chipset type (required) + /// @tparam RGB_ORDER - the rgb ordering for the leds (e.g. what order red, green, and blue data is written out in) + /// @returns a reference to the added controller + template class CHIPSET, EOrder RGB_ORDER> + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + static CHIPSET c; + return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); + } + + template class CHIPSET> + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + static CHIPSET c; + return addLeds(&c, data, nLedsOrOffset, nLedsIfOffset); + } + +#ifdef USE_OCTOWS2811 + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) + { + switch(CHIPSET) { + case OCTOWS2811: { static COctoWS2811Controller controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } + case OCTOWS2811_400: { static COctoWS2811Controller controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } + } + } + + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) + { + return addLeds(data,nLedsOrOffset,nLedsIfOffset); + } + +#endif + +#ifdef SmartMatrix_h + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) + { + switch(CHIPSET) { + case SMART_MATRIX: { static CSmartMatrixController controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } + } + } +#endif + //@} + + +#ifdef FASTLED_HAS_BLOCKLESS + + /// @name adding parallel output controllers + //@{ + /// Add a block based CLEDController instance to the world. + /// There are two ways to call this method (as well as the other addLeds) + /// variations. The first is with 2 arguments, in which case the arguments are a pointer to + /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case + /// the first argument is the same, the second argument is an offset into the CRGB data where this controller's + /// CRGB data begins, and the third argument is the number of leds for this controller object. + /// + /// This method also takes a 2 to 3 template parameters for identifying the specific chipset and rgb ordering + /// RGB ordering, and SPI data rate + /// @param data - base point to an array of CRGB data structures + /// @param nLedsOrOffset - number of leds (3 argument version) or offset into the data array + /// @param nLedsIfOffset - number of leds (4 argument version) + /// @tparam CHIPSET - the chipset/port type (required) + /// @tparam NUM_LANES - how many parallel lanes of output to write + /// @tparam RGB_ORDER - the rgb ordering for the leds (e.g. what order red, green, and blue data is written out in) + /// @returns a reference to the added controller + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + switch(CHIPSET) { + #ifdef PORTA_FIRST_PIN + case WS2811_PORTA: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + case WS2811_400_PORTA: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + #endif + #ifdef PORTB_FIRST_PIN + case WS2811_PORTB: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + case WS2811_400_PORTB: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + #endif + #ifdef PORTC_FIRST_PIN + case WS2811_PORTC: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + case WS2811_400_PORTC: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + #endif + #ifdef PORTD_FIRST_PIN + case WS2811_PORTD: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + case WS2811_400_PORTD: return addLeds(new InlineBlockClocklessController(), data, nLedsOrOffset, nLedsIfOffset); + #endif + #ifdef HAS_PORTDC + case WS2811_PORTDC: return addLeds(new SixteenWayInlineBlockClocklessController<16,NS(320), NS(320), NS(640), RGB_ORDER>(), data, nLedsOrOffset, nLedsIfOffset); + case WS2811_400_PORTDC: return addLeds(new SixteenWayInlineBlockClocklessController<16,NS(800), NS(800), NS(900), RGB_ORDER>(), data, nLedsOrOffset, nLedsIfOffset); + #endif + } + } + + template + static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) { + return addLeds(data,nLedsOrOffset,nLedsIfOffset); + } + //@} +#endif + + /// Set the global brightness scaling + /// @param scale a 0-255 value for how much to scale all leds before writing them out + void setBrightness(uint8_t scale) { m_Scale = scale; } + + /// Get the current global brightness setting + /// @returns the current global brightness value + uint8_t getBrightness() { return m_Scale; } + + /// Update all our controllers with the current led colors, using the passed in brightness + /// @param scale temporarily override the scale + void show(uint8_t scale); + + /// Update all our controllers with the current led colors + void show() { show(m_Scale); } + + /// clear the leds, optionally wiping the local array of data as well + /// @param writeData whether or not to write into the local data array as well + void clear(boolean writeData = false); + + /// clear out the local data array + void clearData(); + + /// Set all leds on all controllers to the given color/scale + /// @param color what color to set the leds to + /// @param scale what brightness scale to show at + void showColor(const struct CRGB & color, uint8_t scale); + + /// Set all leds on all controllers to the given color + /// @param color what color to set the leds to + void showColor(const struct CRGB & color) { showColor(color, m_Scale); } + + /// Delay for the given number of milliseconds. Provided to allow the library to be used on platforms + /// that don't have a delay function (to allow code to be more portable) + /// @param ms the number of milliseconds to pause for + void delay(unsigned long ms); + + /// Set a global color temperature. Sets the color temperature for all added led strips, overriding whatever + /// previous color temperature those controllers may have had + /// @param temp A CRGB structure describing the color temperature + void setTemperature(const struct CRGB & temp); + + /// Set a global color correction. Sets the color correction for all added led strips, + /// overriding whatever previous color correction those controllers may have had. + /// @param correction A CRGB structure describin the color correction. + void setCorrection(const struct CRGB & correction); + + /// Set the dithering mode. Sets the dithering mode for all added led strips, overriding + /// whatever previous dithering option those controllers may have had. + /// @param ditherMode - what type of dithering to use, either BINARY_DITHER or DISABLE_DITHER + void setDither(uint8_t ditherMode = BINARY_DITHER); + + /// Set the maximum refresh rate. This is global for all leds. Attempts to + /// call show faster than this rate will simply wait. Note that the refresh rate + /// defaults to the slowest refresh rate of all the leds added through addLeds. If + /// you wish to set/override this rate, be sure to call setMaxRefreshRate _after_ + /// adding all of your leds. + /// @param refresh - maximum refresh rate in hz + /// @param constrain - constrain refresh rate to the slowest speed yet set + void setMaxRefreshRate(uint16_t refresh, bool constrain=false); + + /// for debugging, will keep track of time between calls to countFPS, and every + /// nFrames calls, it will update an internal counter for the current FPS. + /// @todo make this a rolling counter + /// @param nFrames - how many frames to time for determining FPS + void countFPS(int nFrames=25); + + /// Get the number of frames/second being written out + /// @returns the most recently computed FPS value + uint16_t getFPS() { return m_nFPS; } + + /// Get how many controllers have been registered + /// @returns the number of controllers (strips) that have been added with addLeds + int count(); + + /// Get a reference to a registered controller + /// @returns a reference to the Nth controller + CLEDController & operator[](int x); + + /// Get the number of leds in the first controller + /// @returns the number of LEDs in the first controller + int size() { return (*this)[0].size(); } + + /// Get a pointer to led data for the first controller + /// @returns pointer to the CRGB buffer for the first controller + CRGB *leds() { return (*this)[0].leds(); } +}; + +#define FastSPI_LED FastLED +#define FastSPI_LED2 FastLED +#ifndef LEDS +#define LEDS FastLED +#endif + +extern CFastLED FastLED; + +// Warnings for undefined things +#ifndef HAS_HARDWARE_PIN_SUPPORT +#warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info." +#define NO_HARDWARE_PIN_SUPPORT +#endif + + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/LICENSE b/arduino/test/LICENSE new file mode 100644 index 0000000..ebe4763 --- /dev/null +++ b/arduino/test/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 FastLED + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/arduino/test/PORTING.md b/arduino/test/PORTING.md new file mode 100644 index 0000000..2b4ade2 --- /dev/null +++ b/arduino/test/PORTING.md @@ -0,0 +1,29 @@ +=New platform porting guide= + +== Setting up the basic files/folders == + +* Create platform directory (e.g. platforms/arm/kl26) +* Create configuration header led_sysdefs_arm_kl26.h: + * Define platform flags (like FASTLED_ARM/FASTLED_TEENSY) + * Define configuration parameters re: interrupts, or clock doubling + * Include extar system header files if needed +* Create main platform include, fastled_arm_kl26.h + * Include the various other header files as needed +* Modify led_sysdefs.h to conditionally include platform sysdefs header file +* Modify platforms.h to conditionally include platform fastled header + +== Porting fastpin.h == + +The heart of the FastLED library is the fast pin accesss. This is a templated class that provides 1-2 cycle pin access, bypassing digital write and other such things. As such, this will usually be the first bit of the library that you will want to port when moving to a new platform. Once you have FastPIN up and running then you can do some basic work like testing toggles or running bit-bang'd SPI output. + +There's two low level FastPin classes. There's the base FastPIN template class, and then there is FastPinBB which is for bit-banded access on those MCUs that support bitbanding. Note that the bitband class is optional and primarily useful in the implementation of other functionality internal to the platform. This file is also where you would do the pin to port/bit mapping defines. + +Explaining how the macros work and should be used is currently beyond the scope of this document. + +== Porting fastspi.h == + +This is where you define the low level interface to the hardware SPI system (including a writePixels method that does a bunch of housekeeping for writing led data). Use the fastspi_nop.h file as a reference for the methods that need to be implemented. There are ofteh other useful methods that can help with the internals of the SPI code, I recommend taking a look at how the various platforms implement their SPI classes. + +== Porting clockless.h == + +This is where you define the code for the clockless controllers. Across ARM platforms this will usually be fairly similar - though different arm platforms will have different clock sources that you can/should use. diff --git a/arduino/test/README.md b/arduino/test/README.md new file mode 100644 index 0000000..0f1e3bb --- /dev/null +++ b/arduino/test/README.md @@ -0,0 +1,85 @@ +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FastLED/public) + +IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported, as is avr-gcc 4.3 and earlier. There are known issues with avr-gcc 4.7 and timing based chipsets like the WS2812B. If you are using a linux system make sure you are using avr-gcc 4.8.x not avr-gcc 4.7.x. + +FastLED 3.1 +=========== + +This is a library for easily & efficiently controlling a wide variety of LED chipsets, like the ones +sold by adafruit (Neopixel, DotStar, LPD8806), Sparkfun (WS2801), and aliexpress. In addition to writing to the +leds, this library also includes a number of functions for high-performing 8bit math for manipulating +your RGB values, as well as low level classes for abstracting out access to pins and SPI hardware, while +still keeping things as fast as possible. Tested with Arduino up to 1.6.5 from arduino.cc. + +Quick note for people installing from GitHub repo zips, rename the folder FastLED before copying it to your Arduino/libraries folder. Github likes putting -branchname into the name of the folder, which unfortunately, makes Arduino cranky! + +We have multiple goals with this library: + +* Quick start for new developers - hook up your leds and go, no need to think about specifics of the led chipsets being used +* Zero pain switching LED chipsets - you get some new leds that the library supports, just change the definition of LEDs you're using, et. voila! Your code is running with the new leds. +* High performance - with features like zero cost global brightness scaling, high performance 8-bit math for RGB manipulation, and some of the fastest bit-bang'd SPI support around, FastLED wants to keep as many CPU cycles available for your led patterns as possible + +## Getting help + +If you need help with using the library, please consider going to the google+ community first, which is at http://fastled.io/+ - there are hundreds of people in that group and many times you will get a quicker answer to your question there, as you will be likely to run into other people who have had the same issue. If you run into bugs with the library (compilation failures, the library doing the wrong thing), or if you'd like to request that we support a particular platform or LED chipset, then please open an issue at http://fastled.io/issues and we will try to figure out what is going wrong. + +## Simple example + +How quickly can you get up and running with the library? Here's a simple blink program: + + #include "FastLED.h" + #define NUM_LEDS 60 + CRGB leds[NUM_LEDS]; + void setup() { FastLED.addLeds(leds, NUM_LEDS); } + void loop() { + leds[0] = CRGB::White; FastLED.show(); delay(30); + leds[0] = CRGB::Black; FastLED.show(); delay(30); + } + +## Supported LED chipsets + +Here's a list of all the LED chipsets are supported. More details on the led chipsets are included *TODO: Link to wiki page* + +* Adafruit's DotStars - AKA the APA102 +* Adafruit's Neopixel - aka the WS2812B (also WS2811/WS2812, also supported in lo-speed mode) - a 3 wire addressable led chipset +* TM1809/4 - 3 wire chipset, cheaply available on aliexpress.com +* TM1803 - 3 wire chipset, sold by radio shack +* UCS1903 - another 3 wire led chipset, cheap +* GW6205 - another 3 wire led chipset +* LPD8806 - SPI based chpiset, very high speed +* WS2801 - SPI based chipset, cheap and widely available +* SM16716 - SPI based chipset +* APA102 - SPI based chipset +* P9813 - aka Cool Neon's Total Control Lighting +* DMX - send rgb data out over DMX using arduino DMX libraries +* SmartMatrix panels - needs the SmartMatrix library - https://github.com/pixelmatix/SmartMatrix + + +LPD6803, HL1606, and "595"-style shift registers are no longer supported by the library. The older Version 1 of the library ("FastSPI_LED") has support for these, but is missing many of the advanced features of current versions and is no longer being maintained. + + +## Supported platforms + +Right now the library is supported on a variety of arduino compatable platforms. If it's ARM or AVR and uses the arduino software (or a modified version of it to build) then it is likely supported. Note that we have a long list of upcoming platforms to support, so if you don't see what you're looking for here, ask, it may be on the roadmap (or may already be supported). N.B. at the moment we are only supporting the stock compilers that ship with the arduino software. Support for upgraded compilers, as well as using AVR studio and skipping the arduino entirely, should be coming in a near future release. + +* Arduino & compatibles - straight up arduino devices, uno, duo, leonardo, mega, nano, etc... +* Arduino Yún +* Adafruit Trinket & Gemma - Trinket Pro may be supported, but haven't tested to confirm yet +* Teensy 2, Teensy++ 2, Teensy 3.0, Teensy 3.1, Teensy LC - arduino compataible from pjrc.com with some extra goodies (note the teensy 3, 3.1, and LC are ARM, not AVR!) +* Arduino Due and the digistump DigiX +* RFDuino +* SparkCore +* Arduino Zero + +What types of platforms are we thinking about supporting in the future? Here's a short list: ChipKit32, Maple, Beagleboard + +## What about that name? + +Wait, what happend to FastSPI_LED and FastSPI_LED2? The library was initially named FastSPI_LED because it was focused on very fast and efficient SPI access. However, since then, the library has expanded to support a number of LED chipsets that don't use SPI, as well as a number of math and utility functions for LED processing across the board. We decided that the name FastLED more accurately represents the totality of what the library provides, everything fast, for LEDs. + +## For more information + +Check out the official site http://fastled.io for links to documentation, issues, and news + + +*TODO* - get candy diff --git a/arduino/test/bitswap.h b/arduino/test/bitswap.h new file mode 100644 index 0000000..3af7d1b --- /dev/null +++ b/arduino/test/bitswap.h @@ -0,0 +1,272 @@ +#ifndef __INC_BITSWAP_H +#define __INC_BITSWAP_H + +FASTLED_NAMESPACE_BEGIN + +///@file bitswap.h +///Functions for rotating bits/bytes + +///@defgroup Bitswap Bit swapping/rotate +///Functions for doing a rotation of bits/bytes used by parallel output +///@{ +#ifdef FASTLED_ARM +/// structure representing 8 bits of access +typedef union { + uint8_t raw; + struct { + uint32_t a0:1; + uint32_t a1:1; + uint32_t a2:1; + uint32_t a3:1; + uint32_t a4:1; + uint32_t a5:1; + uint32_t a6:1; + uint32_t a7:1; + }; +} just8bits; + +/// structure representing 32 bits of access +typedef struct { + uint32_t a0:1; + uint32_t a1:1; + uint32_t a2:1; + uint32_t a3:1; + uint32_t a4:1; + uint32_t a5:1; + uint32_t a6:1; + uint32_t a7:1; + uint32_t b0:1; + uint32_t b1:1; + uint32_t b2:1; + uint32_t b3:1; + uint32_t b4:1; + uint32_t b5:1; + uint32_t b6:1; + uint32_t b7:1; + uint32_t c0:1; + uint32_t c1:1; + uint32_t c2:1; + uint32_t c3:1; + uint32_t c4:1; + uint32_t c5:1; + uint32_t c6:1; + uint32_t c7:1; + uint32_t d0:1; + uint32_t d1:1; + uint32_t d2:1; + uint32_t d3:1; + uint32_t d4:1; + uint32_t d5:1; + uint32_t d6:1; + uint32_t d7:1; +} sub4; + +/// union containing a full 8 bytes to swap the bit orientation on +typedef union { + uint32_t word[2]; + uint8_t bytes[8]; + struct { + sub4 a; + sub4 b; + }; +} bitswap_type; + + +#define SWAPSA(X,N) out. X ## 0 = in.a.a ## N; \ + out. X ## 1 = in.a.b ## N; \ + out. X ## 2 = in.a.c ## N; \ + out. X ## 3 = in.a.d ## N; + +#define SWAPSB(X,N) out. X ## 0 = in.b.a ## N; \ + out. X ## 1 = in.b.b ## N; \ + out. X ## 2 = in.b.c ## N; \ + out. X ## 3 = in.b.d ## N; + +#define SWAPS(X,N) out. X ## 0 = in.a.a ## N; \ + out. X ## 1 = in.a.b ## N; \ + out. X ## 2 = in.a.c ## N; \ + out. X ## 3 = in.a.d ## N; \ + out. X ## 4 = in.b.a ## N; \ + out. X ## 5 = in.b.b ## N; \ + out. X ## 6 = in.b.c ## N; \ + out. X ## 7 = in.b.d ## N; + + +/// Do an 8byte by 8bit rotation +__attribute__((always_inline)) inline void swapbits8(bitswap_type in, bitswap_type & out) { + + // SWAPS(a.a,7); + // SWAPS(a.b,6); + // SWAPS(a.c,5); + // SWAPS(a.d,4); + // SWAPS(b.a,3); + // SWAPS(b.b,2); + // SWAPS(b.c,1); + // SWAPS(b.d,0); + + // SWAPSA(a.a,7); + // SWAPSA(a.b,6); + // SWAPSA(a.c,5); + // SWAPSA(a.d,4); + // + // SWAPSB(a.a,7); + // SWAPSB(a.b,6); + // SWAPSB(a.c,5); + // SWAPSB(a.d,4); + // + // SWAPSA(b.a,3); + // SWAPSA(b.b,2); + // SWAPSA(b.c,1); + // SWAPSA(b.d,0); + // // + // SWAPSB(b.a,3); + // SWAPSB(b.b,2); + // SWAPSB(b.c,1); + // SWAPSB(b.d,0); + + for(int i = 0; i < 8; i++) { + just8bits work; + work.a3 = in.word[0] >> 31; + work.a2 = in.word[0] >> 23; + work.a1 = in.word[0] >> 15; + work.a0 = in.word[0] >> 7; + in.word[0] <<= 1; + work.a7 = in.word[1] >> 31; + work.a6 = in.word[1] >> 23; + work.a5 = in.word[1] >> 15; + work.a4 = in.word[1] >> 7; + in.word[1] <<= 1; + out.bytes[i] = work.raw; + } +} + +/// Slow version of the 8 byte by 8 bit rotation +__attribute__((always_inline)) inline void slowswap(unsigned char *A, unsigned char *B) { + + for(int row = 0; row < 7; row++) { + uint8_t x = A[row]; + + uint8_t bit = (1<>= 1) { + if(x & mask) { + *p++ |= bit; + } else { + *p++ &= ~bit; + } + } + // B[7] |= (x & 0x01) << row; x >>= 1; + // B[6] |= (x & 0x01) << row; x >>= 1; + // B[5] |= (x & 0x01) << row; x >>= 1; + // B[4] |= (x & 0x01) << row; x >>= 1; + // B[3] |= (x & 0x01) << row; x >>= 1; + // B[2] |= (x & 0x01) << row; x >>= 1; + // B[1] |= (x & 0x01) << row; x >>= 1; + // B[0] |= (x & 0x01) << row; x >>= 1; + } +} + +/// Simplified form of bits rotating function. Based on code found here - http://www.hackersdelight.org/hdcodetxt/transpose8.c.txt - rotating +/// data into LSB for a faster write (the code using this data can happily walk the array backwards) +__attribute__((always_inline)) inline void transpose8x1(unsigned char *A, unsigned char *B) { + uint32_t x, y, t; + + // Load the array and pack it into x and y. + y = *(unsigned int*)(A); + x = *(unsigned int*)(A+4); + + // pre-transform x + t = (x ^ (x >> 7)) & 0x00AA00AA; x = x ^ t ^ (t << 7); + t = (x ^ (x >>14)) & 0x0000CCCC; x = x ^ t ^ (t <<14); + + // pre-transform y + t = (y ^ (y >> 7)) & 0x00AA00AA; y = y ^ t ^ (t << 7); + t = (y ^ (y >>14)) & 0x0000CCCC; y = y ^ t ^ (t <<14); + + // final transform + t = (x & 0xF0F0F0F0) | ((y >> 4) & 0x0F0F0F0F); + y = ((x << 4) & 0xF0F0F0F0) | (y & 0x0F0F0F0F); + x = t; + + *((uint32_t*)B) = y; + *((uint32_t*)(B+4)) = x; +} + +/// Simplified form of bits rotating function. Based on code found here - http://www.hackersdelight.org/hdcodetxt/transpose8.c.txt +__attribute__((always_inline)) inline void transpose8x1_MSB(unsigned char *A, unsigned char *B) { + uint32_t x, y, t; + + // Load the array and pack it into x and y. + y = *(unsigned int*)(A); + x = *(unsigned int*)(A+4); + + // pre-transform x + t = (x ^ (x >> 7)) & 0x00AA00AA; x = x ^ t ^ (t << 7); + t = (x ^ (x >>14)) & 0x0000CCCC; x = x ^ t ^ (t <<14); + + // pre-transform y + t = (y ^ (y >> 7)) & 0x00AA00AA; y = y ^ t ^ (t << 7); + t = (y ^ (y >>14)) & 0x0000CCCC; y = y ^ t ^ (t <<14); + + // final transform + t = (x & 0xF0F0F0F0) | ((y >> 4) & 0x0F0F0F0F); + y = ((x << 4) & 0xF0F0F0F0) | (y & 0x0F0F0F0F); + x = t; + + B[7] = y; y >>= 8; + B[6] = y; y >>= 8; + B[5] = y; y >>= 8; + B[4] = y; + + B[3] = x; x >>= 8; + B[2] = x; x >>= 8; + B[1] = x; x >>= 8; + B[0] = x; /* */ +} + +/// templated bit-rotating function. Based on code found here - http://www.hackersdelight.org/hdcodetxt/transpose8.c.txt +template +__attribute__((always_inline)) inline void transpose8(unsigned char *A, unsigned char *B) { + uint32_t x, y, t; + + // Load the array and pack it into x and y. + if(m == 1) { + y = *(unsigned int*)(A); + x = *(unsigned int*)(A+4); + } else { + x = (A[0]<<24) | (A[m]<<16) | (A[2*m]<<8) | A[3*m]; + y = (A[4*m]<<24) | (A[5*m]<<16) | (A[6*m]<<8) | A[7*m]; + } + + // pre-transform x + t = (x ^ (x >> 7)) & 0x00AA00AA; x = x ^ t ^ (t << 7); + t = (x ^ (x >>14)) & 0x0000CCCC; x = x ^ t ^ (t <<14); + + // pre-transform y + t = (y ^ (y >> 7)) & 0x00AA00AA; y = y ^ t ^ (t << 7); + t = (y ^ (y >>14)) & 0x0000CCCC; y = y ^ t ^ (t <<14); + + // final transform + t = (x & 0xF0F0F0F0) | ((y >> 4) & 0x0F0F0F0F); + y = ((x << 4) & 0xF0F0F0F0) | (y & 0x0F0F0F0F); + x = t; + + B[7*n] = y; y >>= 8; + B[6*n] = y; y >>= 8; + B[5*n] = y; y >>= 8; + B[4*n] = y; + + B[3*n] = x; x >>= 8; + B[2*n] = x; x >>= 8; + B[n] = x; x >>= 8; + B[0] = x; + // B[0]=x>>24; B[n]=x>>16; B[2*n]=x>>8; B[3*n]=x>>0; + // B[4*n]=y>>24; B[5*n]=y>>16; B[6*n]=y>>8; B[7*n]=y>>0; +} + +#endif + +FASTLED_NAMESPACE_END + +///@} +#endif diff --git a/arduino/test/chipsets.h b/arduino/test/chipsets.h new file mode 100644 index 0000000..32c64bb --- /dev/null +++ b/arduino/test/chipsets.h @@ -0,0 +1,556 @@ +#ifndef __INC_CHIPSETS_H +#define __INC_CHIPSETS_H + +#include "pixeltypes.h" + +///@file chipsets.h +/// contains the bulk of the definitions for the various LED chipsets supported. + +FASTLED_NAMESPACE_BEGIN +///@defgroup chipsets +/// Implementations of CLEDController classes for various led chipsets. +/// +///@{ + +///@name Clocked chipsets - nominally SPI based these chipsets have a data and a clock line. +///@{ +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// LPD8806 controller class - takes data/clock/select pin values (N.B. should take an SPI definition?) +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// LPD8806 controller class. +/// @tparam DATA_PIN the data pin for these leds +/// @tparam CLOCK_PIN the clock pin for these leds +/// @tparam RGB_ORDER the RGB ordering for these leds +/// @tparam SPI_SPEED the clock divider used for these leds. Set using the DATA_RATE_MHZ/DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(12) +template +class LPD8806Controller : public CLEDController { + typedef SPIOutput SPI; + + class LPD8806_ADJUST { + public: + // LPD8806 spec wants the high bit of every rgb data byte sent out to be set. + __attribute__((always_inline)) inline static uint8_t adjust(register uint8_t data) { return ((data>>1) | 0x80) + ((data && (data<254)) & 0x01); } + __attribute__((always_inline)) inline static void postBlock(int len) { + SPI::writeBytesValueRaw(0, ((len*3+63)>>6)); + } + + }; + + SPI mSPI; + int mClearedLeds; + + void checkClear(int nLeds) { + if(nLeds > mClearedLeds) { + clearLine(nLeds); + mClearedLeds = nLeds; + } + } + + void clearLine(int nLeds) { + int n = ((nLeds*3 + 63) >> 6); + mSPI.writeBytesValue(0, n); + } +public: + LPD8806Controller() {} + virtual void init() { + mSPI.init(); + mClearedLeds = 0; + } + + virtual void clearLeds(int nLeds) { + mSPI.select(); + mSPI.writeBytesValueRaw(0x80, nLeds * 3); + mSPI.writeBytesValueRaw(0, ((nLeds*3+63)>>6)); + mSPI.waitFully(); + mSPI.release(); + } + +protected: + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + mSPI.template writePixels<0, LPD8806_ADJUST, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + } + + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + // TODO rgb-ize scale + mSPI.template writePixels<0, LPD8806_ADJUST, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *data, int nLeds, uint8_t scale) { + checkClear(nLeds); + mSPI.template writePixels<0, LPD8806_ADJUST, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + } +#endif +}; + + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// WS2801 definition - takes data/clock/select pin values (N.B. should take an SPI definition?) +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// WS2801 controller class. +/// @tparam DATA_PIN the data pin for these leds +/// @tparam CLOCK_PIN the clock pin for these leds +/// @tparam RGB_ORDER the RGB ordering for these leds +/// @tparam SPI_SPEED the clock divider used for these leds. Set using the DATA_RATE_MHZ/DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(1) +template +class WS2801Controller : public CLEDController { + typedef SPIOutput SPI; + SPI mSPI; + CMinWait<1000> mWaitDelay; +public: + WS2801Controller() {} + + virtual void init() { + mSPI.init(); + mWaitDelay.mark(); + } + + virtual void clearLeds(int nLeds) { + mWaitDelay.wait(); + mSPI.writeBytesValue(0, nLeds*3); + mWaitDelay.mark(); + } + +protected: + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + mWaitDelay.wait(); + mSPI.template writePixels<0, DATA_NOP, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + mWaitDelay.mark(); + } + + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + mWaitDelay.wait(); + mSPI.template writePixels<0, DATA_NOP, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + mWaitDelay.mark(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + mWaitDelay.wait(); + mSPI.template writePixels<0, DATA_NOP, RGB_ORDER>(PixelController(data, nLeds, scale, getDither())); + mWaitDelay.mark(); + } +#endif +}; + +template +class WS2803Controller : public WS2801Controller {}; + +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// APA102 definition - takes data/clock/select pin values (N.B. should take an SPI definition?) +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// APA102 controller class. +/// @tparam DATA_PIN the data pin for these leds +/// @tparam CLOCK_PIN the clock pin for these leds +/// @tparam RGB_ORDER the RGB ordering for these leds +/// @tparam SPI_SPEED the clock divider used for these leds. Set using the DATA_RATE_MHZ/DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(24) +template +class APA102Controller : public CLEDController { + typedef SPIOutput SPI; + SPI mSPI; + + void startBoundary() { mSPI.writeWord(0); mSPI.writeWord(0); } + void endBoundary(int nLeds) { int nBytes = (nLeds/32); do { mSPI.writeByte(0xFF); mSPI.writeByte(0x00); mSPI.writeByte(0x00); mSPI.writeByte(0x00); } while(nBytes--); } + + inline void writeLed(uint8_t b0, uint8_t b1, uint8_t b2) __attribute__((always_inline)) { + mSPI.writeByte(0xFF); mSPI.writeByte(b0); mSPI.writeByte(b1); mSPI.writeByte(b2); + } + +public: + APA102Controller() {} + + virtual void init() { + mSPI.init(); + } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0,0,0), nLeds, CRGB(0,0,0)); + } + +protected: + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); + + mSPI.select(); + + startBoundary(); + for(int i = 0; i < nLeds; i++) { + uint8_t b = pixels.loadAndScale0(); + mSPI.writeWord(0xFF00 | b); + uint16_t w = pixels.loadAndScale1() << 8; + w |= pixels.loadAndScale2(); + mSPI.writeWord(w); + pixels.stepDithering(); + } + endBoundary(nLeds); + + mSPI.waitFully(); + mSPI.release(); + } + + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); + + mSPI.select(); + + startBoundary(); + for(int i = 0; i < nLeds; i++) { + uint16_t b = 0xFF00 | (uint16_t)pixels.loadAndScale0(); + mSPI.writeWord(b); + uint16_t w = pixels.loadAndScale1() << 8; + w |= pixels.loadAndScale2(); + mSPI.writeWord(w); + pixels.advanceData(); + pixels.stepDithering(); + } + endBoundary(nLeds); + mSPI.waitFully(); + mSPI.release(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds,, scale, getDither()); + + mSPI.select(); + + startBoundary(); + for(int i = 0; i < nLeds; i++) { + mSPI.writeByte(0xFF); + uint8_t b = pixels.loadAndScale0(); mSPI.writeByte(b); + b = pixels.loadAndScale1(); mSPI.writeByte(b); + b = pixels.loadAndScale2(); mSPI.writeByte(b); + pixels.advanceData(); + pixels.stepDithering(); + } + endBoundary(nLeds); + mSPI.waitFully(); + mSPI.release(); + } +#endif +}; + + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// P9813 definition - takes data/clock/select pin values (N.B. should take an SPI definition?) +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// P9813 controller class. +/// @tparam DATA_PIN the data pin for these leds +/// @tparam CLOCK_PIN the clock pin for these leds +/// @tparam RGB_ORDER the RGB ordering for these leds +/// @tparam SPI_SPEED the clock divider used for these leds. Set using the DATA_RATE_MHZ/DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(10) +template +class P9813Controller : public CLEDController { + typedef SPIOutput SPI; + SPI mSPI; + + void writeBoundary() { mSPI.writeWord(0); mSPI.writeWord(0); } + + inline void writeLed(uint8_t r, uint8_t g, uint8_t b) __attribute__((always_inline)) { + register uint8_t top = 0xC0 | ((~b & 0xC0) >> 2) | ((~g & 0xC0) >> 4) | ((~r & 0xC0) >> 6); + mSPI.writeByte(top); mSPI.writeByte(b); mSPI.writeByte(g); mSPI.writeByte(r); + } + +public: + P9813Controller() {} + + virtual void init() { + mSPI.init(); + } + + virtual void clearLeds(int nLeds) { + showColor(CRGB(0,0,0), nLeds, CRGB(0,0,0)); + } + +protected: + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); + + mSPI.select(); + + writeBoundary(); + while(nLeds--) { + writeLed(pixels.loadAndScale0(), pixels.loadAndScale1(), pixels.loadAndScale2()); + pixels.stepDithering(); + } + writeBoundary(); + + mSPI.waitFully(); + mSPI.release(); + } + + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds, scale, getDither()); + + mSPI.select(); + + writeBoundary(); + for(int i = 0; i < nLeds; i++) { + writeLed(pixels.loadAndScale0(), pixels.loadAndScale1(), pixels.loadAndScale2()); + pixels.advanceData(); + pixels.stepDithering(); + } + writeBoundary(); + mSPI.waitFully(); + + mSPI.release(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + PixelController pixels(data, nLeds,, scale, getDither()); + + mSPI.select(); + + writeBoundary(); + for(int i = 0; i < nLeds; i++) { + writeLed(pixels.loadAndScale0(), pixels.loadAndScale1(), pixels.loadAndScale2()); + pixels.advanceData(); + pixels.stepDithering(); + } + writeBoundary(); + mSPI.waitFully(); + + mSPI.release(); + } +#endif +}; + + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// SM16716 definition - takes data/clock/select pin values (N.B. should take an SPI definition?) +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// SM16716 controller class. +/// @tparam DATA_PIN the data pin for these leds +/// @tparam CLOCK_PIN the clock pin for these leds +/// @tparam RGB_ORDER the RGB ordering for these leds +/// @tparam SPI_SPEED the clock divider used for these leds. Set using the DATA_RATE_MHZ/DATA_RATE_KHZ macros. Defaults to DATA_RATE_MHZ(16) +template +class SM16716Controller : public CLEDController { + typedef SPIOutput SPI; + SPI mSPI; + + void writeHeader() { + // Write out 50 zeros to the spi line (6 blocks of 8 followed by two single bit writes) + mSPI.select(); + mSPI.writeBytesValueRaw(0, 6); + mSPI.waitFully(); + mSPI.template writeBit<0>(0); + mSPI.template writeBit<0>(0); + mSPI.release(); + } + +public: + SM16716Controller() {} + + virtual void init() { + mSPI.init(); + } + + virtual void clearLeds(int nLeds) { + mSPI.select(); + while(nLeds--) { + mSPI.template writeBit<0>(1); + mSPI.writeByte(0); + mSPI.writeByte(0); + mSPI.writeByte(0); + } + mSPI.waitFully(); + mSPI.release(); + writeHeader(); + } + +protected: + + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + mSPI.template writePixels(PixelController(data, nLeds, scale, getDither())); + writeHeader(); + } + + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + // Make sure the FLAG_START_BIT flag is set to ensure that an extra 1 bit is sent at the start + // of each triplet of bytes for rgb data + // writeHeader(); + mSPI.template writePixels( PixelController(data, nLeds, scale, getDither())); + writeHeader(); + } + +#ifdef SUPPORT_ARGB + virtual void show(const struct CARGB *data, int nLeds, CRGB scale) { + mSPI.writeBytesValue(0, 6); + mSPI.template writeBit<0>(0); + mSPI.template writeBit<0>(0); + + // Make sure the FLAG_START_BIT flag is set to ensure that an extra 1 bit is sent at the start + // of each triplet of bytes for rgb data + mSPI.template writePixels(PixelController(data, nLeds, scale, getDither())); + } +#endif +}; +/// @} +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// Clockless template instantiations - see clockless.h for how the timing values are used +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +#ifdef FASTLED_HAS_CLOCKLESS +/// @name clockless controllers +/// Provides timing definitions for the variety of clockless controllers supplied by the library. +/// @{ + +// We want to force all avr's to use the Trinket controller when running at 8Mhz, because even the 328's at 8Mhz +// need the more tightly defined timeframes. +#if (F_CPU == 8000000 || F_CPU == 16000000 || F_CPU == 24000000) // || F_CPU == 48000000 || F_CPU == 96000000) // 125ns/clock +#define FMUL (F_CPU/8000000) +// LPD1886 +template +class LPD1886Controller1250Khz : public ClocklessController {}; + +// WS2811@800khz 2 clocks, 5 clocks, 3 clocks +template +class WS2812Controller800Khz : public ClocklessController {}; + +template +class WS2811Controller800Khz : public ClocklessController {}; + +template +class WS2811Controller400Khz : public ClocklessController {}; + +template +class UCS1903Controller400Khz : public ClocklessController {}; + +template +class UCS1903BController800Khz : public ClocklessController {}; + +template +class UCS1904Controller800Khz : public ClocklessController {}; + +template +class TM1809Controller800Khz : public ClocklessController {}; + +template +class TM1803Controller400Khz : public ClocklessController {}; + +template +class TM1829Controller800Khz : public ClocklessController {}; + +template +class GW6205Controller400Khz : public ClocklessController {}; + +template +class GW6205Controller800Khz : public ClocklessController {}; + +#else +// GW6205@400khz - 800ns, 800ns, 800ns +template +class GW6205Controller400Khz : public ClocklessController {}; +#if NO_TIME(800, 800, 800) +#warning "Not enough clock cycles available for the GW6205@400khz" +#endif + +// GW6205@400khz - 400ns, 400ns, 400ns +template +class GW6205Controller800Khz : public ClocklessController {}; +#if NO_TIME(400, 400, 400) +#warning "Not enough clock cycles available for the GW6205@400khz" +#endif + +// UCS1903 - 500ns, 1500ns, 500ns +template +class UCS1903Controller400Khz : public ClocklessController {}; +#if NO_TIME(500, 1500, 500) +#warning "Not enough clock cycles available for the UCS1903@400khz" +#endif + +// UCS1903B - 400ns, 450ns, 450ns +template +class UCS1903BController800Khz : public ClocklessController {}; +#if NO_TIME(400, 450, 450) +#warning "Not enough clock cycles available for the UCS1903B@800khz" +#endif + +// UCS1904 - 400ns, 400ns, 450ns +template +class UCS1904Controller800Khz : public ClocklessController {}; +#if NO_TIME(400, 400, 450) +#warning "Not enough clock cycles available for the UCS1904@800khz" +#endif + +// TM1809 - 350ns, 350ns, 550ns +template +class TM1809Controller800Khz : public ClocklessController {}; +#if NO_TIME(350, 350, 550) +#warning "Not enough clock cycles available for the TM1809" +#endif + +// WS2811 - 320ns, 320ns, 640ns +template +class WS2811Controller800Khz : public ClocklessController {}; +#if NO_TIME(320, 320, 640) +#warning "Not enough clock cycles available for the WS2811 (800khz)" +#endif + +// WS2812 - 250ns, 625ns, 375ns +template +class WS2812Controller800Khz : public ClocklessController {}; +#if NO_TIME(250, 625, 375) +#warning "Not enough clock cycles available for the WS2812 (800khz)" +#endif + +// WS2811@400khz - 800ns, 800ns, 900ns +template +class WS2811Controller400Khz : public ClocklessController {}; +#if NO_TIME(800, 800, 900) +#warning "Not enough clock cycles available for the WS2811 (400Khz)" +#endif + +// 750NS, 750NS, 750NS +template +class TM1803Controller400Khz : public ClocklessController {}; +#if NO_TIME(750, 750, 750) +#warning "Not enough clock cycles available for the TM1803" +#endif + +template +class TM1829Controller800Khz : public ClocklessController {}; + +template +class TM1829Controller1600Khz : public ClocklessController {}; +#if NO_TIME(100, 300, 200) +#warning "Not enough clock cycles available for TM1829@1.6Mhz" +#endif + +template +class LPD1886Controller1250Khz : public ClocklessController {}; +#if NO_TIME(200,400,200) +#warning "Not enough clock cycles for LPD1886" +#endif + +#endif +///@} + +#endif +///@} +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/color.h b/arduino/test/color.h new file mode 100644 index 0000000..11b52d3 --- /dev/null +++ b/arduino/test/color.h @@ -0,0 +1,82 @@ +#ifndef __INC_COLOR_H +#define __INC_COLOR_H + +FASTLED_NAMESPACE_BEGIN + +///@file color.h +/// contains definitions for color correction and temperature +///@defgroup ColorEnums Color correction/temperature +/// definitions for color correction and light temperatures +///@{ +typedef enum { + // Color correction starting points + + /// typical values for SMD5050 LEDs + ///@{ + TypicalSMD5050=0xFFB0F0 /* 255, 176, 240 */, + TypicalLEDStrip=0xFFB0F0 /* 255, 176, 240 */, + ///@} + + /// typical values for 8mm "pixels on a string" + /// also for many through-hole 'T' package LEDs + ///@{ + Typical8mmPixel=0xFFE08C /* 255, 224, 140 */, + TypicalPixelString=0xFFE08C /* 255, 224, 140 */, + ///@} + + /// uncorrected color + UncorrectedColor=0xFFFFFF + +} LEDColorCorrection; + + +typedef enum { + /// @name Black-body radiation light sources + /// Black-body radiation light sources emit a (relatively) continuous + /// spectrum, and can be described as having a Kelvin 'temperature' + ///@{ + /// 1900 Kelvin + Candle=0xFF9329 /* 1900 K, 255, 147, 41 */, + /// 2600 Kelvin + Tungsten40W=0xFFC58F /* 2600 K, 255, 197, 143 */, + /// 2850 Kelvin + Tungsten100W=0xFFD6AA /* 2850 K, 255, 214, 170 */, + /// 3200 Kelvin + Halogen=0xFFF1E0 /* 3200 K, 255, 241, 224 */, + /// 5200 Kelvin + CarbonArc=0xFFFAF4 /* 5200 K, 255, 250, 244 */, + /// 5400 Kelvin + HighNoonSun=0xFFFFFB /* 5400 K, 255, 255, 251 */, + /// 6000 Kelvin + DirectSunlight=0xFFFFFF /* 6000 K, 255, 255, 255 */, + /// 7000 Kelvin + OvercastSky=0xC9E2FF /* 7000 K, 201, 226, 255 */, + /// 20000 Kelvin + ClearBlueSky=0x409CFF /* 20000 K, 64, 156, 255 */, + ///@} + + /// @name Gaseous light sources + /// Gaseous light sources emit discrete spectral bands, and while we can + /// approximate their aggregate hue with RGB values, they don't actually + /// have a proper Kelvin temperature. + ///@{ + WarmFluorescent=0xFFF4E5 /* 0 K, 255, 244, 229 */, + StandardFluorescent=0xF4FFFA /* 0 K, 244, 255, 250 */, + CoolWhiteFluorescent=0xD4EBFF /* 0 K, 212, 235, 255 */, + FullSpectrumFluorescent=0xFFF4F2 /* 0 K, 255, 244, 242 */, + GrowLightFluorescent=0xFFEFF7 /* 0 K, 255, 239, 247 */, + BlackLightFluorescent=0xA700FF /* 0 K, 167, 0, 255 */, + MercuryVapor=0xD8F7FF /* 0 K, 216, 247, 255 */, + SodiumVapor=0xFFD1B2 /* 0 K, 255, 209, 178 */, + MetalHalide=0xF2FCFF /* 0 K, 242, 252, 255 */, + HighPressureSodium=0xFFB74C /* 0 K, 255, 183, 76 */, + ///@} + + /// Uncorrected temperature 0xFFFFFF + UncorrectedTemperature=0xFFFFFF +} ColorTemperature; + +FASTLED_NAMESPACE_END + +///@} +#endif diff --git a/arduino/test/colorpalettes.cpp b/arduino/test/colorpalettes.cpp new file mode 100644 index 0000000..3c3a1f5 --- /dev/null +++ b/arduino/test/colorpalettes.cpp @@ -0,0 +1,174 @@ +#ifndef __INC_COLORPALETTES_H +#define __INC_COLORPALETTES_H +#define FASTLED_INTERNAL +#include "FastLED.h" +#include "colorutils.h" +#include "colorpalettes.h" + +FASTLED_USING_NAMESPACE + + +// Preset color schemes, such as they are. + +// These schemes are all declared as "PROGMEM", meaning +// that they won't take up SRAM on AVR chips until used. +// Furthermore, the compiler won't even include these +// in your PROGMEM (flash) storage unless you specifically +// use each one, so you only 'pay for' those you actually use. + + +extern const TProgmemRGBPalette16 CloudColors_p FL_PROGMEM = +{ + CRGB::Blue, + CRGB::DarkBlue, + CRGB::DarkBlue, + CRGB::DarkBlue, + + CRGB::DarkBlue, + CRGB::DarkBlue, + CRGB::DarkBlue, + CRGB::DarkBlue, + + CRGB::Blue, + CRGB::DarkBlue, + CRGB::SkyBlue, + CRGB::SkyBlue, + + CRGB::LightBlue, + CRGB::White, + CRGB::LightBlue, + CRGB::SkyBlue +}; + +extern const TProgmemRGBPalette16 LavaColors_p FL_PROGMEM = +{ + CRGB::Black, + CRGB::Maroon, + CRGB::Black, + CRGB::Maroon, + + CRGB::DarkRed, + CRGB::Maroon, + CRGB::DarkRed, + + CRGB::DarkRed, + CRGB::DarkRed, + CRGB::Red, + CRGB::Orange, + + CRGB::White, + CRGB::Orange, + CRGB::Red, + CRGB::DarkRed +}; + + +extern const TProgmemRGBPalette16 OceanColors_p FL_PROGMEM = +{ + CRGB::MidnightBlue, + CRGB::DarkBlue, + CRGB::MidnightBlue, + CRGB::Navy, + + CRGB::DarkBlue, + CRGB::MediumBlue, + CRGB::SeaGreen, + CRGB::Teal, + + CRGB::CadetBlue, + CRGB::Blue, + CRGB::DarkCyan, + CRGB::CornflowerBlue, + + CRGB::Aquamarine, + CRGB::SeaGreen, + CRGB::Aqua, + CRGB::LightSkyBlue +}; + +extern const TProgmemRGBPalette16 ForestColors_p FL_PROGMEM = +{ + CRGB::DarkGreen, + CRGB::DarkGreen, + CRGB::DarkOliveGreen, + CRGB::DarkGreen, + + CRGB::Green, + CRGB::ForestGreen, + CRGB::OliveDrab, + CRGB::Green, + + CRGB::SeaGreen, + CRGB::MediumAquamarine, + CRGB::LimeGreen, + CRGB::YellowGreen, + + CRGB::LightGreen, + CRGB::LawnGreen, + CRGB::MediumAquamarine, + CRGB::ForestGreen +}; + +/// HSV Rainbow +extern const TProgmemRGBPalette16 RainbowColors_p FL_PROGMEM = +{ + 0xFF0000, 0xD52A00, 0xAB5500, 0xAB7F00, + 0xABAB00, 0x56D500, 0x00FF00, 0x00D52A, + 0x00AB55, 0x0056AA, 0x0000FF, 0x2A00D5, + 0x5500AB, 0x7F0081, 0xAB0055, 0xD5002B +}; + +/// HSV Rainbow colors with alternatating stripes of black +#define RainbowStripesColors_p RainbowStripeColors_p +extern const TProgmemRGBPalette16 RainbowStripeColors_p FL_PROGMEM = +{ + 0xFF0000, 0x000000, 0xAB5500, 0x000000, + 0xABAB00, 0x000000, 0x00FF00, 0x000000, + 0x00AB55, 0x000000, 0x0000FF, 0x000000, + 0x5500AB, 0x000000, 0xAB0055, 0x000000 +}; + +/// HSV color ramp: blue purple ping red orange yellow (and back) +/// Basically, everything but the greens, which tend to make +/// people's skin look unhealthy. This palette is good for +/// lighting at a club or party, where it'll be shining on people. +extern const TProgmemRGBPalette16 PartyColors_p FL_PROGMEM = +{ + 0x5500AB, 0x84007C, 0xB5004B, 0xE5001B, + 0xE81700, 0xB84700, 0xAB7700, 0xABAB00, + 0xAB5500, 0xDD2200, 0xF2000E, 0xC2003E, + 0x8F0071, 0x5F00A1, 0x2F00D0, 0x0007F9 +}; + +/// Approximate "black body radiation" palette, akin to +/// the FastLED 'HeatColor' function. +/// Recommend that you use values 0-240 rather than +/// the usual 0-255, as the last 15 colors will be +/// 'wrapping around' from the hot end to the cold end, +/// which looks wrong. +extern const TProgmemRGBPalette16 HeatColors_p FL_PROGMEM = +{ + 0x000000, + 0x330000, 0x660000, 0x990000, 0xCC0000, 0xFF0000, + 0xFF3300, 0xFF6600, 0xFF9900, 0xFFCC00, 0xFFFF00, + 0xFFFF33, 0xFFFF66, 0xFFFF99, 0xFFFFCC, 0xFFFFFF +}; + + +// Gradient palette "Rainbow_gp", +// provided for situations where you're going +// to use a number of other gradient palettes, AND +// you want a 'standard' FastLED rainbow as well. + +DEFINE_GRADIENT_PALETTE( Rainbow_gp ) { + 0, 255, 0, 0, // Red + 32, 171, 85, 0, // Orange + 64, 171,171, 0, // Yellow + 96, 0,255, 0, // Green + 128, 0,171, 85, // Aqua + 160, 0, 0,255, // Blue + 192, 85, 0,171, // Purple + 224, 171, 0, 85, // Pink + 255, 255, 0, 0};// and back to Red + +#endif diff --git a/arduino/test/colorpalettes.h b/arduino/test/colorpalettes.h new file mode 100644 index 0000000..97f0cb5 --- /dev/null +++ b/arduino/test/colorpalettes.h @@ -0,0 +1,56 @@ +#ifndef __INC_COLORPALETTES_H +#define __INC_COLORPALETTES_H + +#include "colorutils.h" + +///@file colorpalettes.h +/// contains definitions for the predefined color palettes supplied by FastLED. + +FASTLED_NAMESPACE_BEGIN + +///@defgroup Colorpalletes Pre-defined color palletes +/// These schemes are all declared as "PROGMEM", meaning +/// that they won't take up SRAM on AVR chips until used. +/// Furthermore, the compiler won't even include these +/// in your PROGMEM (flash) storage unless you specifically +/// use each one, so you only 'pay for' those you actually use. + +///@{ + +/// Cloudy color pallete +extern const TProgmemRGBPalette16 CloudColors_p FL_PROGMEM; +/// Lava colors +extern const TProgmemRGBPalette16 LavaColors_p FL_PROGMEM; +/// Ocean colors, blues and whites +extern const TProgmemRGBPalette16 OceanColors_p FL_PROGMEM; +/// Forest colors, greens +extern const TProgmemRGBPalette16 ForestColors_p FL_PROGMEM; + +/// HSV Rainbow +extern const TProgmemRGBPalette16 RainbowColors_p FL_PROGMEM; + +#define RainbowStripesColors_p RainbowStripeColors_p +/// HSV Rainbow colors with alternatating stripes of black +extern const TProgmemRGBPalette16 RainbowStripeColors_p FL_PROGMEM; + +/// HSV color ramp: blue purple ping red orange yellow (and back) +/// Basically, everything but the greens, which tend to make +/// people's skin look unhealthy. This palette is good for +/// lighting at a club or party, where it'll be shining on people. +extern const TProgmemRGBPalette16 PartyColors_p FL_PROGMEM; + +/// Approximate "black body radiation" palette, akin to +/// the FastLED 'HeatColor' function. +/// Recommend that you use values 0-240 rather than +/// the usual 0-255, as the last 15 colors will be +/// 'wrapping around' from the hot end to the cold end, +/// which looks wrong. +extern const TProgmemRGBPalette16 HeatColors_p FL_PROGMEM; + + +DECLARE_GRADIENT_PALETTE( Rainbow_gp); + +FASTLED_NAMESPACE_END + +///@} +#endif diff --git a/arduino/test/colorutils.cpp b/arduino/test/colorutils.cpp new file mode 100644 index 0000000..5decca2 --- /dev/null +++ b/arduino/test/colorutils.cpp @@ -0,0 +1,817 @@ +#define FASTLED_INTERNAL +#define __PROG_TYPES_COMPAT__ + +#include + +#include "FastLED.h" + +FASTLED_NAMESPACE_BEGIN + + + +void fill_solid( struct CRGB * leds, int numToFill, + const struct CRGB& color) +{ + for( int i = 0; i < numToFill; i++) { + leds[i] = color; + } +} + +void fill_solid( struct CHSV * targetArray, int numToFill, + const struct CHSV& hsvColor) +{ + for( int i = 0; i < numToFill; i++) { + targetArray[i] = hsvColor; + } +} + + +// void fill_solid( struct CRGB* targetArray, int numToFill, +// const struct CHSV& hsvColor) +// { +// fill_solid( targetArray, numToFill, (CRGB) hsvColor); +// } + +void fill_rainbow( struct CRGB * pFirstLED, int numToFill, + uint8_t initialhue, + uint8_t deltahue ) +{ + CHSV hsv; + hsv.hue = initialhue; + hsv.val = 255; + hsv.sat = 240; + for( int i = 0; i < numToFill; i++) { + pFirstLED[i] = hsv; + hsv.hue += deltahue; + } +} + +void fill_rainbow( struct CHSV * targetArray, int numToFill, + uint8_t initialhue, + uint8_t deltahue ) +{ + CHSV hsv; + hsv.hue = initialhue; + hsv.val = 255; + hsv.sat = 240; + for( int i = 0; i < numToFill; i++) { + targetArray[i] = hsv; + hsv.hue += deltahue; + } +} + + +void fill_gradient_RGB( CRGB* leds, + uint16_t startpos, CRGB startcolor, + uint16_t endpos, CRGB endcolor ) +{ + // if the points are in the wrong order, straighten them + if( endpos < startpos ) { + uint16_t t = endpos; + CRGB tc = endcolor; + endcolor = startcolor; + endpos = startpos; + startpos = t; + startcolor = tc; + } + + saccum87 rdistance87; + saccum87 gdistance87; + saccum87 bdistance87; + + rdistance87 = (endcolor.r - startcolor.r) << 7; + gdistance87 = (endcolor.g - startcolor.g) << 7; + bdistance87 = (endcolor.b - startcolor.b) << 7; + + uint16_t pixeldistance = endpos - startpos; + int16_t divisor = pixeldistance ? pixeldistance : 1; + + saccum87 rdelta87 = rdistance87 / divisor; + saccum87 gdelta87 = gdistance87 / divisor; + saccum87 bdelta87 = bdistance87 / divisor; + + rdelta87 *= 2; + gdelta87 *= 2; + bdelta87 *= 2; + + accum88 r88 = startcolor.r << 8; + accum88 g88 = startcolor.g << 8; + accum88 b88 = startcolor.b << 8; + for( uint16_t i = startpos; i <= endpos; i++) { + leds[i] = CRGB( r88 >> 8, g88 >> 8, b88 >> 8); + r88 += rdelta87; + g88 += gdelta87; + b88 += bdelta87; + } +} + +#if 0 +void fill_gradient( const CHSV& c1, const CHSV& c2) +{ + fill_gradient( FastLED[0].leds(), FastLED[0].size(), c1, c2); +} + +void fill_gradient( const CHSV& c1, const CHSV& c2, const CHSV& c3) +{ + fill_gradient( FastLED[0].leds(), FastLED[0].size(), c1, c2, c3); +} + +void fill_gradient( const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4) +{ + fill_gradient( FastLED[0].leds(), FastLED[0].size(), c1, c2, c3, c4); +} + +void fill_gradient_RGB( const CRGB& c1, const CRGB& c2) +{ + fill_gradient_RGB( FastLED[0].leds(), FastLED[0].size(), c1, c2); +} + +void fill_gradient_RGB( const CRGB& c1, const CRGB& c2, const CRGB& c3) +{ + fill_gradient_RGB( FastLED[0].leds(), FastLED[0].size(), c1, c2, c3); +} + +void fill_gradient_RGB( const CRGB& c1, const CRGB& c2, const CRGB& c3, const CRGB& c4) +{ + fill_gradient_RGB( FastLED[0].leds(), FastLED[0].size(), c1, c2, c3, c4); +} +#endif + + + + +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2) +{ + uint16_t last = numLeds - 1; + fill_gradient_RGB( leds, 0, c1, last, c2); +} + + +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2, const CRGB& c3) +{ + uint16_t half = (numLeds / 2); + uint16_t last = numLeds - 1; + fill_gradient_RGB( leds, 0, c1, half, c2); + fill_gradient_RGB( leds, half, c2, last, c3); +} + +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2, const CRGB& c3, const CRGB& c4) +{ + uint16_t onethird = (numLeds / 3); + uint16_t twothirds = ((numLeds * 2) / 3); + uint16_t last = numLeds - 1; + fill_gradient_RGB( leds, 0, c1, onethird, c2); + fill_gradient_RGB( leds, onethird, c2, twothirds, c3); + fill_gradient_RGB( leds, twothirds, c3, last, c4); +} + + + + +void nscale8_video( CRGB* leds, uint16_t num_leds, uint8_t scale) +{ + for( uint16_t i = 0; i < num_leds; i++) { + leds[i].nscale8_video( scale); + } +} + +void fade_video(CRGB* leds, uint16_t num_leds, uint8_t fadeBy) +{ + nscale8_video( leds, num_leds, 255 - fadeBy); +} + +void fadeLightBy(CRGB* leds, uint16_t num_leds, uint8_t fadeBy) +{ + nscale8_video( leds, num_leds, 255 - fadeBy); +} + + +void fadeToBlackBy( CRGB* leds, uint16_t num_leds, uint8_t fadeBy) +{ + nscale8( leds, num_leds, 255 - fadeBy); +} + +void fade_raw( CRGB* leds, uint16_t num_leds, uint8_t fadeBy) +{ + nscale8( leds, num_leds, 255 - fadeBy); +} + +void nscale8_raw( CRGB* leds, uint16_t num_leds, uint8_t scale) +{ + nscale8( leds, num_leds, scale); +} + +void nscale8( CRGB* leds, uint16_t num_leds, uint8_t scale) +{ + for( uint16_t i = 0; i < num_leds; i++) { + leds[i].nscale8( scale); + } +} + +void fadeUsingColor( CRGB* leds, uint16_t numLeds, const CRGB& colormask) +{ + uint8_t fr, fg, fb; + fr = colormask.r; + fg = colormask.g; + fb = colormask.b; + + for( uint16_t i = 0; i < numLeds; i++) { + leds[i].r = scale8_LEAVING_R1_DIRTY( leds[i].r, fr); + leds[i].g = scale8_LEAVING_R1_DIRTY( leds[i].g, fg); + leds[i].b = scale8 ( leds[i].b, fb); + } +} + + +CRGB& nblend( CRGB& existing, const CRGB& overlay, fract8 amountOfOverlay ) +{ + if( amountOfOverlay == 0) { + return existing; + } + + if( amountOfOverlay == 255) { + existing = overlay; + return existing; + } + + fract8 amountOfKeep = 256 - amountOfOverlay; + + existing.red = scale8_LEAVING_R1_DIRTY( existing.red, amountOfKeep) + + scale8_LEAVING_R1_DIRTY( overlay.red, amountOfOverlay); + existing.green = scale8_LEAVING_R1_DIRTY( existing.green, amountOfKeep) + + scale8_LEAVING_R1_DIRTY( overlay.green, amountOfOverlay); + existing.blue = scale8_LEAVING_R1_DIRTY( existing.blue, amountOfKeep) + + scale8_LEAVING_R1_DIRTY( overlay.blue, amountOfOverlay); + + cleanup_R1(); + + return existing; +} + + + +void nblend( CRGB* existing, CRGB* overlay, uint16_t count, fract8 amountOfOverlay) +{ + for( uint16_t i = count; i; i--) { + nblend( *existing, *overlay, amountOfOverlay); + existing++; + overlay++; + } +} + +CRGB blend( const CRGB& p1, const CRGB& p2, fract8 amountOfP2 ) +{ + CRGB nu(p1); + nblend( nu, p2, amountOfP2); + return nu; +} + +CRGB* blend( const CRGB* src1, const CRGB* src2, CRGB* dest, uint16_t count, fract8 amountOfsrc2 ) +{ + for( uint16_t i = 0; i < count; i++) { + dest[i] = blend(src1[i], src2[i], amountOfsrc2); + } + return dest; +} + + + +CHSV& nblend( CHSV& existing, const CHSV& overlay, fract8 amountOfOverlay, TGradientDirectionCode directionCode) +{ + if( amountOfOverlay == 0) { + return existing; + } + + if( amountOfOverlay == 255) { + existing = overlay; + return existing; + } + + fract8 amountOfKeep = 256 - amountOfOverlay; + + uint8_t huedelta8 = overlay.hue - existing.hue; + + if( directionCode == SHORTEST_HUES ) { + directionCode = FORWARD_HUES; + if( huedelta8 > 127) { + directionCode = BACKWARD_HUES; + } + } + + if( directionCode == LONGEST_HUES ) { + directionCode = FORWARD_HUES; + if( huedelta8 < 128) { + directionCode = BACKWARD_HUES; + } + } + + if( directionCode == FORWARD_HUES) { + existing.hue = existing.hue + scale8( huedelta8, amountOfOverlay); + } + else /* directionCode == BACKWARD_HUES */ + { + huedelta8 = -huedelta8; + existing.hue = existing.hue - scale8( huedelta8, amountOfOverlay); + } + + existing.sat = scale8_LEAVING_R1_DIRTY( existing.sat, amountOfKeep) + + scale8_LEAVING_R1_DIRTY( overlay.sat, amountOfOverlay); + existing.val = scale8_LEAVING_R1_DIRTY( existing.val, amountOfKeep) + + scale8_LEAVING_R1_DIRTY( overlay.val, amountOfOverlay); + + cleanup_R1(); + + return existing; +} + + + +void nblend( CHSV* existing, CHSV* overlay, uint16_t count, fract8 amountOfOverlay, TGradientDirectionCode directionCode ) +{ + if(existing == overlay) return; + for( uint16_t i = count; i; i--) { + nblend( *existing, *overlay, amountOfOverlay, directionCode); + existing++; + overlay++; + } +} + +CHSV blend( const CHSV& p1, const CHSV& p2, fract8 amountOfP2, TGradientDirectionCode directionCode ) +{ + CHSV nu(p1); + nblend( nu, p2, amountOfP2, directionCode); + return nu; +} + +CHSV* blend( const CHSV* src1, const CHSV* src2, CHSV* dest, uint16_t count, fract8 amountOfsrc2, TGradientDirectionCode directionCode ) +{ + for( uint16_t i = 0; i < count; i++) { + dest[i] = blend(src1[i], src2[i], amountOfsrc2, directionCode); + } + return dest; +} + + + +// Forward declaration of the function "XY" which must be provided by +// the application for use in two-dimensional filter functions. +uint16_t XY( uint8_t, uint8_t);// __attribute__ ((weak)); + + +// blur1d: one-dimensional blur filter. Spreads light to 2 line neighbors. +// blur2d: two-dimensional blur filter. Spreads light to 8 XY neighbors. +// +// 0 = no spread at all +// 64 = moderate spreading +// 172 = maximum smooth, even spreading +// +// 173..255 = wider spreading, but increasing flicker +// +// Total light is NOT entirely conserved, so many repeated +// calls to 'blur' will also result in the light fading, +// eventually all the way to black; this is by design so that +// it can be used to (slowly) clear the LEDs to black. +void blur1d( CRGB* leds, uint16_t numLeds, fract8 blur_amount) +{ + uint8_t keep = 255 - blur_amount; + uint8_t seep = blur_amount >> 1; + CRGB carryover = CRGB::Black; + for( uint16_t i = 0; i < numLeds; i++) { + CRGB cur = leds[i]; + CRGB part = cur; + part.nscale8( seep); + cur.nscale8( keep); + cur += carryover; + if( i) leds[i-1] += part; + leds[i] = cur; + carryover = part; + } +} + +void blur2d( CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount) +{ + blurRows(leds, width, height, blur_amount); + blurColumns(leds, width, height, blur_amount); +} + +// blurRows: perform a blur1d on every row of a rectangular matrix +void blurRows( CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount) +{ + for( uint8_t row = 0; row < height; row++) { + CRGB* rowbase = leds + (row * width); + blur1d( rowbase, width, blur_amount); + } +} + +// blurColumns: perform a blur1d on each column of a rectangular matrix +void blurColumns(CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount) +{ + // blur columns + uint8_t keep = 255 - blur_amount; + uint8_t seep = blur_amount >> 1; + for( uint8_t col = 0; col < width; col++) { + CRGB carryover = CRGB::Black; + for( uint8_t i = 0; i < height; i++) { + CRGB cur = leds[XY(col,i)]; + CRGB part = cur; + part.nscale8( seep); + cur.nscale8( keep); + cur += carryover; + if( i) leds[XY(col,i-1)] += part; + leds[XY(col,i)] = cur; + carryover = part; + } + } +} + + + +// CRGB HeatColor( uint8_t temperature) +// +// Approximates a 'black body radiation' spectrum for +// a given 'heat' level. This is useful for animations of 'fire'. +// Heat is specified as an arbitrary scale from 0 (cool) to 255 (hot). +// This is NOT a chromatically correct 'black body radiation' +// spectrum, but it's surprisingly close, and it's fast and small. +// +// On AVR/Arduino, this typically takes around 70 bytes of program memory, +// versus 768 bytes for a full 256-entry RGB lookup table. + +CRGB HeatColor( uint8_t temperature) +{ + CRGB heatcolor; + + // Scale 'heat' down from 0-255 to 0-191, + // which can then be easily divided into three + // equal 'thirds' of 64 units each. + uint8_t t192 = scale8_video( temperature, 192); + + // calculate a value that ramps up from + // zero to 255 in each 'third' of the scale. + uint8_t heatramp = t192 & 0x3F; // 0..63 + heatramp <<= 2; // scale up to 0..252 + + // now figure out which third of the spectrum we're in: + if( t192 & 0x80) { + // we're in the hottest third + heatcolor.r = 255; // full red + heatcolor.g = 255; // full green + heatcolor.b = heatramp; // ramp up blue + + } else if( t192 & 0x40 ) { + // we're in the middle third + heatcolor.r = 255; // full red + heatcolor.g = heatramp; // ramp up green + heatcolor.b = 0; // no blue + + } else { + // we're in the coolest third + heatcolor.r = heatramp; // ramp up red + heatcolor.g = 0; // no green + heatcolor.b = 0; // no blue + } + + return heatcolor; +} + + + +CRGB ColorFromPalette( const CRGBPalette16& pal, uint8_t index, uint8_t brightness, TBlendType blendType) +{ + uint8_t hi4 = index >> 4; + uint8_t lo4 = index & 0x0F; + + // CRGB rgb1 = pal[ hi4]; + const CRGB* entry = &(pal[0]) + hi4; + uint8_t red1 = entry->red; + uint8_t green1 = entry->green; + uint8_t blue1 = entry->blue; + + uint8_t blend = lo4 && (blendType != NOBLEND); + + if( blend ) { + + if( hi4 == 15 ) { + entry = &(pal[0]); + } else { + entry++; + } + + uint8_t f2 = lo4 << 4; + uint8_t f1 = 256 - f2; + + // rgb1.nscale8(f1); + red1 = scale8_LEAVING_R1_DIRTY( red1, f1); + green1 = scale8_LEAVING_R1_DIRTY( green1, f1); + blue1 = scale8_LEAVING_R1_DIRTY( blue1, f1); + + // cleanup_R1(); + + // CRGB rgb2 = pal[ hi4]; + // rgb2.nscale8(f2); + uint8_t red2 = entry->red; + uint8_t green2 = entry->green; + uint8_t blue2 = entry->blue; + red2 = scale8_LEAVING_R1_DIRTY( red2, f2); + green2 = scale8_LEAVING_R1_DIRTY( green2, f2); + blue2 = scale8_LEAVING_R1_DIRTY( blue2, f2); + + cleanup_R1(); + + // These sums can't overflow, so no qadd8 needed. + red1 += red2; + green1 += green2; + blue1 += blue2; + + } + + if( brightness != 255) { + nscale8x3_video( red1, green1, blue1, brightness); + } + + return CRGB( red1, green1, blue1); +} + +CRGB ColorFromPalette( const TProgmemRGBPalette16& pal, uint8_t index, uint8_t brightness, TBlendType blendType) +{ + uint8_t hi4 = index >> 4; + uint8_t lo4 = index & 0x0F; + + // CRGB rgb1 = pal[ hi4]; + CRGB entry = FL_PGM_READ_DWORD_NEAR( &(pal[0]) + hi4 ); + + uint8_t red1 = entry.red; + uint8_t green1 = entry.green; + uint8_t blue1 = entry.blue; + + uint8_t blend = lo4 && (blendType != NOBLEND); + + if( blend ) { + + if( hi4 == 15 ) { + entry = FL_PGM_READ_DWORD_NEAR( &(pal[0]) ); + } else { + entry = FL_PGM_READ_DWORD_NEAR( &(pal[1]) + hi4 ); + } + + uint8_t f2 = lo4 << 4; + uint8_t f1 = 256 - f2; + + // rgb1.nscale8(f1); + red1 = scale8_LEAVING_R1_DIRTY( red1, f1); + green1 = scale8_LEAVING_R1_DIRTY( green1, f1); + blue1 = scale8_LEAVING_R1_DIRTY( blue1, f1); + + // cleanup_R1(); + + // CRGB rgb2 = pal[ hi4]; + // rgb2.nscale8(f2); + uint8_t red2 = entry.red; + uint8_t green2 = entry.green; + uint8_t blue2 = entry.blue; + red2 = scale8_LEAVING_R1_DIRTY( red2, f2); + green2 = scale8_LEAVING_R1_DIRTY( green2, f2); + blue2 = scale8_LEAVING_R1_DIRTY( blue2, f2); + + cleanup_R1(); + + // These sums can't overflow, so no qadd8 needed. + red1 += red2; + green1 += green2; + blue1 += blue2; + + } + + if( brightness != 255) { + nscale8x3_video( red1, green1, blue1, brightness); + } + + return CRGB( red1, green1, blue1); +} + + + +CRGB ColorFromPalette( const CRGBPalette256& pal, uint8_t index, uint8_t brightness, TBlendType) +{ + const CRGB* entry = &(pal[0]) + index; + + uint8_t red = entry->red; + uint8_t green = entry->green; + uint8_t blue = entry->blue; + + if( brightness != 255) { + nscale8x3_video( red, green, blue, brightness); + } + + return CRGB( red, green, blue); +} + + +CHSV ColorFromPalette( const struct CHSVPalette16& pal, uint8_t index, uint8_t brightness, TBlendType blendType) +{ + uint8_t hi4 = index >> 4; + uint8_t lo4 = index & 0x0F; + + // CRGB rgb1 = pal[ hi4]; + const CHSV* entry = &(pal[0]) + hi4; + + uint8_t hue1 = entry->hue; + uint8_t sat1 = entry->sat; + uint8_t val1 = entry->val; + + uint8_t blend = lo4 && (blendType != NOBLEND); + + if( blend ) { + + if( hi4 == 15 ) { + entry = &(pal[0]); + } else { + entry++; + } + + uint8_t f2 = lo4 << 4; + uint8_t f1 = 256 - f2; + + uint8_t hue2 = entry->hue; + uint8_t sat2 = entry->sat; + uint8_t val2 = entry->val; + + // Now some special casing for blending to or from + // either black or white. Black and white don't have + // proper 'hue' of their own, so when ramping from + // something else to/from black/white, we set the 'hue' + // of the black/white color to be the same as the hue + // of the other color, so that you get the expected + // brightness or saturation ramp, with hue staying + // constant: + + // If we are starting from white (sat=0) + // or black (val=0), adopt the target hue. + if( sat1 == 0 || val1 == 0) { + hue1 = hue2; + } + + // If we are ending at white (sat=0) + // or black (val=0), adopt the starting hue. + if( sat2 == 0 || val2 == 0) { + hue2 = hue1; + } + + + sat1 = scale8_LEAVING_R1_DIRTY( sat1, f1); + val1 = scale8_LEAVING_R1_DIRTY( val1, f1); + + sat2 = scale8_LEAVING_R1_DIRTY( sat2, f2); + val2 = scale8_LEAVING_R1_DIRTY( val2, f2); + + // cleanup_R1(); + + // These sums can't overflow, so no qadd8 needed. + sat1 += sat2; + val1 += val2; + + uint8_t deltaHue = (uint8_t)(hue2 - hue1); + if( deltaHue & 0x80 ) { + // go backwards + hue1 -= scale8( 256 - deltaHue, f2); + } else { + // go forwards + hue1 += scale8( deltaHue, f2); + } + + cleanup_R1(); + } + + if( brightness != 255) { + val1 = scale8_video( val1, brightness); + } + + return CHSV( hue1, sat1, val1); +} + + +CHSV ColorFromPalette( const struct CHSVPalette256& pal, uint8_t index, uint8_t brightness, TBlendType) +{ + CHSV hsv;// = *( &(pal[0]) + index ); + + if( brightness != 255) { + hsv.value = scale8_video( hsv.value, brightness); + } + + return hsv; +} + + +void UpscalePalette(const struct CRGBPalette16& srcpal16, struct CRGBPalette256& destpal256) +{ + for( int i = 0; i < 256; i++) { + destpal256[(uint8_t)(i)] = ColorFromPalette( srcpal16, i); + } +} + +void UpscalePalette(const struct CHSVPalette16& srcpal16, struct CHSVPalette256& destpal256) +{ + for( int i = 0; i < 256; i++) { + destpal256[(uint8_t)(i)] = ColorFromPalette( srcpal16, i); + } +} + +#if 0 +// replaced by PartyColors_p +void SetupPartyColors(CRGBPalette16& pal) +{ + fill_gradient( pal, 0, CHSV( HUE_PURPLE,255,255), 7, CHSV(HUE_YELLOW - 18,255,255), FORWARD_HUES); + fill_gradient( pal, 8, CHSV( HUE_ORANGE,255,255), 15, CHSV(HUE_BLUE + 18,255,255), BACKWARD_HUES); +} +#endif + + +void nblendPaletteTowardPalette( CRGBPalette16& current, CRGBPalette16& target, uint8_t maxChanges) +{ + uint8_t* p1; + uint8_t* p2; + uint8_t changes = 0; + + p1 = (uint8_t*)current.entries; + p2 = (uint8_t*)target.entries; + + const uint8_t totalChannels = sizeof(CRGBPalette16); + for( uint8_t i = 0; i < totalChannels; i++) { + // if the values are equal, no changes are needed + if( p1[i] == p2[i] ) { continue; } + + // if the current value is less than the target, increase it by one + if( p1[i] < p2[i] ) { p1[i]++; changes++; } + + // if the current value is greater than the target, + // increase it by one (or two if it's still greater). + if( p1[i] > p2[i] ) { + p1[i]--; changes++; + if( p1[i] > p2[i] ) { p1[i]--; } + } + + // if we've hit the maximum number of changes, exit + if( changes >= maxChanges) { break; } + } +} + + +uint8_t applyGamma_video( uint8_t brightness, float gamma) +{ + float orig; + float adj; + orig = (float)(brightness) / (255.0); + adj = pow( orig, gamma) * (255.0); + uint8_t result = (uint8_t)(adj); + if( (brightness > 0) && (result == 0)) { + result = 1; // never gamma-adjust a positive number down to zero + } + return result; +} + +CRGB applyGamma_video( const CRGB& orig, float gamma) +{ + CRGB adj; + adj.r = applyGamma_video( orig.r, gamma); + adj.g = applyGamma_video( orig.g, gamma); + adj.b = applyGamma_video( orig.b, gamma); + return adj; +} + +CRGB applyGamma_video( const CRGB& orig, float gammaR, float gammaG, float gammaB) +{ + CRGB adj; + adj.r = applyGamma_video( orig.r, gammaR); + adj.g = applyGamma_video( orig.g, gammaG); + adj.b = applyGamma_video( orig.b, gammaB); + return adj; +} + +CRGB& napplyGamma_video( CRGB& rgb, float gamma) +{ + rgb = applyGamma_video( rgb, gamma); + return rgb; +} + +CRGB& napplyGamma_video( CRGB& rgb, float gammaR, float gammaG, float gammaB) +{ + rgb = applyGamma_video( rgb, gammaR, gammaG, gammaB); + return rgb; +} + +void napplyGamma_video( CRGB* rgbarray, uint16_t count, float gamma) +{ + for( uint16_t i = 0; i < count; i++) { + rgbarray[i] = applyGamma_video( rgbarray[i], gamma); + } +} + +void napplyGamma_video( CRGB* rgbarray, uint16_t count, float gammaR, float gammaG, float gammaB) +{ + for( uint16_t i = 0; i < count; i++) { + rgbarray[i] = applyGamma_video( rgbarray[i], gammaR, gammaG, gammaB); + } +} + + +FASTLED_NAMESPACE_END diff --git a/arduino/test/colorutils.h b/arduino/test/colorutils.h new file mode 100644 index 0000000..209e641 --- /dev/null +++ b/arduino/test/colorutils.h @@ -0,0 +1,1165 @@ +#ifndef __INC_COLORUTILS_H +#define __INC_COLORUTILS_H + +///@file colorutils.h +/// functions for color fill, paletters, blending, and more + +#include "pixeltypes.h" +#include "fastled_progmem.h" + +FASTLED_NAMESPACE_BEGIN +///@defgroup Colorutils Color utility functions +///A variety of functions for working with color, palletes, and leds +///@{ + +/// fill_solid - fill a range of LEDs with a solid color +/// Example: fill_solid( leds, NUM_LEDS, CRGB(50,0,200)); +void fill_solid( struct CRGB * leds, int numToFill, + const struct CRGB& color); + +/// fill_solid - fill a range of LEDs with a solid color +/// Example: fill_solid( leds, NUM_LEDS, CRGB(50,0,200)); +void fill_solid( struct CHSV* targetArray, int numToFill, + const struct CHSV& hsvColor); + + +/// fill_rainbow - fill a range of LEDs with a rainbow of colors, at +/// full saturation and full value (brightness) +void fill_rainbow( struct CRGB * pFirstLED, int numToFill, + uint8_t initialhue, + uint8_t deltahue = 5); + +/// fill_rainbow - fill a range of LEDs with a rainbow of colors, at +/// full saturation and full value (brightness) +void fill_rainbow( struct CHSV * targetArray, int numToFill, + uint8_t initialhue, + uint8_t deltahue = 5); + + +// fill_gradient - fill an array of colors with a smooth HSV gradient +// between two specified HSV colors. +// Since 'hue' is a value around a color wheel, +// there are always two ways to sweep from one hue +// to another. +// This function lets you specify which way you want +// the hue gradient to sweep around the color wheel: +// FORWARD_HUES: hue always goes clockwise +// BACKWARD_HUES: hue always goes counter-clockwise +// SHORTEST_HUES: hue goes whichever way is shortest +// LONGEST_HUES: hue goes whichever way is longest +// The default is SHORTEST_HUES, as this is nearly +// always what is wanted. +// +// fill_gradient can write the gradient colors EITHER +// (1) into an array of CRGBs (e.g., into leds[] array, or an RGB Palette) +// OR +// (2) into an array of CHSVs (e.g. an HSV Palette). +// +// In the case of writing into a CRGB array, the gradient is +// computed in HSV space, and then HSV values are converted to RGB +// as they're written into the RGB array. + +typedef enum { FORWARD_HUES, BACKWARD_HUES, SHORTEST_HUES, LONGEST_HUES } TGradientDirectionCode; + + + +#define saccum87 int16_t + +/// fill_gradient - fill an array of colors with a smooth HSV gradient +/// between two specified HSV colors. +/// Since 'hue' is a value around a color wheel, +/// there are always two ways to sweep from one hue +/// to another. +/// This function lets you specify which way you want +/// the hue gradient to sweep around the color wheel: +/// +/// FORWARD_HUES: hue always goes clockwise +/// BACKWARD_HUES: hue always goes counter-clockwise +/// SHORTEST_HUES: hue goes whichever way is shortest +/// LONGEST_HUES: hue goes whichever way is longest +/// +/// The default is SHORTEST_HUES, as this is nearly +/// always what is wanted. +/// +/// fill_gradient can write the gradient colors EITHER +/// (1) into an array of CRGBs (e.g., into leds[] array, or an RGB Palette) +/// OR +/// (2) into an array of CHSVs (e.g. an HSV Palette). +/// +/// In the case of writing into a CRGB array, the gradient is +/// computed in HSV space, and then HSV values are converted to RGB +/// as they're written into the RGB array. +template +void fill_gradient( T* targetArray, + uint16_t startpos, CHSV startcolor, + uint16_t endpos, CHSV endcolor, + TGradientDirectionCode directionCode = SHORTEST_HUES ) +{ + // if the points are in the wrong order, straighten them + if( endpos < startpos ) { + uint16_t t = endpos; + CHSV tc = endcolor; + endcolor = startcolor; + endpos = startpos; + startpos = t; + startcolor = tc; + } + + // If we're fading toward black (val=0) or white (sat=0), + // then set the endhue to the starthue. + // This lets us ramp smoothly to black or white, regardless + // of what 'hue' was set in the endcolor (since it doesn't matter) + if( endcolor.value == 0 || endcolor.saturation == 0) { + endcolor.hue = startcolor.hue; + } + + // Similarly, if we're fading in from black (val=0) or white (sat=0) + // then set the starthue to the endhue. + // This lets us ramp smoothly up from black or white, regardless + // of what 'hue' was set in the startcolor (since it doesn't matter) + if( startcolor.value == 0 || startcolor.saturation == 0) { + startcolor.hue = endcolor.hue; + } + + saccum87 huedistance87; + saccum87 satdistance87; + saccum87 valdistance87; + + satdistance87 = (endcolor.sat - startcolor.sat) << 7; + valdistance87 = (endcolor.val - startcolor.val) << 7; + + uint8_t huedelta8 = endcolor.hue - startcolor.hue; + + if( directionCode == SHORTEST_HUES ) { + directionCode = FORWARD_HUES; + if( huedelta8 > 127) { + directionCode = BACKWARD_HUES; + } + } + + if( directionCode == LONGEST_HUES ) { + directionCode = FORWARD_HUES; + if( huedelta8 < 128) { + directionCode = BACKWARD_HUES; + } + } + + if( directionCode == FORWARD_HUES) { + huedistance87 = huedelta8 << 7; + } + else /* directionCode == BACKWARD_HUES */ + { + huedistance87 = (uint8_t)(256 - huedelta8) << 7; + huedistance87 = -huedistance87; + } + + uint16_t pixeldistance = endpos - startpos; + int16_t divisor = pixeldistance ? pixeldistance : 1; + + saccum87 huedelta87 = huedistance87 / divisor; + saccum87 satdelta87 = satdistance87 / divisor; + saccum87 valdelta87 = valdistance87 / divisor; + + huedelta87 *= 2; + satdelta87 *= 2; + valdelta87 *= 2; + + accum88 hue88 = startcolor.hue << 8; + accum88 sat88 = startcolor.sat << 8; + accum88 val88 = startcolor.val << 8; + for( uint16_t i = startpos; i <= endpos; i++) { + targetArray[i] = CHSV( hue88 >> 8, sat88 >> 8, val88 >> 8); + hue88 += huedelta87; + sat88 += satdelta87; + val88 += valdelta87; + } +} + + +// Convenience functions to fill an array of colors with a +// two-color, three-color, or four-color gradient +template +void fill_gradient( T* targetArray, uint16_t numLeds, const CHSV& c1, const CHSV& c2, + TGradientDirectionCode directionCode = SHORTEST_HUES ) +{ + uint16_t last = numLeds - 1; + fill_gradient( targetArray, 0, c1, last, c2, directionCode); +} + +template +void fill_gradient( T* targetArray, uint16_t numLeds, + const CHSV& c1, const CHSV& c2, const CHSV& c3, + TGradientDirectionCode directionCode = SHORTEST_HUES ) +{ + uint16_t half = (numLeds / 2); + uint16_t last = numLeds - 1; + fill_gradient( targetArray, 0, c1, half, c2, directionCode); + fill_gradient( targetArray, half, c2, last, c3, directionCode); +} + +template +void fill_gradient( T* targetArray, uint16_t numLeds, + const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4, + TGradientDirectionCode directionCode = SHORTEST_HUES ) +{ + uint16_t onethird = (numLeds / 3); + uint16_t twothirds = ((numLeds * 2) / 3); + uint16_t last = numLeds - 1; + fill_gradient( targetArray, 0, c1, onethird, c2, directionCode); + fill_gradient( targetArray, onethird, c2, twothirds, c3, directionCode); + fill_gradient( targetArray, twothirds, c3, last, c4, directionCode); +} + +// convenience synonym +#define fill_gradient_HSV fill_gradient + + +// fill_gradient_RGB - fill a range of LEDs with a smooth RGB gradient +// between two specified RGB colors. +// Unlike HSV, there is no 'color wheel' in RGB space, +// and therefore there's only one 'direction' for the +// gradient to go, and no 'direction code' is needed. +void fill_gradient_RGB( CRGB* leds, + uint16_t startpos, CRGB startcolor, + uint16_t endpos, CRGB endcolor ); +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2); +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2, const CRGB& c3); +void fill_gradient_RGB( CRGB* leds, uint16_t numLeds, const CRGB& c1, const CRGB& c2, const CRGB& c3, const CRGB& c4); + + +// fadeLightBy and fade_video - reduce the brightness of an array +// of pixels all at once. Guaranteed +// to never fade all the way to black. +// (The two names are synonyms.) +void fadeLightBy( CRGB* leds, uint16_t num_leds, uint8_t fadeBy); +void fade_video( CRGB* leds, uint16_t num_leds, uint8_t fadeBy); + +// nscale8_video - scale down the brightness of an array of pixels +// all at once. Guaranteed to never scale a pixel +// all the way down to black, unless 'scale' is zero. +void nscale8_video( CRGB* leds, uint16_t num_leds, uint8_t scale); + +// fadeToBlackBy and fade_raw - reduce the brightness of an array +// of pixels all at once. These +// functions will eventually fade all +// the way to black. +// (The two names are synonyms.) +void fadeToBlackBy( CRGB* leds, uint16_t num_leds, uint8_t fadeBy); +void fade_raw( CRGB* leds, uint16_t num_leds, uint8_t fadeBy); + +// nscale8 - scale down the brightness of an array of pixels +// all at once. This function can scale pixels all the +// way down to black even if 'scale' is not zero. +void nscale8( CRGB* leds, uint16_t num_leds, uint8_t scale); + +// fadeUsingColor - scale down the brightness of an array of pixels, +// as though it were seen through a transparent +// filter with the specified color. +// For example, if the colormask is +// CRGB( 200, 100, 50) +// then the pixels' red will be faded to 200/256ths, +// their green to 100/256ths, and their blue to 50/256ths. +// This particular example give a 'hot fade' look, +// with white fading to yellow, then red, then black. +// You can also use colormasks like CRGB::Blue to +// zero out the red and green elements, leaving blue +// (largely) the same. +void fadeUsingColor( CRGB* leds, uint16_t numLeds, const CRGB& colormask); + + +// Pixel blending +// +// blend - computes a new color blended some fraction of the way +// between two other colors. +CRGB blend( const CRGB& p1, const CRGB& p2, fract8 amountOfP2 ); + +CHSV blend( const CHSV& p1, const CHSV& p2, fract8 amountOfP2, + TGradientDirectionCode directionCode = SHORTEST_HUES ); + +// blend - computes a new color blended array of colors, each +// a given fraction of the way between corresponding +// elements of two source arrays of colors. +// Useful for blending palettes. +CRGB* blend( const CRGB* src1, const CRGB* src2, CRGB* dest, + uint16_t count, fract8 amountOfsrc2 ); + +CHSV* blend( const CHSV* src1, const CHSV* src2, CHSV* dest, + uint16_t count, fract8 amountOfsrc2, + TGradientDirectionCode directionCode = SHORTEST_HUES ); + +// nblend - destructively modifies one color, blending +// in a given fraction of an overlay color +CRGB& nblend( CRGB& existing, const CRGB& overlay, fract8 amountOfOverlay ); + +CHSV& nblend( CHSV& existing, const CHSV& overlay, fract8 amountOfOverlay, + TGradientDirectionCode directionCode = SHORTEST_HUES ); + +// nblend - destructively blends a given fraction of +// a new color array into an existing color array +void nblend( CRGB* existing, CRGB* overlay, uint16_t count, fract8 amountOfOverlay); + +void nblend( CHSV* existing, CHSV* overlay, uint16_t count, fract8 amountOfOverlay, + TGradientDirectionCode directionCode = SHORTEST_HUES); + + +// blur1d: one-dimensional blur filter. Spreads light to 2 line neighbors. +// blur2d: two-dimensional blur filter. Spreads light to 8 XY neighbors. +// +// 0 = no spread at all +// 64 = moderate spreading +// 172 = maximum smooth, even spreading +// +// 173..255 = wider spreading, but increasing flicker +// +// Total light is NOT entirely conserved, so many repeated +// calls to 'blur' will also result in the light fading, +// eventually all the way to black; this is by design so that +// it can be used to (slowly) clear the LEDs to black. +void blur1d( CRGB* leds, uint16_t numLeds, fract8 blur_amount); +void blur2d( CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount); + +// blurRows: perform a blur1d on every row of a rectangular matrix +void blurRows( CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount); +// blurColumns: perform a blur1d on each column of a rectangular matrix +void blurColumns(CRGB* leds, uint8_t width, uint8_t height, fract8 blur_amount); + + +// CRGB HeatColor( uint8_t temperature) +// +// Approximates a 'black body radiation' spectrum for +// a given 'heat' level. This is useful for animations of 'fire'. +// Heat is specified as an arbitrary scale from 0 (cool) to 255 (hot). +// This is NOT a chromatically correct 'black body radiation' +// spectrum, but it's surprisingly close, and it's fast and small. +CRGB HeatColor( uint8_t temperature); + + +// Palettes +// +// RGB Palettes map an 8-bit value (0..255) to an RGB color. +// +// You can create any color palette you wish; a couple of starters +// are provided: Forest, Clouds, Lava, Ocean, Rainbow, and Rainbow Stripes. +// +// Palettes come in the traditional 256-entry variety, which take +// up 768 bytes of RAM, and lightweight 16-entry varieties. The 16-entry +// variety automatically interpolates between its entries to produce +// a full 256-element color map, but at a cost of only 48 bytes or RAM. +// +// Basic operation is like this: (example shows the 16-entry variety) +// 1. Declare your palette storage: +// CRGBPalette16 myPalette; +// +// 2. Fill myPalette with your own 16 colors, or with a preset color scheme. +// You can specify your 16 colors a variety of ways: +// CRGBPalette16 myPalette( +// CRGB::Black, +// CRGB::Black, +// CRGB::Red, +// CRGB::Yellow, +// CRGB::Green, +// CRGB::Blue, +// CRGB::Purple, +// CRGB::Black, +// +// 0x100000, +// 0x200000, +// 0x400000, +// 0x800000, +// +// CHSV( 30,255,255), +// CHSV( 50,255,255), +// CHSV( 70,255,255), +// CHSV( 90,255,255) +// ); +// +// Or you can initiaize your palette with a preset color scheme: +// myPalette = RainbowStripesColors_p; +// +// 3. Any time you want to set a pixel to a color from your palette, use +// "ColorFromPalette(...)" as shown: +// +// uint8_t index = /* any value 0..255 */; +// leds[i] = ColorFromPalette( myPalette, index); +// +// Even though your palette has only 16 explicily defined entries, you +// can use an 'index' from 0..255. The 16 explicit palette entries will +// be spread evenly across the 0..255 range, and the intermedate values +// will be RGB-interpolated between adjacent explicit entries. +// +// It's easier to use than it sounds. +// + +class CRGBPalette16; +class CRGBPalette256; +class CHSVPalette16; +class CHSVPalette256; +typedef uint32_t TProgmemRGBPalette16[16]; +typedef uint32_t TProgmemHSVPalette16[16]; +#define TProgmemPalette16 TProgmemRGBPalette16 + +typedef const uint8_t TProgmemRGBGradientPalette_byte ; +typedef const TProgmemRGBGradientPalette_byte *TProgmemRGBGradientPalette_bytes; +typedef TProgmemRGBGradientPalette_bytes TProgmemRGBGradientPalettePtr; +typedef union { + struct { + uint8_t index; + uint8_t r; + uint8_t g; + uint8_t b; + }; + uint32_t dword; + uint8_t bytes[4]; +} TRGBGradientPaletteEntryUnion; + +typedef uint8_t TDynamicRGBGradientPalette_byte ; +typedef const TDynamicRGBGradientPalette_byte *TDynamicRGBGradientPalette_bytes; +typedef TDynamicRGBGradientPalette_bytes TDynamicRGBGradientPalettePtr; + +// Convert a 16-entry palette to a 256-entry palette +void UpscalePalette(const struct CRGBPalette16& srcpal16, struct CRGBPalette256& destpal256); +void UpscalePalette(const struct CHSVPalette16& srcpal16, struct CHSVPalette256& destpal256); + + +class CHSVPalette16 { +public: + CHSV entries[16]; + CHSVPalette16() {}; + CHSVPalette16( const CHSV& c00,const CHSV& c01,const CHSV& c02,const CHSV& c03, + const CHSV& c04,const CHSV& c05,const CHSV& c06,const CHSV& c07, + const CHSV& c08,const CHSV& c09,const CHSV& c10,const CHSV& c11, + const CHSV& c12,const CHSV& c13,const CHSV& c14,const CHSV& c15 ) + { + entries[0]=c00; entries[1]=c01; entries[2]=c02; entries[3]=c03; + entries[4]=c04; entries[5]=c05; entries[6]=c06; entries[7]=c07; + entries[8]=c08; entries[9]=c09; entries[10]=c10; entries[11]=c11; + entries[12]=c12; entries[13]=c13; entries[14]=c14; entries[15]=c15; + }; + + CHSVPalette16( const CHSVPalette16& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + } + CHSVPalette16& operator=( const CHSVPalette16& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + return *this; + } + + CHSVPalette16( const TProgmemHSVPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + CRGB xyz = FL_PGM_READ_DWORD_NEAR( rhs + i); + entries[i].hue = xyz.red; + entries[i].sat = xyz.green; + entries[i].val = xyz.blue; + } + } + CHSVPalette16& operator=( const TProgmemHSVPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + CRGB xyz = FL_PGM_READ_DWORD_NEAR( rhs + i); + entries[i].hue = xyz.red; + entries[i].sat = xyz.green; + entries[i].val = xyz.blue; + } + return *this; + } + + inline CHSV& operator[] (uint8_t x) __attribute__((always_inline)) + { + return entries[x]; + } + inline const CHSV& operator[] (uint8_t x) const __attribute__((always_inline)) + { + return entries[x]; + } + + inline CHSV& operator[] (int x) __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + inline const CHSV& operator[] (int x) const __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + + operator CHSV*() + { + return &(entries[0]); + } + + CHSVPalette16( const CHSV& c1) + { + fill_solid( &(entries[0]), 16, c1); + } + CHSVPalette16( const CHSV& c1, const CHSV& c2) + { + fill_gradient( &(entries[0]), 16, c1, c2); + } + CHSVPalette16( const CHSV& c1, const CHSV& c2, const CHSV& c3) + { + fill_gradient( &(entries[0]), 16, c1, c2, c3); + } + CHSVPalette16( const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4) + { + fill_gradient( &(entries[0]), 16, c1, c2, c3, c4); + } + +}; + +class CHSVPalette256 { +public: + CHSV entries[256]; + CHSVPalette256() {}; + CHSVPalette256( const CHSV& c00,const CHSV& c01,const CHSV& c02,const CHSV& c03, + const CHSV& c04,const CHSV& c05,const CHSV& c06,const CHSV& c07, + const CHSV& c08,const CHSV& c09,const CHSV& c10,const CHSV& c11, + const CHSV& c12,const CHSV& c13,const CHSV& c14,const CHSV& c15 ) + { + CHSVPalette16 p16(c00,c01,c02,c03,c04,c05,c06,c07, + c08,c09,c10,c11,c12,c13,c14,c15); + *this = p16; + }; + + CHSVPalette256( const CHSVPalette256& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + } + CHSVPalette256& operator=( const CHSVPalette256& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + return *this; + } + + CHSVPalette256( const CHSVPalette16& rhs16) + { + UpscalePalette( rhs16, *this); + } + CHSVPalette256& operator=( const CHSVPalette16& rhs16) + { + UpscalePalette( rhs16, *this); + return *this; + } + + CHSVPalette256( const TProgmemRGBPalette16& rhs) + { + CHSVPalette16 p16(rhs); + *this = p16; + } + CHSVPalette256& operator=( const TProgmemRGBPalette16& rhs) + { + CHSVPalette16 p16(rhs); + *this = p16; + return *this; + } + + inline CHSV& operator[] (uint8_t x) __attribute__((always_inline)) + { + return entries[x]; + } + inline const CHSV& operator[] (uint8_t x) const __attribute__((always_inline)) + { + return entries[x]; + } + + inline CHSV& operator[] (int x) __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + inline const CHSV& operator[] (int x) const __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + + operator CHSV*() + { + return &(entries[0]); + } + + CHSVPalette256( const CHSV& c1) + { + fill_solid( &(entries[0]), 256, c1); + } + CHSVPalette256( const CHSV& c1, const CHSV& c2) + { + fill_gradient( &(entries[0]), 256, c1, c2); + } + CHSVPalette256( const CHSV& c1, const CHSV& c2, const CHSV& c3) + { + fill_gradient( &(entries[0]), 256, c1, c2, c3); + } + CHSVPalette256( const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4) + { + fill_gradient( &(entries[0]), 256, c1, c2, c3, c4); + } +}; + +class CRGBPalette16 { +public: + CRGB entries[16]; + CRGBPalette16() {}; + CRGBPalette16( const CRGB& c00,const CRGB& c01,const CRGB& c02,const CRGB& c03, + const CRGB& c04,const CRGB& c05,const CRGB& c06,const CRGB& c07, + const CRGB& c08,const CRGB& c09,const CRGB& c10,const CRGB& c11, + const CRGB& c12,const CRGB& c13,const CRGB& c14,const CRGB& c15 ) + { + entries[0]=c00; entries[1]=c01; entries[2]=c02; entries[3]=c03; + entries[4]=c04; entries[5]=c05; entries[6]=c06; entries[7]=c07; + entries[8]=c08; entries[9]=c09; entries[10]=c10; entries[11]=c11; + entries[12]=c12; entries[13]=c13; entries[14]=c14; entries[15]=c15; + }; + + CRGBPalette16( const CRGBPalette16& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + } + CRGBPalette16& operator=( const CRGBPalette16& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + return *this; + } + + CRGBPalette16( const CHSVPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion + } + } + CRGBPalette16& operator=( const CHSVPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion + } + return *this; + } + + CRGBPalette16( const TProgmemRGBPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + entries[i] = FL_PGM_READ_DWORD_NEAR( rhs + i); + } + } + CRGBPalette16& operator=( const TProgmemRGBPalette16& rhs) + { + for( uint8_t i = 0; i < 16; i++) { + entries[i] = FL_PGM_READ_DWORD_NEAR( rhs + i); + } + return *this; + } + + inline CRGB& operator[] (uint8_t x) __attribute__((always_inline)) + { + return entries[x]; + } + inline const CRGB& operator[] (uint8_t x) const __attribute__((always_inline)) + { + return entries[x]; + } + + inline CRGB& operator[] (int x) __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + inline const CRGB& operator[] (int x) const __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + + operator CRGB*() + { + return &(entries[0]); + } + + CRGBPalette16( const CHSV& c1) + { + fill_solid( &(entries[0]), 16, c1); + } + CRGBPalette16( const CHSV& c1, const CHSV& c2) + { + fill_gradient( &(entries[0]), 16, c1, c2); + } + CRGBPalette16( const CHSV& c1, const CHSV& c2, const CHSV& c3) + { + fill_gradient( &(entries[0]), 16, c1, c2, c3); + } + CRGBPalette16( const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4) + { + fill_gradient( &(entries[0]), 16, c1, c2, c3, c4); + } + + CRGBPalette16( const CRGB& c1) + { + fill_solid( &(entries[0]), 16, c1); + } + CRGBPalette16( const CRGB& c1, const CRGB& c2) + { + fill_gradient_RGB( &(entries[0]), 16, c1, c2); + } + CRGBPalette16( const CRGB& c1, const CRGB& c2, const CRGB& c3) + { + fill_gradient_RGB( &(entries[0]), 16, c1, c2, c3); + } + CRGBPalette16( const CRGB& c1, const CRGB& c2, const CRGB& c3, const CRGB& c4) + { + fill_gradient_RGB( &(entries[0]), 16, c1, c2, c3, c4); + } + + + // Gradient palettes are loaded into CRGB16Palettes in such a way + // that, if possible, every color represented in the gradient palette + // is also represented in the CRGBPalette16. + // For example, consider a gradient palette that is all black except + // for a single, one-element-wide (1/256th!) spike of red in the middle: + // 0, 0,0,0 + // 124, 0,0,0 + // 125, 255,0,0 // one 1/256th-palette-wide red stripe + // 126, 0,0,0 + // 255, 0,0,0 + // A naive conversion of this 256-element palette to a 16-element palette + // might accidentally completely eliminate the red spike, rendering the + // palette completely black. + // However, the conversions provided here would attempt to include a + // the red stripe in the output, more-or-less as faithfully as possible. + // So in this case, the resulting CRGBPalette16 palette would have a red + // stripe in the middle which was 1/16th of a palette wide -- the + // narrowest possible in a CRGBPalette16. + // This means that the relative width of stripes in a CRGBPalette16 + // will be, by definition, different from the widths in the gradient + // palette. This code attempts to preserve "all the colors", rather than + // the exact stripe widths at the expense of dropping some colors. + CRGBPalette16( TProgmemRGBGradientPalette_bytes progpal ) + { + *this = progpal; + } + CRGBPalette16& operator=( TProgmemRGBGradientPalette_bytes progpal ) + { + TRGBGradientPaletteEntryUnion* progent = (TRGBGradientPaletteEntryUnion*)(progpal); + TRGBGradientPaletteEntryUnion u; + + // Count entries + uint8_t count = 0; + do { + u.dword = FL_PGM_READ_DWORD_NEAR(progent + count); + count++;; + } while ( u.index != 255); + + int8_t lastSlotUsed = -1; + + u.dword = FL_PGM_READ_DWORD_NEAR( progent); + CRGB rgbstart( u.r, u.g, u.b); + + int indexstart = 0; + uint8_t istart8 = 0; + uint8_t iend8 = 0; + while( indexstart < 255) { + progent++; + u.dword = FL_PGM_READ_DWORD_NEAR( progent); + int indexend = u.index; + CRGB rgbend( u.r, u.g, u.b); + istart8 = indexstart / 16; + iend8 = indexend / 16; + if( count < 16) { + if( (istart8 <= lastSlotUsed) && (lastSlotUsed < 15)) { + istart8 = lastSlotUsed + 1; + if( iend8 < istart8) { + iend8 = istart8; + } + } + lastSlotUsed = iend8; + } + fill_gradient_RGB( &(entries[0]), istart8, rgbstart, iend8, rgbend); + indexstart = indexend; + rgbstart = rgbend; + } + return *this; + } + CRGBPalette16& loadDynamicGradientPalette( TDynamicRGBGradientPalette_bytes gpal ) + { + TRGBGradientPaletteEntryUnion* ent = (TRGBGradientPaletteEntryUnion*)(gpal); + TRGBGradientPaletteEntryUnion u; + + // Count entries + uint8_t count = 0; + do { + u = *(ent + count); + count++;; + } while ( u.index != 255); + + int8_t lastSlotUsed = -1; + + + u = *ent; + CRGB rgbstart( u.r, u.g, u.b); + + int indexstart = 0; + uint8_t istart8 = 0; + uint8_t iend8 = 0; + while( indexstart < 255) { + ent++; + u = *ent; + int indexend = u.index; + CRGB rgbend( u.r, u.g, u.b); + istart8 = indexstart / 16; + iend8 = indexend / 16; + if( count < 16) { + if( (istart8 <= lastSlotUsed) && (lastSlotUsed < 15)) { + istart8 = lastSlotUsed + 1; + if( iend8 < istart8) { + iend8 = istart8; + } + } + lastSlotUsed = iend8; + } + fill_gradient_RGB( &(entries[0]), istart8, rgbstart, iend8, rgbend); + indexstart = indexend; + rgbstart = rgbend; + } + return *this; + } + +}; + +class CRGBPalette256 { +public: + CRGB entries[256]; + CRGBPalette256() {}; + CRGBPalette256( const CRGB& c00,const CRGB& c01,const CRGB& c02,const CRGB& c03, + const CRGB& c04,const CRGB& c05,const CRGB& c06,const CRGB& c07, + const CRGB& c08,const CRGB& c09,const CRGB& c10,const CRGB& c11, + const CRGB& c12,const CRGB& c13,const CRGB& c14,const CRGB& c15 ) + { + CRGBPalette16 p16(c00,c01,c02,c03,c04,c05,c06,c07, + c08,c09,c10,c11,c12,c13,c14,c15); + *this = p16; + }; + + CRGBPalette256( const CRGBPalette256& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + } + CRGBPalette256& operator=( const CRGBPalette256& rhs) + { + memmove8( &(entries[0]), &(rhs.entries[0]), sizeof( entries)); + return *this; + } + + CRGBPalette256( const CHSVPalette256& rhs) + { + for( int i = 0; i < 256; i++) { + entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion + } + } + CRGBPalette256& operator=( const CHSVPalette256& rhs) + { + for( int i = 0; i < 256; i++) { + entries[i] = rhs.entries[i]; // implicit HSV-to-RGB conversion + } + return *this; + } + + CRGBPalette256( const CRGBPalette16& rhs16) + { + UpscalePalette( rhs16, *this); + } + CRGBPalette256& operator=( const CRGBPalette16& rhs16) + { + UpscalePalette( rhs16, *this); + return *this; + } + + CRGBPalette256( const TProgmemRGBPalette16& rhs) + { + CRGBPalette16 p16(rhs); + *this = p16; + } + CRGBPalette256& operator=( const TProgmemRGBPalette16& rhs) + { + CRGBPalette16 p16(rhs); + *this = p16; + return *this; + } + + inline CRGB& operator[] (uint8_t x) __attribute__((always_inline)) + { + return entries[x]; + } + inline const CRGB& operator[] (uint8_t x) const __attribute__((always_inline)) + { + return entries[x]; + } + + inline CRGB& operator[] (int x) __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + inline const CRGB& operator[] (int x) const __attribute__((always_inline)) + { + return entries[(uint8_t)x]; + } + + operator CRGB*() + { + return &(entries[0]); + } + + CRGBPalette256( const CHSV& c1) + { + fill_solid( &(entries[0]), 256, c1); + } + CRGBPalette256( const CHSV& c1, const CHSV& c2) + { + fill_gradient( &(entries[0]), 256, c1, c2); + } + CRGBPalette256( const CHSV& c1, const CHSV& c2, const CHSV& c3) + { + fill_gradient( &(entries[0]), 256, c1, c2, c3); + } + CRGBPalette256( const CHSV& c1, const CHSV& c2, const CHSV& c3, const CHSV& c4) + { + fill_gradient( &(entries[0]), 256, c1, c2, c3, c4); + } + + CRGBPalette256( const CRGB& c1) + { + fill_solid( &(entries[0]), 256, c1); + } + CRGBPalette256( const CRGB& c1, const CRGB& c2) + { + fill_gradient_RGB( &(entries[0]), 256, c1, c2); + } + CRGBPalette256( const CRGB& c1, const CRGB& c2, const CRGB& c3) + { + fill_gradient_RGB( &(entries[0]), 256, c1, c2, c3); + } + CRGBPalette256( const CRGB& c1, const CRGB& c2, const CRGB& c3, const CRGB& c4) + { + fill_gradient_RGB( &(entries[0]), 256, c1, c2, c3, c4); + } + + CRGBPalette256( TProgmemRGBGradientPalette_bytes progpal ) + { + *this = progpal; + } + CRGBPalette256& operator=( TProgmemRGBGradientPalette_bytes progpal ) + { + TRGBGradientPaletteEntryUnion* progent = (TRGBGradientPaletteEntryUnion*)(progpal); + TRGBGradientPaletteEntryUnion u; + u.dword = FL_PGM_READ_DWORD_NEAR( progent); + CRGB rgbstart( u.r, u.g, u.b); + + int indexstart = 0; + while( indexstart < 255) { + progent++; + u.dword = FL_PGM_READ_DWORD_NEAR( progent); + int indexend = u.index; + CRGB rgbend( u.r, u.g, u.b); + fill_gradient_RGB( &(entries[0]), indexstart, rgbstart, indexend, rgbend); + indexstart = indexend; + rgbstart = rgbend; + } + return *this; + } + CRGBPalette256& loadDynamicGradientPalette( TDynamicRGBGradientPalette_bytes gpal ) + { + TRGBGradientPaletteEntryUnion* ent = (TRGBGradientPaletteEntryUnion*)(gpal); + TRGBGradientPaletteEntryUnion u; + u = *ent; + CRGB rgbstart( u.r, u.g, u.b); + + int indexstart = 0; + while( indexstart < 255) { + ent++; + u = *ent; + int indexend = u.index; + CRGB rgbend( u.r, u.g, u.b); + fill_gradient_RGB( &(entries[0]), indexstart, rgbstart, indexend, rgbend); + indexstart = indexend; + rgbstart = rgbend; + } + return *this; + } +}; + + + + +typedef enum { NOBLEND=0, LINEARBLEND=1 } TBlendType; + +CRGB ColorFromPalette( const CRGBPalette16& pal, + uint8_t index, + uint8_t brightness=255, + TBlendType blendType=LINEARBLEND); + +CRGB ColorFromPalette( const TProgmemRGBPalette16& pal, + uint8_t index, + uint8_t brightness=255, + TBlendType blendType=LINEARBLEND); + +CRGB ColorFromPalette( const CRGBPalette256& pal, + uint8_t index, + uint8_t brightness=255, + TBlendType blendType=NOBLEND ); + +CHSV ColorFromPalette( const CHSVPalette16& pal, + uint8_t index, + uint8_t brightness=255, + TBlendType blendType=LINEARBLEND); + +CHSV ColorFromPalette( const CHSVPalette256& pal, + uint8_t index, + uint8_t brightness=255, + TBlendType blendType=NOBLEND ); + + +// Fill a range of LEDs with a sequece of entryies from a palette +template +void fill_palette(CRGB* L, uint16_t N, uint8_t startIndex, uint8_t incIndex, + const PALETTE& pal, uint8_t brightness, TBlendType blendType) +{ + uint8_t colorIndex = startIndex; + for( uint16_t i = 0; i < N; i++) { + L[i] = ColorFromPalette( pal, colorIndex, brightness, blendType); + colorIndex += incIndex; + } +} + +template +void map_data_into_colors_through_palette( + uint8_t *dataArray, uint16_t dataCount, + CRGB* targetColorArray, + const PALETTE& pal, + uint8_t brightness=255, + uint8_t opacity=255, + TBlendType blendType=LINEARBLEND) +{ + for( uint16_t i = 0; i < dataCount; i++) { + uint8_t d = dataArray[i]; + CRGB rgb = ColorFromPalette( pal, d, brightness, blendType); + if( opacity == 255 ) { + targetColorArray[i] = rgb; + } else { + targetColorArray[i].nscale8( 256 - opacity); + rgb.nscale8_video( opacity); + targetColorArray[i] += rgb; + } + } +} + +// nblendPaletteTowardPalette: +// Alter one palette by making it slightly more like +// a 'target palette', used for palette cross-fades. +// +// It does this by comparing each of the R, G, and B channels +// of each entry in the current palette to the corresponding +// entry in the target palette and making small adjustments: +// If the Red channel is too low, it will be increased. +// If the Red channel is too high, it will be slightly reduced. +// ... and likewise for Green and Blue channels. +// +// Additionally, there are two significant visual improvements +// to this algorithm implemented here. First is this: +// When increasing a channel, it is stepped up by ONE. +// When decreasing a channel, it is stepped down by TWO. +// Due to the way the eye perceives light, and the way colors +// are represented in RGB, this produces a more uniform apparent +// brightness when cross-fading between most palette colors. +// +// The second visual tweak is limiting the number of changes +// that will be made to the palette at once. If all the palette +// entries are changed at once, it can give a muddled appearance. +// However, if only a few palette entries are changed at once, +// you get a visually smoother transition: in the middle of the +// cross-fade your current palette will actually contain some +// colors from the old palette, a few blended colors, and some +// colors from the new palette. +// The maximum number of possible palette changes per call +// is 48 (sixteen color entries time three channels each). +// The default 'maximim number of changes' here is 12, meaning +// that only approximately a quarter of the palette entries +// will be changed per call. +void nblendPaletteTowardPalette( CRGBPalette16& currentPalette, + CRGBPalette16& targetPalette, + uint8_t maxChanges=24); + + + + +// You can also define a static RGB palette very compactly in terms of a series +// of connected color gradients. +// For example, if you want the first 3/4ths of the palette to be a slow +// gradient ramping from black to red, and then the remaining 1/4 of the +// palette to be a quicker ramp to white, you specify just three points: the +// starting black point (at index 0), the red midpoint (at index 192), +// and the final white point (at index 255). It looks like this: +// +// index: 0 192 255 +// |----------r-r-r-rrrrrrrrRrRrRrRrRRRR-|-RRWRWWRWWW-| +// color: (0,0,0) (255,0,0) (255,255,255) +// +// Here's how you'd define that gradient palette: +// +// DEFINE_GRADIENT_PALETTE( black_to_red_to_white_p ) { +// 0, 0, 0, 0, /* at index 0, black(0,0,0) */ +// 192, 255, 0, 0, /* at index 192, red(255,0,0) */ +// 255, 255,255,255 /* at index 255, white(255,255,255) */ +// }; +// +// This format is designed for compact storage. The example palette here +// takes up just 12 bytes of PROGMEM (flash) storage, and zero bytes +// of SRAM when not currently in use. +// +// To use one of these gradient palettes, simply assign it into a +// CRGBPalette16 or a CRGBPalette256, like this: +// +// CRGBPalette16 pal = black_to_red_to_white_p; +// +// When the assignment is made, the gradients are expanded out into +// either 16 or 256 palette entries, depending on the kind of palette +// object they're assigned to. +// +// IMPORTANT NOTES & CAVEATS: +// +// - The last 'index' position MUST BE 255! Failure to end with +// index 255 will result in program hangs or crashes. +// +// - At this point, these gradient palette definitions MUST BE +// stored in PROGMEM on AVR-based Arduinos. If you use the +// DEFINE_GRADIENT_PALETTE macro, this is taken care of automatically. +// + +#define DEFINE_GRADIENT_PALETTE(X) \ + extern const TProgmemRGBGradientPalette_byte X[] FL_PROGMEM = + +#define DECLARE_GRADIENT_PALETTE(X) \ + extern const TProgmemRGBGradientPalette_byte X[] FL_PROGMEM + + +// Functions to apply gamma adjustments, either: +// - a single gamma adjustment to a single scalar value, +// - a single gamma adjustment to each channel of a CRGB color, or +// - different gamma adjustments for each channel of a CRFB color. +// +// Note that the gamma is specified as a traditional floating point value +// e.g., "2.5", and as such these functions should not be called in +// your innermost pixel loops, or in animations that are extremely +// low on program storage space. Nevertheless, if you need these +// functions, here they are. +// +// Furthermore, bear in mind that CRGB leds have only eight bits +// per channel of color resolution, and that very small, subtle shadings +// may not be visible. +uint8_t applyGamma_video( uint8_t brightness, float gamma); +CRGB applyGamma_video( const CRGB& orig, float gamma); +CRGB applyGamma_video( const CRGB& orig, float gammaR, float gammaG, float gammaB); +// The "n" versions below modify their arguments in-place. +CRGB& napplyGamma_video( CRGB& rgb, float gamma); +CRGB& napplyGamma_video( CRGB& rgb, float gammaR, float gammaG, float gammaB); +void napplyGamma_video( CRGB* rgbarray, uint16_t count, float gamma); +void napplyGamma_video( CRGB* rgbarray, uint16_t count, float gammaR, float gammaG, float gammaB); + + +FASTLED_NAMESPACE_END + +///@} +#endif diff --git a/arduino/test/controller.h b/arduino/test/controller.h new file mode 100644 index 0000000..b9929a4 --- /dev/null +++ b/arduino/test/controller.h @@ -0,0 +1,587 @@ +#ifndef __INC_CONTROLLER_H +#define __INC_CONTROLLER_H + +///@file controller.h +/// base definitions used by led controllers for writing out led data + +#include "led_sysdefs.h" +#include "pixeltypes.h" +#include "color.h" + +FASTLED_NAMESPACE_BEGIN + +#define RO(X) RGB_BYTE(RGB_ORDER, X) +#define RGB_BYTE(RO,X) (((RO)>>(3*(2-(X)))) & 0x3) + +#define RGB_BYTE0(RO) ((RO>>6) & 0x3) +#define RGB_BYTE1(RO) ((RO>>3) & 0x3) +#define RGB_BYTE2(RO) ((RO) & 0x3) + +// operator byte *(struct CRGB[] arr) { return (byte*)arr; } + +#define DISABLE_DITHER 0x00 +#define BINARY_DITHER 0x01 +typedef uint8_t EDitherMode; + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// +// LED Controller interface definition +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/// Base definition for an LED controller. Pretty much the methods that every LED controller object will make available. +/// Note that the showARGB method is not impelemented for all controllers yet. Note also the methods for eventual checking +/// of background writing of data (I'm looking at you, teensy 3.0 DMA controller!). If you want to pass LED controllers around +/// to methods, make them references to this type, keeps your code saner. However, most people won't be seeing/using these objects +/// directly at all +class CLEDController { +protected: + friend class CFastLED; + CRGB *m_Data; + CLEDController *m_pNext; + CRGB m_ColorCorrection; + CRGB m_ColorTemperature; + EDitherMode m_DitherMode; + int m_nLeds; + static CLEDController *m_pHead; + static CLEDController *m_pTail; + + /// set all the leds on the controller to a given color + ///@param data the crgb color to set the leds to + ///@param nLeds the numner of leds to set to this color + ///@param scale the rgb scaling value for outputting color + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) = 0; + + /// write the passed in rgb data out to the leds managed by this controller + ///@param data the rgb data to write out to the strip + ///@param nLeds the number of leds being written out + ///@param scale the rgb scaling to apply to each led before writing it out + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) = 0; + +#ifdef SUPPORT_ARGB + // as above, but every 4th uint8_t is assumed to be alpha channel data, and will be skipped + virtual void show(const struct CARGB *data, int nLeds, CRGB scale) = 0; +#endif +public: + /// create an led controller object, add it to the chain of controllers + CLEDController() : m_Data(NULL), m_ColorCorrection(UncorrectedColor), m_ColorTemperature(UncorrectedTemperature), m_DitherMode(BINARY_DITHER), m_nLeds(0) { + m_pNext = NULL; + if(m_pHead==NULL) { m_pHead = this; } + if(m_pTail != NULL) { m_pTail->m_pNext = this; } + m_pTail = this; + } + + ///initialize the LED controller + virtual void init() = 0; + + ///clear out/zero out the given number of leds. + virtual void clearLeds(int nLeds) = 0; + + /// show function w/integer brightness, will scale for color correction and temperature + void show(const struct CRGB *data, int nLeds, uint8_t brightness) { + show(data, nLeds, getAdjustment(brightness)); + } + + /// show function w/integer brightness, will scale for color correction and temperature + void showColor(const struct CRGB &data, int nLeds, uint8_t brightness) { + showColor(data, nLeds, getAdjustment(brightness)); + } + + /// show function using the "attached to this controller" led data + void showLeds(uint8_t brightness=255) { + show(m_Data, m_nLeds, getAdjustment(brightness)); + } + + /// show the given color on the led strip + void showColor(const struct CRGB & data, uint8_t brightness=255) { + showColor(data, m_nLeds, getAdjustment(brightness)); + } + + /// get the first led controller in the chain of controllers + static CLEDController *head() { return m_pHead; } + /// get the next controller in the chain after this one. will return NULL at the end of the chain + CLEDController *next() { return m_pNext; } + + #ifdef SUPPORT_ARGB + // as above, but every 4th uint8_t is assumed to be alpha channel data, and will be skipped + void show(const struct CARGB *data, int nLeds, uint8_t brightness) { + show(data, nLeds, getAdjustment(brightness)) + } +#endif + + /// set the default array of leds to be used by this controller + CLEDController & setLeds(CRGB *data, int nLeds) { + m_Data = data; + m_nLeds = nLeds; + return *this; + } + + /// zero out the led data managed by this controller + void clearLedData() { + if(m_Data) { + memset8((void*)m_Data, 0, sizeof(struct CRGB) * m_nLeds); + } + } + + /// How many leds does this controller manage? + int size() { return m_nLeds; } + + /// Pointer to the CRGB array for this controller + CRGB* leds() { return m_Data; } + + /// Reference to the n'th item in the controller + CRGB &operator[](int x) { return m_Data[x]; } + + /// set the dithering mode for this controller to use + inline CLEDController & setDither(uint8_t ditherMode = BINARY_DITHER) { m_DitherMode = ditherMode; return *this; } + /// get the dithering option currently set for this controller + inline uint8_t getDither() { return m_DitherMode; } + + /// the the color corrction to use for this controller, expressed as an rgb object + CLEDController & setCorrection(CRGB correction) { m_ColorCorrection = correction; return *this; } + /// set the color correction to use for this controller + CLEDController & setCorrection(LEDColorCorrection correction) { m_ColorCorrection = correction; return *this; } + /// get the correction value used by this controller + CRGB getCorrection() { return m_ColorCorrection; } + + /// set the color temperature, aka white point, for this controller + CLEDController & setTemperature(CRGB temperature) { m_ColorTemperature = temperature; return *this; } + /// set the color temperature, aka white point, for this controller + CLEDController & setTemperature(ColorTemperature temperature) { m_ColorTemperature = temperature; return *this; } + /// get the color temperature, aka whipe point, for this controller + CRGB getTemperature() { return m_ColorTemperature; } + + /// Get the combined brightness/color adjustment for this controller + CRGB getAdjustment(uint8_t scale) { + return computeAdjustment(scale, m_ColorCorrection, m_ColorTemperature); + } + + static CRGB computeAdjustment(uint8_t scale, const CRGB & colorCorrection, const CRGB & colorTemperature) { + #if defined(NO_CORRECTION) && (NO_CORRECTION==1) + return CRGB(scale,scale,scale); + #else + CRGB adj(0,0,0); + + if(scale > 0) { + for(uint8_t i = 0; i < 3; i++) { + uint8_t cc = colorCorrection.raw[i]; + uint8_t ct = colorTemperature.raw[i]; + if(cc > 0 && ct > 0) { + uint32_t work = (((uint32_t)cc)+1) * (((uint32_t)ct)+1) * scale; + work /= 0x10000L; + adj.raw[i] = work & 0xFF; + } + } + } + + return adj; + #endif + } + virtual uint16_t getMaxRefreshRate() const { return 0; } +}; + +/// Pixel controller class. This is the class that we use to centralize pixel access in a block of data, including +/// support for things like RGB reordering, scaling, dithering, skipping (for ARGB data), and eventually, we will +/// centralize 8/12/16 conversions here as well. +template +struct PixelController { + const uint8_t *mData; + int mLen; + uint8_t d[3]; + uint8_t e[3]; + CRGB mScale; + uint8_t mAdvance; + + ///copy constructor for the pixel controller object + PixelController(const PixelController & other) { + d[0] = other.d[0]; + d[1] = other.d[1]; + d[2] = other.d[2]; + e[0] = other.e[0]; + e[1] = other.e[1]; + e[2] = other.e[2]; + mData = other.mData; + mScale = other.mScale; + mAdvance = other.mAdvance; + mLen = other.mLen; + } + + + /// create a pixel controller for managing led data as it is being written out + ///@{ + ///@param d the led data this controller is managing + ///@param len the number of leds this controller is managing + ///@param s the combined rgb scaling adjustment for the leds + ///@param dither the dither mode for these pixels + ///@param advance whether or not to walk through the array of data for each pixel, or just write out the first pixel len times + ///@param skip whether or not there is extra data to skip when writing out led data, e.g. if passed in argb data + PixelController(const uint8_t *d, int len, CRGB & s, EDitherMode dither = BINARY_DITHER, bool advance=true, uint8_t skip=0) : mData(d), mLen(len), mScale(s) { + enable_dithering(dither); + mData += skip; + mAdvance = (advance) ? 3+skip : 0; + } + + PixelController(const CRGB *d, int len, CRGB & s, EDitherMode dither = BINARY_DITHER) : mData((const uint8_t*)d), mLen(len), mScale(s) { + enable_dithering(dither); + mAdvance = 3; + } + + PixelController(const CRGB &d, int len, CRGB & s, EDitherMode dither = BINARY_DITHER) : mData((const uint8_t*)&d), mLen(len), mScale(s) { + enable_dithering(dither); + mAdvance = 0; + } + +#ifdef SUPPORT_ARGB + PixelController(const CARGB &d, int len, CRGB & s, EDitherMode dither = BINARY_DITHER) : mData((const uint8_t*)&d), mLen(len), mScale(s) { + enable_dithering(dither); + // skip the A in CARGB + mData += 1; + mAdvance = 0; + } + + PixelController(const CARGB *d, int len, CRGB & s, EDitherMode dither = BINARY_DITHER) : mData((const uint8_t*)d), mLen(len), mScale(s) { + enable_dithering(dither); + // skip the A in CARGB + mData += 1; + mAdvance = 4; + } +#endif + ///@} + + /// initialize the binary dithering for this controller + void init_binary_dithering() { +#if !defined(NO_DITHERING) || (NO_DITHERING != 1) + + // Set 'virtual bits' of dithering to the highest level + // that is not likely to cause excessive flickering at + // low brightness levels + low update rates. + // These pre-set values are a little ambitious, since + // a 400Hz update rate for WS2811-family LEDs is only + // possible with 85 pixels or fewer. + // Once we have a 'number of milliseconds since last update' + // value available here, we can quickly calculate the correct + // number of 'virtual bits' on the fly with a couple of 'if' + // statements -- no division required. At this point, + // the division is done at compile time, so there's no runtime + // cost, but the values are still hard-coded. +#define MAX_LIKELY_UPDATE_RATE_HZ 400 +#define MIN_ACCEPTABLE_DITHER_RATE_HZ 50 +#define UPDATES_PER_FULL_DITHER_CYCLE (MAX_LIKELY_UPDATE_RATE_HZ / MIN_ACCEPTABLE_DITHER_RATE_HZ) +#define RECOMMENDED_VIRTUAL_BITS ((UPDATES_PER_FULL_DITHER_CYCLE>1) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>2) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>4) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>8) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>16) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>32) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>64) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>128) ) +#define VIRTUAL_BITS RECOMMENDED_VIRTUAL_BITS + + // R is the digther signal 'counter'. + static byte R = 0; + R++; + + // R is wrapped around at 2^ditherBits, + // so if ditherBits is 2, R will cycle through (0,1,2,3) + byte ditherBits = VIRTUAL_BITS; + R &= (0x01 << ditherBits) - 1; + + // Q is the "unscaled dither signal" itself. + // It's initialized to the reversed bits of R. + // If 'ditherBits' is 2, Q here will cycle through (0,128,64,192) + byte Q = 0; + + // Reverse bits in a byte + { + if(R & 0x01) { Q |= 0x80; } + if(R & 0x02) { Q |= 0x40; } + if(R & 0x04) { Q |= 0x20; } + if(R & 0x08) { Q |= 0x10; } + if(R & 0x10) { Q |= 0x08; } + if(R & 0x20) { Q |= 0x04; } + if(R & 0x40) { Q |= 0x02; } + if(R & 0x80) { Q |= 0x01; } + } + + // Now we adjust Q to fall in the center of each range, + // instead of at the start of the range. + // If ditherBits is 2, Q will be (0, 128, 64, 192) at first, + // and this adjustment makes it (31, 159, 95, 223). + if( ditherBits < 8) { + Q += 0x01 << (7 - ditherBits); + } + + // D and E form the "scaled dither signal" + // which is added to pixel values to affect the + // actual dithering. + + // Setup the initial D and E values + for(int i = 0; i < 3; i++) { + byte s = mScale.raw[i]; + e[i] = s ? (256/s) + 1 : 0; + d[i] = scale8(Q, e[i]); + if(e[i]) e[i]--; + } +#endif + } + + /// Do we have n pixels left to process? + __attribute__((always_inline)) inline bool has(int n) { + return mLen >= n; + } + + /// toggle dithering enable + void enable_dithering(EDitherMode dither) { + switch(dither) { + case BINARY_DITHER: init_binary_dithering(); break; + default: d[0]=d[1]=d[2]=e[0]=e[1]=e[2]=0; break; + } + } + + /// get the amount to advance the pointer by + __attribute__((always_inline)) inline int advanceBy() { return mAdvance; } + + /// advance the data pointer forward, adjust position counter + __attribute__((always_inline)) inline void advanceData() { mData += mAdvance; mLen--;} + + /// step the dithering forward + __attribute__((always_inline)) inline void stepDithering() { + // IF UPDATING HERE, BE SURE TO UPDATE THE ASM VERSION IN + // clockless_trinket.h! + d[0] = e[0] - d[0]; + d[1] = e[1] - d[1]; + d[2] = e[2] - d[2]; + } + + /// Some chipsets pre-cycle the first byte, which means we want to cycle byte 0's dithering separately + __attribute__((always_inline)) inline void preStepFirstByteDithering() { + d[RO(0)] = e[RO(0)] - d[RO(0)]; + } + + template __attribute__((always_inline)) inline static uint8_t loadByte(PixelController & pc) { return pc.mData[RO(SLOT)]; } + template __attribute__((always_inline)) inline static uint8_t dither(PixelController & pc, uint8_t b) { return b ? qadd8(b, pc.d[RO(SLOT)]) : 0; } + template __attribute__((always_inline)) inline static uint8_t scale(PixelController & pc, uint8_t b) { return scale8(b, pc.mScale.raw[RO(SLOT)]); } + + // composite shortcut functions for loading, dithering, and scaling + template __attribute__((always_inline)) inline static uint8_t loadAndScale(PixelController & pc) { return scale(pc, pc.dither(pc, pc.loadByte(pc))); } + template __attribute__((always_inline)) inline static uint8_t advanceAndLoadAndScale(PixelController & pc) { pc.advanceData(); return pc.loadAndScale(pc); } + + // Helper functions to get around gcc stupidities + __attribute__((always_inline)) inline uint8_t loadAndScale0() { return loadAndScale<0>(*this); } + __attribute__((always_inline)) inline uint8_t loadAndScale1() { return loadAndScale<1>(*this); } + __attribute__((always_inline)) inline uint8_t loadAndScale2() { return loadAndScale<2>(*this); } + __attribute__((always_inline)) inline uint8_t advanceAndLoadAndScale0() { return advanceAndLoadAndScale<0>(*this); } + __attribute__((always_inline)) inline uint8_t stepAdvanceAndLoadAndScale0() { stepDithering(); return advanceAndLoadAndScale<0>(*this); } +}; + +// Pixel controller class. This is the class that we use to centralize pixel access in a block of data, including +// support for things like RGB reordering, scaling, dithering, skipping (for ARGB data), and eventually, we will +// centralize 8/12/16 conversions here as well. +template +struct MultiPixelController { + const uint8_t *mData; + int mLen; + uint8_t d[3]; + uint8_t e[3]; + CRGB mScale; + int8_t mAdvance; + int mOffsets[LANES]; + + MultiPixelController(const MultiPixelController & other) { + d[0] = other.d[0]; + d[1] = other.d[1]; + d[2] = other.d[2]; + e[0] = other.e[0]; + e[1] = other.e[1]; + e[2] = other.e[2]; + mData = other.mData; + mScale = other.mScale; + mAdvance = other.mAdvance; + mLen = other.mLen; + for(int i = 0; i < LANES; i++) { mOffsets[i] = other.mOffsets[i]; } + + } + + void initOffsets(int len) { + int nOffset = 0; + for(int i = 0; i < LANES; i++) { + mOffsets[i] = nOffset; + if((1<1) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>2) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>4) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>8) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>16) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>32) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>64) + \ + (UPDATES_PER_FULL_DITHER_CYCLE>128) ) +#define VIRTUAL_BITS RECOMMENDED_VIRTUAL_BITS + + // R is the digther signal 'counter'. + static byte R = 0; + R++; + + // R is wrapped around at 2^ditherBits, + // so if ditherBits is 2, R will cycle through (0,1,2,3) + byte ditherBits = VIRTUAL_BITS; + R &= (0x01 << ditherBits) - 1; + + // Q is the "unscaled dither signal" itself. + // It's initialized to the reversed bits of R. + // If 'ditherBits' is 2, Q here will cycle through (0,128,64,192) + byte Q = 0; + + // Reverse bits in a byte + { + if(R & 0x01) { Q |= 0x80; } + if(R & 0x02) { Q |= 0x40; } + if(R & 0x04) { Q |= 0x20; } + if(R & 0x08) { Q |= 0x10; } + if(R & 0x10) { Q |= 0x08; } + if(R & 0x20) { Q |= 0x04; } + if(R & 0x40) { Q |= 0x02; } + if(R & 0x80) { Q |= 0x01; } + } + + // Now we adjust Q to fall in the center of each range, + // instead of at the start of the range. + // If ditherBits is 2, Q will be (0, 128, 64, 192) at first, + // and this adjustment makes it (31, 159, 95, 223). + if( ditherBits < 8) { + Q += 0x01 << (7 - ditherBits); + } + + // D and E form the "scaled dither signal" + // which is added to pixel values to affect the + // actual dithering. + + // Setup the initial D and E values + for(int i = 0; i < 3; i++) { + byte s = mScale.raw[i]; + e[i] = s ? (256/s) + 1 : 0; + d[i] = scale8(Q, e[i]); + if(e[i]) e[i]--; + } +#endif + } + + // Do we have n pixels left to process? + __attribute__((always_inline)) inline bool has(int n) { + return mLen >= n; + } + + // toggle dithering enable + void enable_dithering(EDitherMode dither) { + switch(dither) { + case BINARY_DITHER: init_binary_dithering(); break; + default: d[0]=d[1]=d[2]=e[0]=e[1]=e[2]=0; break; + } + } + + // get the amount to advance the pointer by + __attribute__((always_inline)) inline int advanceBy() { return mAdvance; } + + // advance the data pointer forward, adjust position counter + __attribute__((always_inline)) inline void advanceData() { mData += mAdvance; mLen--;} + + // step the dithering forward + __attribute__((always_inline)) inline void stepDithering() { + // IF UPDATING HERE, BE SURE TO UPDATE THE ASM VERSION IN + // clockless_trinket.h! + d[0] = e[0] - d[0]; + d[1] = e[1] - d[1]; + d[2] = e[2] - d[2]; + } + + // Some chipsets pre-cycle the first byte, which means we want to cycle byte 0's dithering separately + __attribute__((always_inline)) inline void preStepFirstByteDithering() { + d[RO(0)] = e[RO(0)] - d[RO(0)]; + } + + template __attribute__((always_inline)) inline static uint8_t loadByte(MultiPixelController & pc, int lane) { return pc.mData[pc.mOffsets[lane] + RO(SLOT)]; } + template __attribute__((always_inline)) inline static uint8_t dither(MultiPixelController & pc, uint8_t b) { return b ? qadd8(b, pc.d[RO(SLOT)]) : 0; } + template __attribute__((always_inline)) inline static uint8_t dither(MultiPixelController & pc, uint8_t b, uint8_t d) { return b ? qadd8(b,d) : 0; } + template __attribute__((always_inline)) inline static uint8_t scale(MultiPixelController & pc, uint8_t b) { return scale8(b, pc.mScale.raw[RO(SLOT)]); } + template __attribute__((always_inline)) inline static uint8_t scale(MultiPixelController & pc, uint8_t b, uint8_t scale) { return scale8(b, scale); } + + // composite shortcut functions for loading, dithering, and scaling + template __attribute__((always_inline)) inline static uint8_t loadAndScale(MultiPixelController & pc, int lane) { return scale(pc, pc.dither(pc, pc.loadByte(pc, lane))); } + template __attribute__((always_inline)) inline static uint8_t loadAndScale(MultiPixelController & pc, int lane, uint8_t d, uint8_t scale) { return scale8(pc.dither(pc, pc.loadByte(pc, lane), d), scale); } + template __attribute__((always_inline)) inline static uint8_t loadAndScale(MultiPixelController & pc, int lane, uint8_t scale) { return scale8(pc.loadByte(pc, lane), scale); } + template __attribute__((always_inline)) inline static uint8_t advanceAndLoadAndScale(MultiPixelController & pc, int lane) { pc.advanceData(); return pc.loadAndScale(pc, lane); } + + template __attribute__((always_inline)) inline static uint8_t getd(MultiPixelController & pc) { return pc.d[RO(SLOT)]; } + template __attribute__((always_inline)) inline static uint8_t getscale(MultiPixelController & pc) { return pc.mScale.raw[RO(SLOT)]; } + + // Helper functions to get around gcc stupidities + __attribute__((always_inline)) inline uint8_t loadAndScale0(int lane) { return loadAndScale<0>(*this, lane); } + __attribute__((always_inline)) inline uint8_t loadAndScale1(int lane) { return loadAndScale<1>(*this, lane); } + __attribute__((always_inline)) inline uint8_t loadAndScale2(int lane) { return loadAndScale<2>(*this, lane); } + __attribute__((always_inline)) inline uint8_t loadAndScale0(int lane, uint8_t d, uint8_t scale) { return loadAndScale<0>(*this, lane, d, scale); } + __attribute__((always_inline)) inline uint8_t loadAndScale1(int lane, uint8_t d, uint8_t scale) { return loadAndScale<1>(*this, lane, d, scale); } + __attribute__((always_inline)) inline uint8_t loadAndScale2(int lane, uint8_t d, uint8_t scale) { return loadAndScale<2>(*this, lane, d, scale); } + __attribute__((always_inline)) inline uint8_t advanceAndLoadAndScale0(int lane) { return advanceAndLoadAndScale<0>(*this, lane); } + __attribute__((always_inline)) inline uint8_t stepAdvanceAndLoadAndScale0(int lane) { stepDithering(); return advanceAndLoadAndScale<0>(*this, lane); } +}; + +FASTLED_NAMESPACE_END + +#endif diff --git a/arduino/test/dmx.h b/arduino/test/dmx.h new file mode 100644 index 0000000..2237952 --- /dev/null +++ b/arduino/test/dmx.h @@ -0,0 +1,112 @@ +#ifndef __INC_DMX_H +#define __INC_DMX_H + + +#ifdef DmxSimple_h +#include +#define HAS_DMX_SIMPLE + +///@ingroup chipsets +///@{ +FASTLED_NAMESPACE_BEGIN + +// note - dmx simple must be included before FastSPI for this code to be enabled +template class DMXSimpleController : public CLEDController { +public: + // initialize the LED controller + virtual void init() { DmxSimple.usePin(DATA_PIN); } + + // clear out/zero out the given number of leds. + virtual void clearLeds(int nLeds) { + int count = min(nLeds * 3, DMX_SIZE); + for(int iChannel = 1; iChannel <= count; iChannel++) { DmxSimple.write(iChannel, 0); } + } + +protected: + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + int count = min(nLeds, DMX_SIZE / 3); + int iChannel = 1; + for(int i = 0; i < count; i++) { + DmxSimple.write(iChannel++, scale8(data[RGB_BYTE0(RGB_ORDER)], scale.raw[RGB_BYTE0(RGB_ORDER)])); + DmxSimple.write(iChannel++, scale8(data[RGB_BYTE1(RGB_ORDER)], scale.raw[RGB_BYTE1(RGB_ORDER)])); + DmxSimple.write(iChannel++, scale8(data[RGB_BYTE2(RGB_ORDER)], scale.raw[RGB_BYTE2(RGB_ORDER)])); + } + } + + // note that the uint8_ts will be in the order that you want them sent out to the device. + // nLeds is the number of RGB leds being written to + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + int count = min(nLeds, DMX_SIZE / 3); + int iChannel = 1; + for(int i = 0; i < count; i++) { + DmxSimple.write(iChannel++, scale8(data[i][RGB_BYTE0(RGB_ORDER)], scale.raw[RGB_BYTE0(RGB_ORDER)])); + DmxSimple.write(iChannel++, scale8(data[i][RGB_BYTE1(RGB_ORDER)], scale.raw[RGB_BYTE1(RGB_ORDER)])); + DmxSimple.write(iChannel++, scale8(data[i][RGB_BYTE2(RGB_ORDER)], scale.raw[RGB_BYTE2(RGB_ORDER)])); + } + + } + +#ifdef SUPPORT_ARGB + // as above, but every 4th uint8_t is assumed to be alpha channel data, and will be skipped + virtual void show(const struct CARGB *data, int nLeds, uint8_t scale = 255) = 0; +#endif +}; + +FASTLED_NAMESPACE_END + +#endif + +#ifdef DmxSerial_h +#include + +FASTLED_NAMESPACE_BEGIN + +template class DMXSerialController : public CLEDController { +public: + // initialize the LED controller + virtual void init() { DMXSerial.init(DMXController); } + + // clear out/zero out the given number of leds. + virtual void clearLeds(int nLeds) { + int count = min(nLeds * 3, DMXSERIAL_MAX); + for(int iChannel = 0; iChannel < count; iChannel++) { DMXSerial.write(iChannel, 0); } + } + + // set all the leds on the controller to a given color + virtual void showColor(const struct CRGB & data, int nLeds, CRGB scale) { + int count = min(nLeds, DMXSERIAL_MAX / 3); + int iChannel = 0; + for(int i = 0; i < count; i++) { + DMXSerial.write(iChannel++, scale8(data[RGB_BYTE0(RGB_ORDER)], scale.raw[RGB_BYTE0(RGB_ORDER)])); + DMXSerial.write(iChannel++, scale8(data[RGB_BYTE1(RGB_ORDER)], scale.raw[RGB_BYTE1(RGB_ORDER)])); + DMXSerial.write(iChannel++, scale8(data[RGB_BYTE2(RGB_ORDER)], scale.raw[RGB_BYTE2(RGB_ORDER)])); + } + } + + // note that the uint8_ts will be in the order that you want them sent out to the device. + // nLeds is the number of RGB leds being written to + virtual void show(const struct CRGB *data, int nLeds, CRGB scale) { + int count = min(nLeds, DMXSERIAL_MAX / 3); + int iChannel = 0; + for(int i = 0; i < count; i++) { + DMXSerial.write(iChannel++, scale8(data[i][RGB_BYTE0(RGB_ORDER)], scale.raw[RGB_BYTE0(RGB_ORDER)])); + DMXSerial.write(iChannel++, scale8(data[i][RGB_BYTE1(RGB_ORDER)], scale.raw[RGB_BYTE1(RGB_ORDER)])); + DMXSerial.write(iChannel++, scale8(data[i][RGB_BYTE2(RGB_ORDER)], scale.raw[RGB_BYTE2(RGB_ORDER)])); + } + + } + +#ifdef SUPPORT_ARGB + // as above, but every 4th uint8_t is assumed to be alpha channel data, and will be skipped + virtual void show(const struct CARGB *data, int nLeds, uint8_t scale = 255) = 0; +#endif +}; + +FASTLED_NAMESPACE_END +///@} + +#define HAS_DMX_SERIAL +#endif + +#endif diff --git a/arduino/test/docs/.Doxyfile.swp b/arduino/test/docs/.Doxyfile.swp new file mode 100644 index 0000000000000000000000000000000000000000..d223ba7d3880f3ba9ff14fdd3d329572109310e8 GIT binary patch literal 126976 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