summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/hil/hil_ci_set_matrix.py3
-rw-r--r--test/hil/tinyusb.json2
2 files changed, 3 insertions, 2 deletions
diff --git a/test/hil/hil_ci_set_matrix.py b/test/hil/hil_ci_set_matrix.py
index 192174e16..67ce2abb8 100644
--- a/test/hil/hil_ci_set_matrix.py
+++ b/test/hil/hil_ci_set_matrix.py
@@ -22,7 +22,8 @@ def main():
}
for board in config['boards']:
name = board['name']
- if board['flasher'] == 'esptool':
+ flasher = board['flasher']
+ if flasher['name'] == 'esptool':
toolchain = 'esp-idf'
else:
toolchain = 'arm-gcc'
diff --git a/test/hil/tinyusb.json b/test/hil/tinyusb.json
index 4d450cc5a..32f4a06de 100644
--- a/test/hil/tinyusb.json
+++ b/test/hil/tinyusb.json
@@ -120,8 +120,8 @@
{
"name": "stm32f072disco",
"uid": "3A001A001357364230353532",
- "name": "jlink",
"flasher": {
+ "name": "jlink",
"uid": "779541626",
"args": "-device stm32f072rb"
}