test_apps: make it possible to run gdb_loadable_elf app locally

This commit is contained in:
Ivan Grokhotkov 2020-05-04 19:10:06 +02:00
parent 17d60faf17
commit 5e95bc1d21
2 changed files with 1 additions and 1 deletions

View file

@ -12,7 +12,7 @@ import ttfw_idf
class SerialThread(object):
def run(self, log_path, exit_event):
with serial.Serial('/dev/ttyUSB1', 115200) as ser, open(log_path, 'wb') as f:
with serial.Serial(os.getenv('ESPPORT', '/dev/ttyUSB1'), 115200) as ser, open(log_path, 'wb') as f:
while True:
f.write(ser.read(ser.in_waiting))
if exit_event.is_set():