Skip to content

Commit 18c6474

Browse files
committed
Add support for cu as MONITOR_CMD, use ~. to exit, be mindful when using over ssh
1 parent 6bffcd3 commit 18c6474

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Arduino.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,6 +1533,8 @@ ifeq ($(MONITOR_CMD), 'putty')
15331533
endif
15341534
else ifeq ($(MONITOR_CMD), picocom)
15351535
$(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port)
1536+
else ifeq ($(MONITOR_CMD), cu)
1537+
$(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE)
15361538
else
15371539
$(MONITOR_CMD) $(call get_monitor_port) $(MONITOR_BAUDRATE)
15381540
endif

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
99
- Fix: Auto-detect F_CPU on Teensy from boards.txt (https://github.com/DaWelter)
1010
- Fix: params typo in PuTTY section (issue #487) (https://github.com/ericdand)
1111
- Fix: Fixed sed expression to properly format show_submenu (issue #488) (https://github.com/cbosdo)
12+
- New: Add support for good old cu as monitor command (issue #492) (https://github.com/mwm)
1213

1314
### 1.5.2 (2017-01-11)
1415

0 commit comments

Comments
 (0)