Added usbd_ep_nak_set() to force flow control on OUT endpoints.

This commit is contained in:
Gareth McMullin
2011-03-30 07:17:02 +13:00
parent 692266bf67
commit ef0ff192f7
5 changed files with 49 additions and 2 deletions

View File

@@ -127,3 +127,9 @@ u8 usbd_ep_stall_get(u8 addr)
{
return _usbd_device.driver->ep_stall_get(addr);
}
void usbd_ep_nak_set(u8 addr, u8 nak)
{
_usbd_device.driver->ep_nak_set(addr, nak);
}