From 71f4609cb56f6fb8de3f8d18f27080e81061d7c0 Mon Sep 17 00:00:00 2001 From: luisbebop Date: Sat, 4 Jun 2016 16:35:40 -0300 Subject: [PATCH] Add connect task to the makefile --- common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mk b/common.mk index 172fbe2..6f9e0d7 100644 --- a/common.mk +++ b/common.mk @@ -220,6 +220,9 @@ size: $(PROGRAM_OUT) test: flash $(FILTEROUTPUT) --port $(ESPPORT) --baud 115200 --elf $(PROGRAM_OUT) + +connect: + $(FILTEROUTPUT) --port $(ESPPORT) --baud 115200 --elf $(PROGRAM_OUT) # the rebuild target is written like this so it can be run in a parallel build # environment without causing weird side effects