VSCode – Defines
It is common to pass defines to the compiler using flags at compile time.
-D_DEBUG -DPART_TM4C123GH6PM
Setting these for VSCode is simple: just add them to the “defines” section of c_cpp_properties.json, without the -D flag prefix:
"defines": [ "_DEBUG", "PART_TM4C123GH6PM" ],
If the include paths and defines are properly set up in Visual Studio Code, the C/C++ plugin should be able to properly parse our code, identify syntax errors, and will provide Intellisense code completion to improve the speed and accuracy of writing!
Recent Comments