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 How to switch off debug? (Read 3063 times)
billoberpriller
Newbies
*
Offline


Posts: 4
Joined: Mar 8th, 2016
How to switch off debug?
Mar 8th, 2016 at 2:11pm
Print Post  
When I run this code:

void setup()
{
     pinMode(13, OUTPUT);
}
void loop()
{
     digitalWrite(13, HIGH);   
     delay(1000);              
     digitalWrite(13, LOW);    
     delay(1000);              
}

I get this in the output window:

Program Started 'test01a'
08:59:00.841 test01a.ino, line 5            millis()=2033
Millis is currently 2033.
test01a is paused at test01a.ino, line 5
« Last Edit: Mar 8th, 2016 at 2:19pm by Tim@Visual Micro »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12191
Location: United Kingdom
Joined: Apr 10th, 2010
Re: How to switch off debug?
Reply #1 - Mar 8th, 2016 at 2:21pm
Print Post  
Hi,

The code has compiled and upload. A debug session has started on the micronontroller and is paused waiting for you to press F5 or the Continue button on the tool bar.

You can set the breakpoint to continue execution and not paused by reading the docs.

Or you can switch off debug by changing the "debug/local windows debugger" option on the tool bar to "Release" and then uploading again.
  
Back to top
IP Logged
 
billoberpriller
Newbies
*
Offline


Posts: 4
Joined: Mar 8th, 2016
Re: How to switch off debug?
Reply #2 - Mar 8th, 2016 at 3:25pm
Print Post  
Thanks, I think I'm starting to get the picture.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint