I have built & run the basic USB CDC device sample based on the ST USB library.
I’ve installed the ST VCP USB CDC driver (http://www.st.com/web/en/catalog/tools/PF257938) – v1.4
The STM32F7 Discovery board USB FS port appears as Com 13 when I plug it in, & I can initially connect to it using Teraterm (haven’t got to the stage of worrying about baud rate). I suspect that its meant to autobaud.
I don’t get the option to create a raw terminal – the options not there under VGDB project properties. The example given in http://visualgdb.com/tutorials/arm/stm32/usb/ has more tabs than I see. I am running a recent VGDB v(5.1 build 712).
As soon as I start to download the demo to debug it, the USB detaches, so when I get to the first VCP_write call,
VCP_write(“USB Test\r\n”, 10);
the program disappears off into the USB stack & I never get past repeated calls to this line.
Here’s a link to a screen shot:
https://www.dropbox.com/s/iybfvtoan7fi4kq/Screenshot%202016-06-10%2015.53.42.png?dl=0
This seems somewhat similar to
STM32 USB CDC Demo is missing an interrupt handler
which is the closest topic that I could find.