Merge cd754458b2
into 0e462fcff1
This commit is contained in:
commit
63c99783a0
1 changed files with 36 additions and 8 deletions
44
Arduino.mk
44
Arduino.mk
|
@ -984,11 +984,11 @@ ifndef ARDUINO_LIBS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# Serial monitor (just a screen wrapper)
|
# Serial monitor
|
||||||
|
|
||||||
# Quite how to construct the monitor command seems intimately tied
|
# In order to construct a monitor command, we need to use either `less`,
|
||||||
# to the command we're using (here screen). So, read the screen docs
|
# `screen` or `cat`. With `less`, as the default fallback, we will use
|
||||||
# for more information (search for 'character special device').
|
# `-f` flag. Read it's man page to get a better understanding.
|
||||||
|
|
||||||
ifeq ($(strip $(NO_CORE)),)
|
ifeq ($(strip $(NO_CORE)),)
|
||||||
ifndef MONITOR_BAUDRATE
|
ifndef MONITOR_BAUDRATE
|
||||||
|
@ -1006,9 +1006,8 @@ ifeq ($(strip $(NO_CORE)),)
|
||||||
else
|
else
|
||||||
$(call show_config_variable,MONITOR_BAUDRATE, [USER])
|
$(call show_config_variable,MONITOR_BAUDRATE, [USER])
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef MONITOR_CMD
|
ifndef MONITOR_CMD
|
||||||
MONITOR_CMD = screen
|
MONITOR_CMD = "screen"
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -1747,6 +1746,28 @@ reset_stty:
|
||||||
(sleep 0.1 2>/dev/null || sleep 1) ; \
|
(sleep 0.1 2>/dev/null || sleep 1) ; \
|
||||||
$$STTYF $(call get_monitor_port) -hupcl
|
$$STTYF $(call get_monitor_port) -hupcl
|
||||||
|
|
||||||
|
stty_params:
|
||||||
|
stty -F $(call get_monitor_port) \
|
||||||
|
cs8 \
|
||||||
|
$(MONITOR_BAUDRATE) \
|
||||||
|
ignbrk \
|
||||||
|
-brkint \
|
||||||
|
-icrnl \
|
||||||
|
-imaxbel \
|
||||||
|
-opost \
|
||||||
|
-onlcr \
|
||||||
|
-isig \
|
||||||
|
-icanon \
|
||||||
|
-iexten \
|
||||||
|
-echo \
|
||||||
|
-echoe \
|
||||||
|
-echok \
|
||||||
|
-echoctl \
|
||||||
|
-echoke \
|
||||||
|
noflsh \
|
||||||
|
-ixon \
|
||||||
|
-crtscts
|
||||||
|
|
||||||
ispload: $(TARGET_EEP) $(TARGET_HEX) verify_size
|
ispload: $(TARGET_EEP) $(TARGET_HEX) verify_size
|
||||||
$(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) -e \
|
$(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) -e \
|
||||||
$(AVRDUDE_ISPLOAD_OPTS)
|
$(AVRDUDE_ISPLOAD_OPTS)
|
||||||
|
@ -1790,8 +1811,8 @@ show_boards:
|
||||||
show_submenu:
|
show_submenu:
|
||||||
@$(CAT) $(BOARDS_TXT) | grep -E '[a-zA-Z0-9_\-]+.menu.(cpu|chip).[a-zA-Z0-9_\-]+=' | sort -uf | sed 's/.menu.\(cpu\|chip\)./:/' | sed 's/=/:/' | column -s: -t
|
@$(CAT) $(BOARDS_TXT) | grep -E '[a-zA-Z0-9_\-]+.menu.(cpu|chip).[a-zA-Z0-9_\-]+=' | sort -uf | sed 's/.menu.\(cpu\|chip\)./:/' | sed 's/=/:/' | column -s: -t
|
||||||
|
|
||||||
monitor:
|
monitor: stty_params
|
||||||
ifeq ($(notdir $(MONITOR_CMD)), putty)
|
ifeq ($(MONITOR_CMD), 'putty')
|
||||||
ifneq ($(strip $(MONITOR_PARAMS)),)
|
ifneq ($(strip $(MONITOR_PARAMS)),)
|
||||||
$(MONITOR_CMD) -serial -sercfg $(MONITOR_BAUDRATE),$(MONITOR_PARAMS) $(call get_monitor_port)
|
$(MONITOR_CMD) -serial -sercfg $(MONITOR_BAUDRATE),$(MONITOR_PARAMS) $(call get_monitor_port)
|
||||||
else
|
else
|
||||||
|
@ -1801,6 +1822,12 @@ else ifeq ($(notdir $(MONITOR_CMD)), picocom)
|
||||||
$(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port)
|
$(MONITOR_CMD) -b $(MONITOR_BAUDRATE) $(MONITOR_PARAMS) $(call get_monitor_port)
|
||||||
else ifeq ($(notdir $(MONITOR_CMD)), cu)
|
else ifeq ($(notdir $(MONITOR_CMD)), cu)
|
||||||
$(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE)
|
$(MONITOR_CMD) -l $(call get_monitor_port) -s $(MONITOR_BAUDRATE)
|
||||||
|
else ifeq ($(MONITOR_CMD), less)
|
||||||
|
$(MONITOR_CMD) +F -f $(call get_monitor_port)
|
||||||
|
else ifeq ($(MONITOR_CMD), tail)
|
||||||
|
$(MONITOR_CMD) -f $(call get_monitor_port)
|
||||||
|
else ifeq ($(MONITOR_CMD), cat)
|
||||||
|
$(MONITOR_CMD) $(call get_monitor_port)
|
||||||
else
|
else
|
||||||
$(MONITOR_CMD) $(call get_monitor_port) $(MONITOR_BAUDRATE)
|
$(MONITOR_CMD) $(call get_monitor_port) $(MONITOR_BAUDRATE)
|
||||||
endif
|
endif
|
||||||
|
@ -1863,6 +1890,7 @@ help:
|
||||||
rate on the serial port.\n\
|
rate on the serial port.\n\
|
||||||
make show_boards - list all the boards defined in boards.txt\n\
|
make show_boards - list all the boards defined in boards.txt\n\
|
||||||
make show_submenu - list all board submenus defined in boards.txt\n\
|
make show_submenu - list all board submenus defined in boards.txt\n\
|
||||||
|
make stty_params - set proper tty paramerters for the monitor port\n\
|
||||||
make monitor - connect to the Arduino's serial port\n\
|
make monitor - connect to the Arduino's serial port\n\
|
||||||
make debug_init - start openocd gdb server\n\
|
make debug_init - start openocd gdb server\n\
|
||||||
make debug - connect to gdb target and begin debugging\n\
|
make debug - connect to gdb target and begin debugging\n\
|
||||||
|
|
Loading…
Add table
Reference in a new issue