implement dcd disconnect/connect for lpc ip3511

This commit is contained in:
hathach
2020-04-16 16:05:57 +07:00
parent 969121df4f
commit 418b69f2db
3 changed files with 27 additions and 1 deletions

View File

@@ -91,6 +91,18 @@ void dcd_remote_wakeup (uint8_t rhport)
(void) rhport;
}
// 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;
}
//--------------------------------------------------------------------+
// Endpoint API
//--------------------------------------------------------------------+