Posted on April 25, 2014 at 15:16Hi, all, I use STM32F103VCT6 and VirtualComport_Loopback project for usb communication, the usb part works fine. Now, I try to output the MCO at PA8, failed.void MCO_Config(void){ GPIO_InitTypeDef is; RCC_APB...
Posted on April 26, 2014 at 15:58Thanks for your help.We found problem happended in the usb configure process.Problem solved by: while (1) { if (bDeviceState == CONFIGURED) { MCO_Config(); break; } } while (1) { ...}