User Activity

GPIO configuration as followsvoid HAL_HCD_MspInit(HCD_HandleTypeDef *hhcd){...  GPIO_InitStruct.Pin = GPIO_PIN_10;  GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;  GPIO_InitStruct.Pull = GPIO_PULLUP;  GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;  GPIO_InitStruc...
Chip set : STM32F413xxI would like to implement RNDIS driver + VCP(FS).I wonder that usb descriptor is available or not for this combination.Descriptor was modified for this.VCP was enumerated but RNDIS was not enumerated. error code is 10 from windo...