User Activity

I implement the eeprom emulation library for the STM32F423 controller and was wondering if the variables are 16 bits can I use the virtual addresses like this: uint16_t VirtAddVarTab[NB_OF_VAR] = {0x1, 0x2, 0x3};Or do I need to keep space like 0x1, 0...
The function USBH_CDC_Receive should check that the parameter length is a multiple of endpoint size.Reason for this that CDC_ProcessReception calls USBH_BulkReceiveData with the argument CDC_Handle->DataItf.InEpSize. So if the argument pbuff passed t...