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 Trouble with Visual Studio 2013 Professional and VisualMicro (Read 3189 times)
Sebbasstt
Newbies
*
Offline


Posts: 2
Joined: Apr 5th, 2015
Trouble with Visual Studio 2013 Professional and VisualMicro
Apr 5th, 2015 at 3:52pm
Print Post  

Hello, I bought and I VisualMicro TODAY Arduino 1.6.1 installed.
I also have Visual Studio 2013 Professional

All seems to be installed correctly. I recorded my license code and AC told me that it's "REGISTRED";

I created a skit correctly.

I'm specifies the type of Arduino "UNO" and the com port "COM11" in my case.

but I fail to compile / deploy the project to the Arduino.

It gives me an error message as follows.

Compiling 'station_master' for Arduino Uno '
Build folder: file: /// C: /Users/Sebbasstt/AppData/Local/V.Micro/Arduino/Builds/station_master/uno
Summary: Header Prototypes = 1 = 3 = 0 Imports
Additional Defines:
Architecture Tools: {runtime.tools.avr-gcc.path} / bin /
Sketchbook: file: /// C: / Users / Sebbasstt / Documents / Arduino
Include Core Paths
Include Path 'C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ cores \ arduino'
Include Path 'C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ Variants \ standard'
"{Runtime.tools.avr-gcc.path} / bin / Apr-g ++" -c -g -Wall -Os -fno-exceptions -ffunction sections -fdata sections -fno-threadsafe-statics -MMD -mmcu = ATmega328P -DF_CPU = 16000000L -DARDUINO = 163 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR -I "C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ cores \ arduino" -I "C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ \ standard variants "" C: \ Users \ Sebbasstt \ AppData \ Local \ V.Micro \ Arduino \ Builds \ station_master \ uno \ station_master.cpp "-o" C: \ Users \ Sebbasstt \ AppData \ Local \ V.Micro \ Arduino \ Builds \ station_master \ uno \ station_master.cpp.o "
The specified file is not found
Process: "{runtime.tools.avr-gcc.path} \ bin \ avr-g ++" -Wall -Os -c -g -fno-exceptions -ffunction sections -fdata sections -fno-threadsafe-statics -MMD - MMCU ATmega328P -DF_CPU = = = 163 16000000L -DARDUINO -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR -I "C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ cores \ arduino" -I "C: \ Program Files (x86) \ Arduino \ hardware \ arduino \ April \ \ standard variants "" C: \ Users \ Sebbasstt \ AppData \ Local \ V.Micro \ Arduino \ Builds \ station_master \ uno \ station_master.cpp "-o" C: \ Users \ Sebbasstt \ AppData \ Local \ V.Micro \ Arduino \ Builds \ station_master \ uno \ station_master.cpp.o "
Error compiling


************************************************** ********************************************
here is the little code that works well with Arduino IDE

void setup ()
{
pinMode (Station_1_Led, OUTPUT); // Station 1
}

void loop ()
{
    unsigned long currentMillis = millis ();
    // Flasher 75 ms
if (currentMillis - prev_int_75> interval_75)
{
prev_int_75 = currentMillis;
if (flasher_75 == LOW)
{
flasher_75 = HIGH;
}
else
{
flasher_75 = LOW;
}
}
      
digitalWrite (Station_1_Led, flasher_75)
}

I do not know what to do .. I thought cétait simple "Plug and Play" Your Plug In.

thank you
  
Back to top
 
IP Logged
 
Sebbasstt
Newbies
*
Offline


Posts: 2
Joined: Apr 5th, 2015
Re: Trouble with Visual Studio 2013 Professional and VisualMicro
Reply #1 - Apr 5th, 2015 at 4:18pm
Print Post  
Hello first !! , and sorry for my bad english ( Je suis francophone du Quebec Smiley

I finally succeed to run the plug-in.
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12136
Location: United Kingdom
Joined: Apr 10th, 2010
Re: Trouble with Visual Studio 2013 Professional and VisualMicro
Reply #2 - Apr 5th, 2015 at 5:15pm
Print Post  
Good to hear you fixed it.

You had Arduino 1.6.3 installed not 1.6.1  Smiley

see this in the error/compiler output -DARDUINO = 163

Support for 1.6.2 + will be available in a couple of days
« Last Edit: Apr 5th, 2015 at 5:15pm by Tim@Visual Micro »  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint