Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 076b80b

Browse files
committed
Add VS Code C/C++ properties file for autocomplete
1 parent dba57c0 commit 076b80b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Pico",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"${env:PICO_SDK_PATH}/**"
8+
],
9+
"defines": [],
10+
"compilerPath": "${env:PICO_INSTALL_PATH}/gcc-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
11+
"cStandard": "c11",
12+
"cppStandard": "c++11",
13+
"intelliSenseMode": "linux-gcc-arm",
14+
"configurationProvider": "ms-vscode.cmake-tools"
15+
}
16+
],
17+
"version": 4
18+
}

0 commit comments

Comments
 (0)