aboutsummaryrefslogtreecommitdiff
path: root/Arduino.mk
diff options
context:
space:
mode:
authorSimon John <git@the-jedi.co.uk>2019-08-25 15:18:09 +0100
committerGitHub <noreply@github.com>2019-08-25 15:18:09 +0100
commite870443f4824cbbcd560f500c6072012dd668f62 (patch)
treea34a612f186a6024238a3881e4828f8ab51d972a /Arduino.mk
parent0e462fcff173c0e6963f3b23ecb5fbb2e59737e7 (diff)
parentfa2146080c27cd10c9a6cf5975dd6f4c58e400a6 (diff)
Merge pull request #613 from TaylorZowtuk/master
Fixed syntax error of make monitor on windows/cygwin
Diffstat (limited to 'Arduino.mk')
-rw-r--r--Arduino.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Arduino.mk b/Arduino.mk
index a403342..b9611a0 100644
--- a/Arduino.mk
+++ b/Arduino.mk
@@ -1792,11 +1792,11 @@ show_submenu:
monitor:
ifeq ($(notdir $(MONITOR_CMD)), putty)
- ifneq ($(strip $(MONITOR_PARAMS)),)
+ifneq ($(strip $(MONITOR_PARAMS)),)
$(MONITOR_CMD) -serial -sercfg $(MONITOR_BAUDRATE),$(MONITOR_PARAMS) $(call get_monitor_port)
- else
+else
$(MONITOR_CMD) -serial -sercfg $(MONITOR_BAUDRATE) $(call get_monitor_port)
- endif
+endif
else ifeq ($(notdir $(MONITOR_CMD)), picocom)
$(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port)
else ifeq ($(notdir $(MONITOR_CMD)), cu)