raspikeyer/.vscode/c_cpp_properties.json

19 lines
412 B
JSON
Raw Normal View History

2024-02-06 15:50:50 +01:00
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${env:PICO_SDK_PATH}/**"
],
"defines": [],
2024-02-21 12:18:11 +01:00
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
2024-02-06 15:50:50 +01:00
"cStandard": "gnu17",
2024-02-21 08:28:21 +01:00
"cppStandard": "gnu++20",
2024-02-06 15:50:50 +01:00
"intelliSenseMode": "linux-gcc-arm",
"configurationProvider" : "ms-vscode.cmake-tools"
}
],
"version": 4
}