diff options
| author | Ha Thach <[email protected]> | 2024-10-10 11:34:05 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-10 11:34:05 +0700 |
| commit | ffdf81f53a84111a2536defa86e4a637c3c46854 (patch) | |
| tree | 66246177d826c1ebf1a38d66d3197b1ec442a21f /test | |
| parent | 65242fd11f8f37d8c05170143ffe2f37697a15a2 (diff) | |
| parent | 1406ad84e3cd7e39771303dd23e6be361b51de96 (diff) | |
Merge pull request #2833 from hathach/update-dwc2
more dwc2 enhance
Diffstat (limited to 'test')
| -rwxr-xr-x | test/hil/hil_test.py | 2 | ||||
| -rw-r--r-- | test/hil/tinyusb.json | 58 |
2 files changed, 40 insertions, 20 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py index 60bba9bd2..0d7cae77e 100755 --- a/test/hil/hil_test.py +++ b/test/hil/hil_test.py @@ -245,7 +245,7 @@ def test_dual_host_info_to_device_cdc(board): # for pico/pico2 make this test optional failed_msg = f'Enumerated devices {enum_dev_sn} not match with declared {declared_devs}' if 'raspberry_pi_pico' in board['name']: - print(f'\r\n {failed_msg} ', end='') + print(f'\r\n {failed_msg} {STATUS_FAILED} ', end='') else: assert False, failed_msg return 0 diff --git a/test/hil/tinyusb.json b/test/hil/tinyusb.json index 1eaa08207..2313f5d13 100644 --- a/test/hil/tinyusb.json +++ b/test/hil/tinyusb.json @@ -1,6 +1,19 @@ { "boards": [ { + "name": "espressif_s3_devkitm", + "uid": "84F703C084E4", + "build" : { + "flags_on": ["", "CFG_TUD_DWC2_DMA"] + }, + "tests": { + "only": ["device/cdc_msc_freertos", "device/hid_composite_freertos"] + }, + "flasher": "esptool", + "flasher_sn": "3ea619acd1cdeb11a0a0b806e93fd3f1", + "flasher_args": "-b 1500000" + }, + { "name": "feather_nrf52840_express", "uid": "1F0479CD0F764471", "flasher": "jlink", @@ -8,6 +21,13 @@ "flasher_args": "-device nrf52840_xxaa" }, { + "name": "max32666fthr", + "uid": "0C81464124010B20FF0A08CC2C", + "flasher": "openocd_adi", + "flasher_sn": "E6614C311B597D32", + "flasher_args": "-f interface/cmsis-dap.cfg -f target/max32665.cfg" + }, + { "name": "metro_m4_express", "uid": "9995AD485337433231202020FF100A34", "flasher": "jlink", @@ -18,13 +38,6 @@ } }, { - "name": "max32666fthr", - "uid": "0C81464124010B20FF0A08CC2C", - "flasher": "openocd_adi", - "flasher_sn": "E6614C311B597D32", - "flasher_args": "-f interface/cmsis-dap.cfg -f target/max32665.cfg" - }, - { "name": "lpcxpresso11u37", "uid": "17121919", "flasher": "jlink", @@ -70,27 +83,34 @@ "flasher_args": "-device stm32f072rb" }, { + "name": "stm32f407disco", + "uid": "30001A000647313332353735", + "build" : { + "flags_on": ["", "CFG_TUD_DWC2_DMA"] + }, + "flasher": "jlink", + "flasher_sn": "000773661813", + "flasher_args": "-device stm32f407vg" + }, + { "name": "stm32g0b1nucleo", "uid": "4D0038000450434E37343120", "flasher": "openocd", "flasher_sn": "066FFF495087534867063844", "flasher_args": "-f interface/stlink.cfg -f target/stm32g0x.cfg" - }, + } + ], + "boards-skip": [ { - "name": "espressif_s3_devkitm", - "uid": "84F703C084E4", + "name": "stm32f769disco", + "uid": "21002F000F51363531383437", "build" : { "flags_on": ["", "CFG_TUD_DWC2_DMA"] }, - "tests": { - "only": ["device/cdc_msc_freertos", "device/hid_composite_freertos"] - }, - "flasher": "esptool", - "flasher_sn": "3ea619acd1cdeb11a0a0b806e93fd3f1", - "flasher_args": "-b 921600" - } - ], - "boards-skip": [ + "flasher": "jlink", + "flasher_sn": "000778170924", + "flasher_args": "-device stm32f769ni" + }, { "name": "mimxrt1015_evk", "uid": "DC28F865D2111D228D00B0543A70463C", |
