Explorar el Código

test_apps: make it possible to run gdb_loadable_elf app locally

Ivan Grokhotkov hace 5 años
padre
commit
5e95bc1d21

+ 1 - 1
tools/test_apps/system/gdb_loadable_elf/app_test.py

@@ -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():

+ 0 - 0
tools/test_apps/system/gdb_loadable_elf/sdkconfig.ci.default → tools/test_apps/system/gdb_loadable_elf/sdkconfig.defaults