How to use Serial Monitor on STM32F407VG Black Board

Development environment specific, Arduino, Eclipse, VS2013, Em::Blocks etc
Post Reply
narendra.desilva
Posts: 9
Joined: Tue Dec 10, 2024 12:33 am

How to use Serial Monitor on STM32F407VG Black Board

Post by narendra.desilva »

Hi

I am new to STM32 on Arduino. I am trying to program STM32F407VG Diymore black board using Arduino. Could someone please help me understand the serial monitor to be connected to Arduino? At the moment I am programming STM32 by the USB Mini. The USB port on this board cannot operate on the Serial Monitor as it is connected as USB port but not as a COM port. Could someone please help me use the serial monitor? Without the serial monitor, it has been a mess to develop programs.

Regards
by GonzoG » Sat Dec 14, 2024 8:32 am
In ide, menu -> tools set USB mode to CDC (supersede Serial) and it will connect to PC with COM prot.
Then use it as with any Arduino board: Serial.begin(1); (with USB there's no baud rate) and Serial.print();
Go to full post
GonzoG
Posts: 491
Joined: Wed Jan 15, 2020 11:30 am
Answers: 36
Location: Prudnik, Poland

Re: How to use Serial Monitor on STM32F407VG Black Board

Post by GonzoG »

In ide, menu -> tools set USB mode to CDC (supersede Serial) and it will connect to PC with COM prot.
Then use it as with any Arduino board: Serial.begin(1); (with USB there's no baud rate) and Serial.print();
narendra.desilva
Posts: 9
Joined: Tue Dec 10, 2024 12:33 am

Re: How to use Serial Monitor on STM32F407VG Black Board

Post by narendra.desilva »

Hi

Thanks a lot. It worked. Thanks again and it is really great to have this forum.
have a nice day
Regards
Post Reply

Return to “IDE's”