From 18c6474d5068152168cee9f81c45a766b992bd84 Mon Sep 17 00:00:00 2001 From: Simon John Date: Sat, 1 Apr 2017 23:06:28 +0100 Subject: [PATCH] Add support for cu as MONITOR_CMD, use ~. to exit, be mindful when using over ssh --- Arduino.mk | 2 ++ HISTORY.md | 1 + 2 files changed, 3 insertions(+) diff --git a/Arduino.mk b/Arduino.mk index 24b8256..9554f35 100644 --- a/Arduino.mk +++ b/Arduino.mk @@ -1533,6 +1533,8 @@ ifeq ($(MONITOR_CMD), 'putty') endif else ifeq ($(MONITOR_CMD), picocom) $(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port) +else ifeq ($(MONITOR_CMD), cu) + $(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE) else $(MONITOR_CMD) $(call get_monitor_port) $(MONITOR_BAUDRATE) endif diff --git a/HISTORY.md b/HISTORY.md index f1b19b6..51d9d56 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -9,6 +9,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it - Fix: Auto-detect F_CPU on Teensy from boards.txt (https://github.com/DaWelter) - Fix: params typo in PuTTY section (issue #487) (https://github.com/ericdand) - Fix: Fixed sed expression to properly format show_submenu (issue #488) (https://github.com/cbosdo) +- New: Add support for good old cu as monitor command (issue #492) (https://github.com/mwm) ### 1.5.2 (2017-01-11)