diff options
| author | hathach <[email protected]> | 2022-03-07 23:05:05 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-03-07 23:05:05 +0700 |
| commit | 606f932d92322a71960f51148ecc91eaf29bf507 (patch) | |
| tree | 10140f875d719d5b0c296b0f5bcf018a1687910e /src/portable/mentor/musb | |
| parent | 85dbcf5473f8f5d914c4c468715c5381ab2a6603 (diff) | |
added dcd_sof_enable() stubs for all other ports
Diffstat (limited to 'src/portable/mentor/musb')
| -rw-r--r-- | src/portable/mentor/musb/dcd_musb.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/portable/mentor/musb/dcd_musb.c b/src/portable/mentor/musb/dcd_musb.c index d36585592..0ba53d4d0 100644 --- a/src/portable/mentor/musb/dcd_musb.c +++ b/src/portable/mentor/musb/dcd_musb.c @@ -648,6 +648,14 @@ void dcd_disconnect(uint8_t rhport) USB0->POWER &= ~USB_POWER_SOFTCONN; } +void dcd_sof_enable(uint8_t rhport, bool en) +{ + (void) rhport; + (void) en; + + // TODO implement later +} + //--------------------------------------------------------------------+ // Endpoint API //--------------------------------------------------------------------+ |
