summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-03-04 17:34:10 +0700
committerhathach <[email protected]>2026-03-04 17:34:10 +0700
commit2dcb1a3ee2f553f9d1a48cb8ec5d11ed51f28d1c (patch)
tree40c22d3494568236ff9f2e6aad1462a67136ea1c /test
parent30af158af9ada161d31e02d08548f78390183920 (diff)
parent13e0b0c4f149016c829f039dc082151bca01174f (diff)
Merge branch 'master' into dwc2_deinit
Diffstat (limited to 'test')
-rwxr-xr-xtest/hil/hil_test.py2
-rw-r--r--test/hil/tinyusb.json3
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..4d7276c8f 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 --force",
+ "comment": "use --force for ESP32-P4 v0.1"
},
"comment": "Use TS3USB30 mux to test both device and host"
},