File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1099,7 +1099,12 @@ def console(ctx):
10991099 os .system ("python ./tools/pulse_console.py -t %s" % tty )
11001100 else :
11011101 baudrate = ctx .options .baudrate or 230400
1102- os .system ("python ./tools/log_hashing/miniterm_co.py %s %d" % (tty , baudrate ))
1102+ # NOTE: force RTS to be de-asserted, as on some boards (e.g.
1103+ # pblprog-sifli) RTS is used to reset the board SoC. On some OS and/or
1104+ # drivers, RTS may activate automatically, as soon as the port is
1105+ # opened. There may be a glitch on RTS when rts is set differently from
1106+ # their default value.
1107+ os .system ("python ./tools/log_hashing/miniterm_co.py %s %d --rts 0" % (tty , baudrate ))
11031108
11041109
11051110class ConsoleCommand (BuildContext ):
You can’t perform that action at this time.
0 commit comments