summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-08-15 14:36:31 +0700
committerhathach <[email protected]>2024-08-15 14:36:31 +0700
commit1402e6ec0d5ed60375c9deb1add9061fcb37e590 (patch)
tree3ed6793dadffd87c563122d4113c243b0a65957c /test
parent0be427bae95ef0fe94cb6f0b405eb5c3bbae160a (diff)
add flash-uniflash support for ti tm4c
Diffstat (limited to 'test')
-rw-r--r--test/hil/hil_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py
index 486f0d2eb..1d5f98e5c 100644
--- a/test/hil/hil_test.py
+++ b/test/hil/hil_test.py
@@ -196,6 +196,11 @@ def flash_esptool(board, firmware):
return ret
+def flash_uniflash(board, firmware):
+ ret = run_cmd(f'dslite.sh {board["flasher_args"]} -f {firmware}.hex')
+ return ret
+
+
# -------------------------------------------------------------
# Tests
# -------------------------------------------------------------