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/template | |
| parent | 85dbcf5473f8f5d914c4c468715c5381ab2a6603 (diff) | |
added dcd_sof_enable() stubs for all other ports
Diffstat (limited to 'src/portable/template')
| -rw-r--r-- | src/portable/template/dcd_template.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/portable/template/dcd_template.c b/src/portable/template/dcd_template.c index 977369300..26b5dce9d 100644 --- a/src/portable/template/dcd_template.c +++ b/src/portable/template/dcd_template.c @@ -82,6 +82,14 @@ void dcd_disconnect(uint8_t rhport) (void) rhport; } +void dcd_sof_enable(uint8_t rhport, bool en) +{ + (void) rhport; + (void) en; + + // TODO implement later +} + //--------------------------------------------------------------------+ // Endpoint API //--------------------------------------------------------------------+ |
