I have the following problem/error verifying the code: Blink.cpp.o: In function `ClocklessController<(unsigned char)3, 5,

I have the following problem/error verifying the code:

Blink.cpp.o: In function ClocklessController<(unsigned char)3, 5, 5, 10, (EOrder)66, 0, false, 50>::showAdjTime(unsigned char const*, int, CRGB&, bool, int)': C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: undefined reference totimer0_millis’
C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: undefined reference to timer0_millis' C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: undefined reference totimer0_millis’
C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: undefined reference to timer0_millis' C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: undefined reference totimer0_millis’
Blink.cpp.o:C:\Program Files (x86)\Digistump_Arduino\libraries\FastLED/clockless_trinket.h:110: more undefined references to `timer0_millis’ follow
collect2: error: ld returned 1 exit status
Error compiling.

I am trying to upload the fastled blink demo to a digispark 85 board…
the neopixel strandtest uploads and runs , and yes i have fastled v3.0.3 installed…any ideas? myself and my digistump are stumped :slight_smile:

i dunno bout the digispark, but timer0_millis is what the avr core uses.

I’m guessing your build isnt defining the digispark at compile time.

Thank you , I will investigate immediately :slight_smile:

Try the FastLED 3.1 branch - there’s a bunch of platform compile issues fixed on there.

Thank you Daniel , I did as you said and it compiled the fastled code…