File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,9 @@ class ClocklessController : public CLEDController {
261
261
ADJDITHER2 (d1,e1 );
262
262
ADJDITHER2 (d2,e2 );
263
263
264
+ hi = *port | mask;
265
+ lo = *port & ~mask;
266
+
264
267
// Sum of the clock counts across each row should be 10 for 8Mhz, WS2811
265
268
// The values in the D1/D2/D3 indicate how many cycles the previous column takes
266
269
// to allow things to line back up.
Original file line number Diff line number Diff line change @@ -34,13 +34,15 @@ typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile u
34
34
35
35
#endif
36
36
37
+ #if 0
37
38
#if defined(ARDUINO ) && defined(FASTLED_AVR ) && ARDUINO >= 157
38
39
#error Arduion versions 1.5.7 and later not yet supported by FastLED for AVR
39
40
#endif
40
41
41
42
#if defined(ARDUINO ) && defined (FASTLED_AVR ) && (__GNUC__ == 4 ) && (__GNUC_MINOR__ > 7 )
42
43
#error gcc versions 4.8 and above are not yet supported by FastLED for AVR
43
44
#endif
45
+ #endif
44
46
45
47
// Arduino.h needed for convinience functions digitalPinToPort/BitMask/portOutputRegister and the pinMode methods.
46
48
#include <Arduino.h>
You can’t perform that action at this time.
0 commit comments