Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Serial monitor does not work. (Read 1647 times)
EricDuino
Junior Member
**
Offline


Posts: 22
Joined: Jun 13th, 2016
Serial monitor does not work.
Apr 9th, 2019 at 1:09pm
Print Post  
Visual Micro: 1903.24.2
VS 2017 : 15.9.11
Arduino IDE : 1.8.9
USB driver : Adafruit Feather 32u4 800c:00 version 10.2.3.4
Board : lora32u4ii
------------------------------------------------------------------

Everything works fine, my code runs perfect, but only my serial monitor won't work, but when I use a external serial monitor it works fine. (like cooltherm).

Serial monitor works fine for all the other boards.

Can I change some settings for the serial monitor somewhere ?

Code (C++)
Select All
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
 
  delay(3000); // just a test!
      Serial.begin(115200);
  delay(3000);

  //? The sketch won’t continue if you don’t have the Serial Monitor window open.
  //while (!Serial.available()) {
	 // // wait for serial port to connect. Needed for native USB
	 // delay(100);
  //}
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
  Serial.println("TEST");
}
 


« Last Edit: Apr 9th, 2019 at 1:15pm by EricDuino »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12071
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Serial monitor does not work.
Reply #1 - Apr 9th, 2019 at 1:15pm
Print Post  
To test the serial please ensure the toolbar is set to release and not debug.

Ensure the DTR button is checked on the monitor and that the speed is set to 115200

Does that solve the issue?
  
Back to top
WWW  
IP Logged
 
EricDuino
Junior Member
**
Offline


Posts: 22
Joined: Jun 13th, 2016
Re: Serial monitor does not work.
Reply #2 - Apr 9th, 2019 at 1:20pm
Print Post  
DTR was the problem, thank you Tim for your fast response.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint