From 96146f3a23461b4b71557cf2b506cd76f03ebc90 Mon Sep 17 00:00:00 2001 From: Ain <41307858+nero@users.noreply.github.com> Date: Sat, 6 Oct 2018 14:34:00 +0000 Subject: [PATCH] Add 'reset' target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 894587e..5f543d6 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,9 @@ AVRDUDE_ARGS += -b$(AVRDUDE_BAUD) endif ifdef AVRDUDE_TYPE +reset: + $(AVRDUDE) $(AVRDUDE_ARGS) + flash: $(PROG).hex $(AVRDUDE) $(AVRDUDE_ARGS) -U flash:w:$(PROG).hex endif