diff options
| author | Simon John <git@the-jedi.co.uk> | 2017-04-01 23:16:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-01 23:16:06 +0100 |
| commit | 807cf65f71ace3710b5b69f2bd8d7422ba6bd0af (patch) | |
| tree | d0969737c2fd94ecc68fe332943701d642d17f6f | |
| parent | 6bffcd33836cfe7a569af49c7469050d21209b21 (diff) | |
| parent | 18c6474d5068152168cee9f81c45a766b992bd84 (diff) | |
Merge pull request #493 from sej7278/master
Add support for cu as MONITOR_CMD
| -rw-r--r-- | Arduino.mk | 2 | ||||
| -rw-r--r-- | HISTORY.md | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -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 @@ -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) |
