sudar / Arduino-Makefile

Makefile for Arduino sketches. It defines the workflows for compiling code, flashing it to Arduino and even communicating through Serial.
http://hardwarefun.com/tutorials/compiling-arduino-sketches-using-makefile
GNU Lesser General Public License v2.1
2.02k stars 449 forks source link

List of option #642

Closed horchi closed 4 years ago

horchi commented 4 years ago

very nice project! Much more comfortable to use Makefiles instead of the IDE :)

One question, where I find a list of all needed options?

I had to set AVRDUDE_ARD_BAUDRATE to get the upload running, first I tried to set the MONITOR_BAUDRATE but it had no effect to the call of avrdude.

The automatic detected Rate also not worked. By setting: AVRDUDE_ARD_BAUDRATE = 57600 all is fine now.

Thx and best regards Jörg

sej7278 commented 4 years ago

the blink example is useful, the options are all documented here

horchi commented 4 years ago

Many thanks, https://github.com/sudar/Arduino-Makefile/blob/master/arduino-mk-vars.md is exactly hat I'am looking for. May It make sense to put this link also into the main README.md?

sej7278 commented 4 years ago

There is already a link from readme

https://github.com/sudar/Arduino-Makefile#useful-variables

horchi commented 4 years ago

thx! Sorry I had totally overseen this