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 uint8_t confusion using vMicro + Resharper C++ (Read 5156 times)
Alintya
Newbies
*
Offline


Posts: 3
Joined: Mar 29th, 2018
uint8_t confusion using vMicro + Resharper C++
Mar 29th, 2018 at 9:39am
Print Post  
I'm using VS15.6.4 (2017), vMicro 1803.26.0 and Resharper Ultimate 2017.3.5.

After creating a new arduino project and adding some code or just opening an existing arduino IDE project, VS complains about uint8_t being an ambiguous symbol, while it finds 2 definitions for it. 1 being in the vMicro generated vsarduino header typedef unsigned char uint8_t; and the other inside stdint.h (located in the arduino folder)


Now, what confuses me the most is that these appear to be wrong for an avr cpu, while the avr specific typedefs a few lines above are disabled by preprocessor


Is there some clarification regarding this?
« Last Edit: Mar 29th, 2018 at 9:40am by Alintya »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12181
Location: United Kingdom
Joined: Apr 10th, 2010
Re: uint8_t confusion using vMicro + Resharper C++
Reply #1 - Mar 30th, 2018 at 4:01pm
Print Post  
Hi,

The compile and the intellisense are two separate things.

You are looking at intellisense which piggy backs standard visual studio c++

Some boards have a uint8_t def that VS can't find or does not understand. Visual Micro attempts to show that.

Intellisense will not be 100% until we find an alternative c++ engine however we can improve things most of the time. 

Each hardware and core implements types such as uint8_t in a different way. So please state which hardware you are using.

Thanks
  
Back to top
IP Logged
 
Alintya
Newbies
*
Offline


Posts: 3
Joined: Mar 29th, 2018
Re: uint8_t confusion using vMicro + Resharper C++
Reply #2 - Apr 6th, 2018 at 10:14am
Print Post  
Hi,
I know and the compilation runs just fine but all red code and all sorts of aftereffects are still bothersome when programming.
As already mentioned, I'm using an AVR based board and chose Arduino Mega (2560) in vMicro.
  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12181
Location: United Kingdom
Joined: Apr 10th, 2010
Re: uint8_t confusion using vMicro + Resharper C++
Reply #3 - Apr 6th, 2018 at 1:06pm
Print Post  
Thanks for the info.

Visual micro doesn't define the uint8_t in the vsarduino.h

Questions ...

Can you please be clearer about the source file location and also post your vsarduino.h header file?

Confirm the vsrarduino.h contains the same name as your project

Confirm you only have one vsarduino.h in the project and that it is in the \_vm folder

Confirm that when you switch to a different board using the tool bar the vsarduino.h is recreated?

  
Back to top
IP Logged
 
Alintya
Newbies
*
Offline


Posts: 3
Joined: Mar 29th, 2018
Re: uint8_t confusion using vMicro + Resharper C++
Reply #4 - Apr 9th, 2018 at 3:44pm
Print Post  
Thanks for being that active and caring.

I was talking about stdint.h, where VS found the definition of uint8_t.
It is located in \hardware\tools\avr\avr\include\stdint.h of the arduino IDE installation.

I can confirm all of your other questions (the vsarduino header even gets rebuilt every compilation).

Here is my vsarduino file: https://hastebin.com/ezujejuwol.cpp
« Last Edit: Apr 10th, 2018 at 4:08pm by Alintya »  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint