USBD_IsHalted
Default mainpageat91libusbdevicecoreUSBD_IsHalted
Description Source Call Graph
Start Line: 1007
unsigned char USBD_IsHalted(unsigned char bEndpoint)
{
    Endpoint *pEndpoint = &(endpoints[bEndpoint]);
    unsigned char status = 0;

    if (pEndpoint->state == UDP_ENDPOINT_HALTED) {

        status = 1;
    }
    return( status );
}