diff options
| author | Jie Feng <[email protected]> | 2026-06-11 22:48:29 +0800 |
|---|---|---|
| committer | Jie Feng <[email protected]> | 2026-07-19 19:24:40 +0800 |
| commit | 9dfe2e02d97960505fb96df5749d7cdf2ae82f66 (patch) | |
| tree | 9fc1ed836e01babdeef99af0d432b536e13d7f35 | |
| parent | 67a28ae7535100afc80366f29cee5fad01c9bc6f (diff) | |
add to docs
| -rw-r--r-- | README.rst | 2 | ||||
| -rw-r--r-- | src/portable/mentor/musb/dcd_musb.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/README.rst b/README.rst index 205f3f544..f897ec2f5 100644 --- a/README.rst +++ b/README.rst @@ -259,6 +259,8 @@ Supported CPUs | +---------+-------------------+--------+------+-----------+------------------------+--------------------+ | | RW61x | ✅ | ✅ | ✅ | ci_hs, ehci | | +--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+ +| Puya | PY32F071, PY32F072 | ✅ | ❌ | ❌ | musb | 1-dir ep | ++--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+ | Raspberry Pi | RP2040, RP2350 | ✅ | ✅ | ❌ | rp2040, pio_usb | | +--------------+-----+-----------------------+--------+------+-----------+------------------------+--------------------+ | Renesas | RX | 63N, 65N, 72N | ✅ | ✅ | ❌ | rusb2 | | diff --git a/src/portable/mentor/musb/dcd_musb.c b/src/portable/mentor/musb/dcd_musb.c index 0a174065f..69b7ef0de 100644 --- a/src/portable/mentor/musb/dcd_musb.c +++ b/src/portable/mentor/musb/dcd_musb.c @@ -736,19 +736,15 @@ void dcd_remote_wakeup(uint8_t rhport) { } #if defined(TUP_USBIP_MUSB_PY32) - -// Connect by enabling internal pull-up resistor on D+/D- void dcd_connect(uint8_t rhport) { (void) rhport; } -// Disconnect by disabling internal pull-up resistor on D+/D- void dcd_disconnect(uint8_t rhport) { (void) rhport; } - #else // Connect by enabling internal pull-up resistor on D+/D- |
