diff options
| author | hathach <[email protected]> | 2026-07-10 00:17:56 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-07-17 17:26:04 +0700 |
| commit | d155273ce44f6bcf72494cce396188c90279c6a1 (patch) | |
| tree | b38d831e90044ff0432f64ef9a22093990519c5b | |
| parent | 6d4c985c9a2c1d937add144bc70b5b18df33021e (diff) | |
hil: add frdm_k64f host test (cdc + msc) to tinyusb.json
frdm_k64f as a USB host with a CH9102 CDC (TX-RX loopback) and a Lexar MSC
drive behind a hub; flasher = onboard OpenSDA J-Link. host/cdc_msc_hid passes
(CDC mount+echo, MSC mount + disk-size check). device_info remains a known
device_info/usbh limitation (its synchronous descriptor dump starves a 2nd
device's enumeration) and is not ci_fs-specific.
Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
Claude-Session: https://claude.ai/code/session_01ExGPLP5eU43LR7o6yYLpNi
| -rw-r--r-- | test/hil/tinyusb.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/hil/tinyusb.json b/test/hil/tinyusb.json index 6871d812f..812eb7571 100644 --- a/test/hil/tinyusb.json +++ b/test/hil/tinyusb.json @@ -1,6 +1,36 @@ { "boards": [ { + "name": "frdm_k64f", + "uid": "FFFF1A00FFFFFFFF1031454E0F000280", + "tests": { + "device": false, + "host": true, + "dual": false, + "dev_attached": [ + { + "vid_pid": "1a86_55d4", + "serial": "52D2023934", + "is_cdc": true, + "comment": "CH9102 USB-serial (TX-RX loopback)" + }, + { + "vid_pid": "21c4_0cc7", + "serial": "9000588268687E25", + "is_msc": true, + "block_size": 512, + "block_count": 60620800, + "msc_inquiry": "Lexar USB Flash Drive PMAP" + } + ] + }, + "flasher": { + "name": "jlink", + "uid": "000621000000", + "args": "-device MK64FN1M0xxx12" + } + }, + { "name": "ek_tm4c123gxl", "uid": "010105186C60A110", "tests": { |
