diff options
| author | hathach <[email protected]> | 2026-03-06 12:05:54 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-03-06 12:05:54 +0700 |
| commit | 558abb93af64eda51420d5bfe03355c89e4b421a (patch) | |
| tree | 237e3a81563dc0edf081616f4152d965550371e6 /test | |
| parent | dbfbfcf48b45ccc1e6534c454f7b2807b9ae88bd (diff) | |
| parent | 06a4c6d7190ef83f76b2a65496f2a48a54a8c134 (diff) | |
Merge branch 'refs/heads/master' into fork/remiberthoz/device-class-printer
Diffstat (limited to 'test')
| -rwxr-xr-x | test/hil/hil_test.py | 2 | ||||
| -rw-r--r-- | test/hil/tinyusb.json | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py index b84740867..757456806 100755 --- a/test/hil/hil_test.py +++ b/test/hil/hil_test.py @@ -302,7 +302,7 @@ def flash_esptool(board, firmware): idf_target = json.load(f)['IDF_TARGET'] with open(f'{fw_dir}/flash_args') as f: flash_args = f.read().strip().replace('\n', ' ') - command = (f'esptool.py --chip {idf_target} -p {port} {flasher["args"]} ' + command = (f'esptool --chip {idf_target} -p {port} {flasher["args"]} ' f'--before=default_reset --after=hard_reset write_flash {flash_args}') ret = run_cmd(command, cwd=fw_dir) return ret diff --git a/test/hil/tinyusb.json b/test/hil/tinyusb.json index 7cb561b2d..029e5ffcd 100644 --- a/test/hil/tinyusb.json +++ b/test/hil/tinyusb.json @@ -13,7 +13,8 @@ "flasher": { "name": "esptool", "uid": "4ea4f48f6bc3ee11bbb9d00f9e1b1c54", - "args": "-b 1500000" + "args": "-b 1500000", + "comment": "use --force for ESP32-P4 v0.1" }, "comment": "Use TS3USB30 mux to test both device and host" }, |
