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

Commit b50e432

Browse files
authored
Merge pull request #1 from microsoft/intellisense-autoconfig.rebased
Merged develop into intellisense-autoconfig.rebased
2 parents e12aa69 + 7825a46 commit b50e432

16 files changed

+364
-139
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## Version 0.3.4
5+
6+
- Release date: November 22, 2020
7+
8+
### Changed
9+
- Add DTR and RTS signals on serial open and buad rate change
10+
- Improves c_cpp_properties.json autogeneration for intelliSense
11+
412
## Version 0.3.3
513

614
- Release date: October 29, 2020

package-lock.json

Lines changed: 104 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-arduino",
33
"displayName": "Arduino",
44
"description": "Arduino for Visual Studio Code",
5-
"version": "0.3.3",
5+
"version": "0.3.4",
66
"publisher": "vsciot-vscode",
77
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
88
"preview": true,
@@ -93,6 +93,10 @@
9393
"light": "images/ArduinoUpload_16.svg"
9494
}
9595
},
96+
{
97+
"command": "arduino.cliUpload",
98+
"title": "Arduino CLI: Upload"
99+
},
96100
{
97101
"command": "arduino.uploadUsingProgrammer",
98102
"title": "Arduino: Upload Using Programmer"
@@ -101,6 +105,10 @@
101105
"command": "arduino.rebuildIntelliSenseConfig",
102106
"title": "Arduino: Rebuild IntelliSense Configuration"
103107
},
108+
{
109+
"command": "arduino.cliUploadUsingProgrammer",
110+
"title": "Arduino CLI: Upload Using Programmer"
111+
},
104112
{
105113
"command": "arduino.selectProgrammer",
106114
"title": "Arduino: Select Programmer"
@@ -451,6 +459,11 @@
451459
"type": "object",
452460
"title": "Arduino configuration",
453461
"properties": {
462+
"arduino.useArduinoCli": {
463+
"type": "boolean",
464+
"default": false,
465+
"markdownDescription": "Use Arduino CLI installed instead of Arduino IDE. `#arduino.path#` must be set, as there is no default path for 'arduino-cli'. (Requires a restart after change)"
466+
},
454467
"arduino.path": {
455468
"type": "string",
456469
"default": "",

0 commit comments

Comments
 (0)