Browse Source

makefile: drop -q -q (much quiet) from avrdude flags

Annoying when trying to figure out if uploading
actually does something.
Richard Marko 8 years ago
parent
commit
1183c10a2e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Makefile

+ 1
- 1
Marlin/Makefile View File

@@ -354,7 +354,7 @@ AVRDUDE_CONF = /etc/avrdude/avrdude.conf
354 354
 else
355 355
 AVRDUDE_CONF = $(ARDUINO_INSTALL_DIR)/hardware/tools/avr/etc/avrdude.conf
356 356
 endif
357
-AVRDUDE_FLAGS = -q -q -D -C$(AVRDUDE_CONF) \
357
+AVRDUDE_FLAGS = -D -C$(AVRDUDE_CONF) \
358 358
 	-p$(MCU) -P$(AVRDUDE_PORT) -c$(AVRDUDE_PROGRAMMER) \
359 359
 	-b$(UPLOAD_RATE)
360 360
 

Loading…
Cancel
Save