From 4eafa097f61d001e9241e8ef7166f500d86a1f91 Mon Sep 17 00:00:00 2001 From: gregor herrmann Date: Fri, 19 Apr 2024 17:56:02 +0200 Subject: [PATCH] Makefile updates: update MONITOR_PORT, add AVRDUDE_CONF --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c92250a..fcbece5 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,13 @@ BOARD_TAG=uno HOSTNAME=$(shell hostname) ifeq ($(HOSTNAME),jadzia) -MONITOR_PORT=/dev/ttyACM1 +MONITOR_PORT=/dev/arduino else MONITOR_PORT=/dev/ttyACM0 endif +AVRDUDE_CONF=/etc/avrdude.conf + # ARDUINO_SKETCHBOOK=~/sketchbook include /usr/share/arduino/Arduino.mk -- 2.39.5