Posted on October 16, 2015 at 04:08I have been trying STM32Cube software on STM32F072C8T6, specifically on the USB middleware.My program is as simple as declare an OUT BULK endpoint. I'm toying around the idea of double buffering.So in USBD_LL_Init ...
Posted on March 24, 2015 at 02:58
I'm looking intoSTM32F0x2_USB-FS-Device_Lib V1.0.0 particularly on STM32F072C8T6 with HID_CDC composite example.
The first thing I observed, in usbd_cdc_vcp.c,
void EVAL_COM_IRQHandler(void)
{
if (...
Posted on October 21, 2015 at 03:26
I tried same code withSTM32F0x2_USB-FS-Device_Lib V1.0.0, doing
DCD_PMA_Config(pdev, CUSTOM_EPIN_ADDR, USB_SNG_BUF, 0x40);
DCD_PMA_Config(pdev, CUSTOM_EPOUT_ADDR, USB_DBL_BUF, 0x00c00080);
// Open EP IN
DCD...