Common image for the ARM development used in Dev Container in VSCode.
Use this image to add following content to your devcontainer.json
file in .devcontainer
folder in VSCode project.
"image": "khose/dev-container-arm:latest",
You can add a configuration like following to your c_cpp_properties.json
file in .vscode
folder in VSCode.
{
"name": "arm",
"includePath": [
"${workspaceFolder}/include"
],
"defines": [
"EXAMPLE_DEF",
],
"macFrameworkPath": [],
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-gcc-arm",
"mergeConfigurations": false,
"browse": {
"path": [
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
}
},