Skip to content

Commit c5548ec

Browse files
committed
gitignore update
1 parent ef5fc4a commit c5548ec

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
build
2+
sdkconfig*
3+
!sdkconfig.defaults
4+
!sdkconfig.defaults.esp32s3
5+
managed_components
6+

.vscode/c_cpp_properties.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"${workspaceFolder}/main"
8+
],
9+
"defines": [],
10+
"compilerPath": "/usr/bin/gcc",
11+
"cStandard": "c17",
12+
"cppStandard": "gnu++17",
13+
"intelliSenseMode": "linux-gcc-x64",
14+
"configurationProvider": "ms-vscode.cmake-tools"
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/launch.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "ESP-IDF Debug: Launch",
9+
"type": "espidf",
10+
"request": "launch"
11+
}
12+
]
13+
}

.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files.associations": {
3+
"compare": "c"
4+
},
5+
"idf.adapterTargetName": "esp32s3",
6+
"idf.flashType": "UART"
7+
}

0 commit comments

Comments
 (0)