1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/common/msba2: Set RTS and DTR to 0 when using Miniterm

This commit is contained in:
Leandro Lanzieri 2020-04-21 21:14:23 +02:00
parent 9463f85d39
commit 75b371ccb0
No known key found for this signature in database
GPG Key ID: 39607DE6080007A3

View File

@ -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