From 75b371ccb03f174f68bd5cea2384420bd5efcf42 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Tue, 21 Apr 2020 21:14:23 +0200 Subject: [PATCH] boards/common/msba2: Set RTS and DTR to 0 when using Miniterm --- boards/common/msba2/Makefile.include | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boards/common/msba2/Makefile.include b/boards/common/msba2/Makefile.include index 05b3b23912..a073f22da7 100644 --- a/boards/common/msba2/Makefile.include +++ b/boards/common/msba2/Makefile.include @@ -16,6 +16,9 @@ PORT_LINUX ?= /dev/ttyUSB0 # This does not make a lot of sense, but it has the same value as the previous code PORT_DARWIN ?= /dev/tty.usbserial-ARM +# when using miniterm set RTS and DTR lines to 0, otherwise the board is reset +MINITERMFLAGS += --rts 0 --dtr 0 + PYTERMFLAGS += -tg include $(RIOTMAKE)/tools/serial.inc.mk