You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Applications/Teensyduino.app/Contents/Java/hardware/tools/arm/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv7e-m/fpu/libc.a(lib_a-writer.o): In function `_write_r':
writer.c:(.text._write_r+0x12): undefined reference to `_write'
The problem is triggered by FastLED.addLeds.
Removing the line comment before the Serial.println("fix") fixes this. Strange...
The text was updated successfully, but these errors were encountered:
This is a much better fix:
Teensy.mk, instead of defining these as OTHER_LIBS, just add them to LD_FLAGS. Now FastLED builds without the println required, AND the binary size is about 60K smaller. Another issue, where I had to remove new.cpp in teensy3/cores from the build process, is also fixed with this change:
Produces:
The problem is triggered by FastLED.addLeds.
Removing the line comment before the Serial.println("fix") fixes this. Strange...
The text was updated successfully, but these errors were encountered: