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

Improved handling of programmer selection #1118

Merged
merged 19 commits into from
Dec 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log
All notable changes to this project will be documented in this file.

## Version 0.3.4

- Release date: November 22, 2020

### Changed
- Add DTR and RTS signals on serial open and buad rate change
- Improves c_cpp_properties.json autogeneration for intelliSense

## Version 0.3.3

- Release date: October 29, 2020
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-arduino",
"displayName": "Arduino",
"description": "Arduino for Visual Studio Code",
"version": "0.3.3",
"version": "0.3.4",
"publisher": "vsciot-vscode",
"aiKey": "83dd2c27-6594-41d3-85a9-bdb22070eb42",
"preview": true,
Expand Down Expand Up @@ -93,10 +93,18 @@
"light": "images/ArduinoUpload_16.svg"
}
},
{
"command": "arduino.cliUpload",
"title": "Arduino CLI: Upload"
},
{
"command": "arduino.uploadUsingProgrammer",
"title": "Arduino: Upload Using Programmer"
},
{
"command": "arduino.cliUploadUsingProgrammer",
"title": "Arduino CLI: Upload Using Programmer"
},
{
"command": "arduino.selectProgrammer",
"title": "Arduino: Select Programmer"
Expand Down Expand Up @@ -442,6 +450,11 @@
"type": "object",
"title": "Arduino configuration",
"properties": {
"arduino.useArduinoCli": {
"type": "boolean",
"default": false,
"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)"
},
"arduino.path": {
"type": "string",
"default": "",
Expand Down
Loading