We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38643f7 commit 3652a82Copy full SHA for 3652a82
Arduino.mk
@@ -959,7 +959,7 @@ ifeq ($(strip $(NO_CORE)),)
959
$(call show_config_variable,MONITOR_BAUDRATE, [USER])
960
endif
961
ifndef MONITOR_CMD
962
- MONITOR_CMD = "less +F"
+ MONITOR_CMD = "screen"
963
964
965
@@ -1763,6 +1763,8 @@ else ifeq ($(notdir $(MONITOR_CMD)), picocom)
1763
else ifeq ($(notdir $(MONITOR_CMD)), cu)
1764
$(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE)
1765
else ifeq ($(MONITOR_CMD), less)
1766
+ $(MONITOR_CMD) +F $(call get_monitor_port)
1767
+else ifeq ($(MONITOR_CMD), tail)
1768
$(MONITOR_CMD) -f $(call get_monitor_port)
1769
else ifeq ($(MONITOR_CMD), cat)
1770
$(MONITOR_CMD) $(call get_monitor_port)
0 commit comments