Question
Stm32f105rct6 won't work USB VCP with CAN1+CAN2 together
I'm using Cube IDE 1.5.1 and stm32f105rct6 MCU.
I need to get data from CAN1 and CAN2 and send via USB VCP to terminal.
But I get "Unknown Device".
MX_GPIO_Init();
MX_CAN1_Init();
MX_CAN2_Init();
MX_USB_DEVICE_Init();When I commented CAN Init:
MX_GPIO_Init();
//MX_CAN1_Init();
//MX_CAN2_Init();
MX_USB_DEVICE_Init();My computer started USB connection and got Stm32 VCP device online.
How can I solve this problem?
