Downloading and installing the new Arduino IDE for ESP8266

Moderator: igrr

User avatar
By tve
#27895 Are there some "getting started" instructions somewhere for building the firmware and sketches via the command line on linux? E.g. a Makefile approach. I do not want the Arduino IDE in any shape or form... I have esp_open_sdk and native esp8266 projects, so I'm very comfortable with those pieces. Thanks!
User avatar
By webtop
#28541 For CLI building and uploading of both sketches (hex files) and firmware, I use avrdude. You can find info on it here: http://www.nongnu.org/avrdude/.

It is the same tool used by the Arduino IDE to do what you do in the GUI, in the background.
I create a lot of projects where I program Atmel chips directly, so I don't have to have an Arduino board.

Hope that helps,
Paul
User avatar
By martinayotte
#28564 I think @tve wish to have Makefile to compile Arduino sketches for ESP, not for Atmel AVRs.
I remember seeing https://travis-ci.org/sudar/Arduino-Makefile, "travis-ci" is an automation of build process that IGRR is actually using for testing PR before merges, I didn't used it yet, but I will.
I presume IGRR can give us more details on the pros & cons of this tool.
Here are also some other links that the README of the above gave me :
The GitHib of the above project itself : https://github.com/sudar/Arduino-Makefile
Some other project : https://github.com/ladislas/Bare-Arduino-Project