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 Cant get installation to work. Can upload, but code is not executed (Read 1702 times)
Waassuupp
Newbies
*
Offline


Posts: 1
Joined: Dec 8th, 2015
Cant get installation to work. Can upload, but code is not executed
Dec 8th, 2015 at 11:11pm
Print Post  
Hi everyone!

I just installed Atmel Studio 7, the Arduin IDE and VIsual Micro.

I think everything worked there, as I can see the options to create a new project under File -> New -> Arduino Project.

However, if I make a new project and insert the example code of "blink" into my projectname.ino, the code can be uploaded to my arduino mega but is not executed, as the LED does not blink.

Also serial output under the setup function will not be sent.

Do you have any Ideas what the problem could be?

my Code:
void setup() {
     // initialize digital pin 13 as an output.
     pinMode(13, OUTPUT);
     
     Serial.begin(115200);
     Serial.println("Hallo");
}

// the loop function runs over and over again forever
void loop() {
     
     digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
     delay(1000);              // wait for a second
     digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
     delay(1000);              // wait for a second
}


Thank you very much in advance!
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12204
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Cant get installation to work. Can upload, but code is not executed
Reply #1 - Dec 8th, 2015 at 11:29pm
Print Post  
Hi,

Please post the output from build and upload

Thanks
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint