APM:Libraries
|
Functions | |
void | MSC_BOT_Init (USB_OTG_CORE_HANDLE *pdev) |
MSC_BOT_Init Initialize the BOT Process. More... | |
void | MSC_BOT_Reset (USB_OTG_CORE_HANDLE *pdev) |
MSC_BOT_Reset Reset the BOT Machine. More... | |
void | MSC_BOT_DeInit (USB_OTG_CORE_HANDLE *pdev) |
MSC_BOT_DeInit Uninitialize the BOT Machine. More... | |
void | MSC_BOT_DataIn (USB_OTG_CORE_HANDLE *pdev, uint8_t epnum) |
MSC_BOT_DataIn Handle BOT IN data stage. More... | |
void | MSC_BOT_DataOut (USB_OTG_CORE_HANDLE *pdev, uint8_t epnum) |
MSC_BOT_DataOut Proccess MSC OUT data. More... | |
void | MSC_BOT_CBW_finish (USB_OTG_CORE_HANDLE *pdev) |
void | MSC_BOT_SendCSW (USB_OTG_CORE_HANDLE *pdev, uint8_t CSW_Status) |
MSC_BOT_SendCSW Send the Command Status Wrapper. More... | |
void | MSC_BOT_CplClrFeature (USB_OTG_CORE_HANDLE *pdev, uint8_t epnum) |
MSC_BOT_CplClrFeature Complete the clear feature request. More... | |
static void | MSC_BOT_CBW_Decode (USB_OTG_CORE_HANDLE *pdev) |
MSC_BOT_CBW_Decode Decode the CBW command and set the BOT state machine accordingtly. More... | |
static void | MSC_BOT_SendData (USB_OTG_CORE_HANDLE *pdev, uint8_t *buf, uint16_t len) |
MSC_BOT_SendData Send the requested data. More... | |
static void | MSC_BOT_Abort (USB_OTG_CORE_HANDLE *pdev) |
MSC_BOT_Abort Abort the current transfer. More... | |
|
static |
MSC_BOT_Abort Abort the current transfer.
pdev | device instance |
status |
Definition at line 351 of file usbd_msc_bot.c.
Referenced by MSC_BOT_CBW_Decode().
|
static |
MSC_BOT_CBW_Decode Decode the CBW command and set the BOT state machine accordingtly.
pdev | device instance |
None |
Definition at line 244 of file usbd_msc_bot.c.
Referenced by MSC_BOT_DataOut().
void MSC_BOT_CBW_finish | ( | USB_OTG_CORE_HANDLE * | pdev | ) |
Definition at line 277 of file usbd_msc_bot.c.
Referenced by SCSI_ProcessCmd(), and usb_task().
void MSC_BOT_CplClrFeature | ( | USB_OTG_CORE_HANDLE * | pdev, |
uint8_t | epnum | ||
) |
MSC_BOT_CplClrFeature Complete the clear feature request.
pdev | device instance |
epnum | endpoint index |
None |
Definition at line 379 of file usbd_msc_bot.c.
Referenced by USBD_MSC_Setup().
void MSC_BOT_DataIn | ( | USB_OTG_CORE_HANDLE * | pdev, |
uint8_t | epnum | ||
) |
MSC_BOT_DataIn Handle BOT IN data stage.
pdev | device instance |
epnum | endpoint index |
None |
Definition at line 178 of file usbd_msc_bot.c.
Referenced by USBD_MSC_DataIn().
void MSC_BOT_DataOut | ( | USB_OTG_CORE_HANDLE * | pdev, |
uint8_t | epnum | ||
) |
MSC_BOT_DataOut Proccess MSC OUT data.
pdev | device instance |
epnum | endpoint index |
None |
Definition at line 210 of file usbd_msc_bot.c.
Referenced by USBD_MSC_DataOut().
void MSC_BOT_DeInit | ( | USB_OTG_CORE_HANDLE * | pdev | ) |
MSC_BOT_DeInit Uninitialize the BOT Machine.
pdev | device instance |
None |
Definition at line 166 of file usbd_msc_bot.c.
Referenced by USBD_MSC_DeInit().
void MSC_BOT_Init | ( | USB_OTG_CORE_HANDLE * | pdev | ) |
MSC_BOT_Init Initialize the BOT Process.
pdev | device instance |
None |
Definition at line 128 of file usbd_msc_bot.c.
Referenced by USBD_MSC_Init().
void MSC_BOT_Reset | ( | USB_OTG_CORE_HANDLE * | pdev | ) |
MSC_BOT_Reset Reset the BOT Machine.
pdev | device instance |
None |
Definition at line 149 of file usbd_msc_bot.c.
Referenced by USBD_MSC_Setup().
void MSC_BOT_SendCSW | ( | USB_OTG_CORE_HANDLE * | pdev, |
uint8_t | CSW_Status | ||
) |
MSC_BOT_SendCSW Send the Command Status Wrapper.
pdev | device instance |
status | : CSW status |
None |
Definition at line 324 of file usbd_msc_bot.c.
Referenced by MSC_BOT_CBW_finish(), MSC_BOT_CplClrFeature(), MSC_BOT_DataIn(), MSC_BOT_DataOut(), SCSI_ProcessWrite(), and usb_task().
|
static |
MSC_BOT_SendData Send the requested data.
pdev | device instance |
buf | pointer to data buffer |
len | Data Length |
None |
Definition at line 304 of file usbd_msc_bot.c.
Referenced by MSC_BOT_CBW_finish().