usb相关数据类型

/* Following USB Device status */
typedef enum
{
    USBD_OK   = 0U,
    USBD_BUSY,
    USBD_FAIL,
} USBD_StatusTypeDef;

int main()
{
    USBD_StatusTypeDef usbdok = USBD_FAIL;
    cout<<usbdok<<endl;
    system("PAUSE");
    return 0;
}

 

posted on 2022-11-01 00:37  lydstory  阅读(38)  评论(0)    收藏  举报

导航