adafruit / seesaw

I2C friend to expand capabilities of other chips.
Other
76 stars 34 forks source link

Building on Unix? #2

Closed timonsku closed 6 years ago

timonsku commented 6 years ago

I was wondering if there are any dependencies that make the code tied to Atmel Studio (or at least make it harder to use something else) or if compiling with arm-gcc on say Linux should work just as well?

deanm1278 commented 6 years ago

@PTS93 we use Atmel studio for stuff like debugging, build script management, etc. It will compile just fine with arm-gcc (that's what Atmel studio uses behind the scenes) but currently you will need to create your own makefile.

timonsku commented 6 years ago

Thanks for the info and quick reply!

deanm1278 commented 6 years ago

just saw this issue again. @PTS93 the build is makefile based now so you should be able to build on any system as long as arm-none-eabi compiler tools are in your PATH

timonsku commented 6 years ago

oh thats cool! I got by with Atmel Studio so far but as I primarily use Linux the make file is a great help, thanks!