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

Commit bc2b292

Browse files
elektronikworkshopadiazulay
authored andcommitted
Documentation updates
* Notes regarding settings * Notes where to run the auto-generation
1 parent baaf069 commit bc2b292

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

BRANCHNOTES.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ src/arduino/arduino.ts
4848
| | :white_check_mark: JSON output |
4949
| | :white_check_mark: Configuration merging |
5050
| **General** | :white_check_mark: Review and remove previous attempts messing with `c_cpp_properties.json` |
51+
| | :white_check_mark: Auto-run verify after setting a board to generate a valid `c_cpp_properties.json`, identify other occasions where this applies |
5152

5253
`*` not committed to branch yet
5354

@@ -150,13 +151,18 @@ Global user settings, on linux under `~/.config/Code/User/settings.json`, for in
150151
}
151152
```
152153
Project settings in `.vscode/arduino.json`
153-
```
154+
```json
154155
{
155156
"board": "arduino:avr:nano",
156157
"configuration": "cpu=atmega328old",
157158
"sketch": "examples/lcdpong-butenc/lcdpong-butenc.ino",
158159
"port": "/dev/ttyUSB0"
159160
}
160161
```
161-
162+
The global settings are [here](src/arduino/vscodeSettings.ts)
163+
```ts
164+
if (VscodeSettings.getInstance().logLevel === "verbose") {
165+
args.push("--verbose");
166+
}
167+
```
162168
### Global Tasks in vscode-arduino

0 commit comments

Comments
 (0)