Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
5 years, 11 months ago.
CDC Driver issue with ST
Hi I am attempting to use the latest USBDRIVER code available with my F446ZE Nucleo board. Code below compiles no error but when I attempt to connect my PC the CDC DRIVER in windows does not recognize the Nucleo.
Does anyone have familiarity with this issue and know of a fix?
Thanks Bill
#include "mbed.h" #include "USBSerial.h" //Virtual serial port over USB USBSerial serial; int main(void) { while(1) { serial.printf("I am a virtual serial port\n"); wait(1); } }