diff options
| author | hathach <[email protected]> | 2026-01-13 15:17:23 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-01-13 16:06:43 +0700 |
| commit | 8cde9b69c3ea2eb94758641c0a7bd057a33ccabc (patch) | |
| tree | 6ffc390c5625260b98a27409307350675658a138 /test | |
| parent | 34035bb87cb90a2eb413633e30783d5e72d119a6 (diff) | |
minor clean up
separate tud_mtp_data_send() and tud_mtp_data_receive()
Diffstat (limited to 'test')
| -rwxr-xr-x | test/hil/hil_test.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/hil/hil_test.py b/test/hil/hil_test.py index b2e883119..dfea9612f 100755 --- a/test/hil/hil_test.py +++ b/test/hil/hil_test.py @@ -151,7 +151,7 @@ def read_disk_file(uid, lun, fname): def open_mtp_dev(uid): mtp = MTP() # MTP seems to take a while to enumerate - timeout = 2*ENUM_TIMEOUT + timeout = 2 * ENUM_TIMEOUT while timeout > 0: # run_cmd(f"gio mount -u mtp://TinyUsb_TinyUsb_Device_{uid}/") for raw in mtp.detect_devices(): @@ -617,13 +617,13 @@ def test_device_mtp(board): # device tests # note don't test 2 examples with cdc or 2 msc next to each other device_tests = [ - 'device/cdc_dual_ports', - 'device/dfu', - 'device/cdc_msc', - 'device/dfu_runtime', - 'device/cdc_msc_freertos', - 'device/hid_boot_interface', - # 'device/mtp' + # 'device/cdc_dual_ports', + # 'device/dfu', + # 'device/cdc_msc', + # 'device/dfu_runtime', + # 'device/cdc_msc_freertos', + # 'device/hid_boot_interface', + 'device/mtp' ] dual_tests = [ |
