On Windows 10 for STM32F407VG MCU, Virtual Com port shows only blank screen on putty.
My work environment as below :
1. Window 10 (Version 10.0.18362 Build 18362)
2. Laptop processor: AMD PRO A12-8830B R7
3. My Discovery Board: STM32F407VG MCU
4. Driver Installed :
en.stsw-link009 and Virtual Com port : VCP_V1.5.0_Setup_W8_x64
5. Coding Using MBED online compiler.
Issue : When I access COM3 port using Tera Term / putty it shows me blank screen,
Why it don't print Helllo World on putty or Teram Term console ???
But On this board I can run LED blinking programs successfully.
Code :
#include "mbed.h"
Serial pc(USBTX, USBRX); // tx, rx
int main()
{
while(1) {
pc.printf("Hello World!\n");
wait(0.8);
}
}
Kindly refer below screen snaps of Virtual Com Port, Tera term and Code for more detail.



