Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit bd40206

Browse files
committed
Some more vscode-related changes
1 parent e300552 commit bd40206

File tree

3 files changed

+7
-26
lines changed

3 files changed

+7
-26
lines changed

.vscode/c_cpp_properties.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
"cmake.sourceDirectory": "${workspaceRoot}/examples",
77
"cmake.buildDirectory": "${workspaceRoot}/build/cmake-build-debug",
88
"cmake.preferredGenerators": [
9+
"Ninja",
910
"Unix Makefiles",
10-
"Ninja"
1111
],
1212
"cmake.configureOnOpen": true,
13-
"C_Cpp.intelliSenseEngineFallback": "Enabled"
13+
"C_Cpp.intelliSenseEngineFallback": "Enabled",
14+
"C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools"
1415
}

examples/hello-world/helloWorld.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ void setup()
77

88
void loop()
99
{
10-
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
11-
delay(1000); // wait for a second
12-
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
13-
delay(1000); // wait for a second
10+
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
11+
delay(1000); // wait for a second
12+
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
13+
delay(1000); // wait for a second
1414
}

0 commit comments

Comments
 (0)