Hi all,
I am working with a nrf51 Nordic chip under Eclipse and ARM GCC.
I would like to use the FastLED library outside of the Arduino IDE.
Has someone an example of a makefile for ARM GCC integrating FastLED?
Best regards
@Alexis_Leibbrandt I’d recommend looking at the various attempts at command-line Arduino builds. There used to be a few Makefiles floating around for AVR-based Arduinos that worked fine, but in the intervening years the Arduino build system has gotten general and complex enough that most people who just want “command-line Arduino” use the new official “arduino” commandline program. But here’s a few alternatives:
http://playground.arduino.cc/Learning/CommandLine
http://playground.arduino.cc/Main/DevelopmentTools (and do a search for “makefile” or “arm”)
@Tod_Kurt The ArduinoDevel Github is interesting but as I understand it, this is used to compile Arduino code outside of the Arduino IDE. What I would like to do, is to leave the Arduino environment completely and integrate the FastLED library into my own project which uses the standard Nordic SDK.
@Alexis_Leibbrandt Oh sorry, I didn’t finish my thought. I’ve used tools like those to move from Arduino to bare compilers by using the Makefiles generated as a crib-sheet for my own projects. (This is particularly useful for ARM-based projects because of all the extra device-specific libs that need to be pulled in)