-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support workspace trust and modification settings
VSCode v1.56+ changed how modifications made by the workspace are handled. There is a setting for enabling modificaitons from the workspace, but this is planned to be deprecated in favor of the workspace trust system. Update the readme with images and instructions for enabling both of these features. When workspace trust takes over, the workspace modification setting can be removed and the setup should still work with minimal effort. This should be a cleaner way to overwrite the Path variable for the integrated terminal without having to create a custom terminal profile. A custom terminal profile is an option, but I still would need to enable workspace trust to set it as the default. So the choice has been made to stick with the terminal.integrated.env setting for overwriting the path variable in case users want to create custom profiles, as the environment variables set here should persist across all profiles and terminal sessions.
- Loading branch information
1 parent
a0c2faa
commit 0853654
Showing
5 changed files
with
81 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
{ | ||
"terminal.integrated.env.windows": { | ||
"Path":"${env:Path}${config:MAXIM_PATH}\\Toolchain\\bin;${config:MAXIM_PATH}\\Toolchain\\msys\\1.0\\bin;" | ||
"Path":"${env:Path};${config:MAXIM_PATH}\\Toolchain\\bin;${config:MAXIM_PATH}\\Toolchain\\msys\\1.0\\bin;" | ||
}, | ||
|
||
"MAXIM_PATH":"C:\\Maxim",//<-- This is the root installation directory of the Maxim LP Micros Toolchain. Change this if you used a non-default installation location. | ||
"MAXIM_PATH":"C:\\Maxim", | ||
|
||
"target":"MAX32665",/*<-- Change to the correct target micro. | ||
Options : | ||
MAX3263x | ||
MAX32520 | ||
MAX32600 | ||
MAX32620 | ||
MAX32625 | ||
MAX32650 | ||
MAX32660 | ||
MAX32665-MAX32668 (Set MAX32665 if you are using of these) | ||
*/ | ||
"target":"MAX32665" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
{ | ||
"terminal.integrated.env.windows": { | ||
"Path":"${env:Path}${config:MAXIM_PATH}\\Toolchain\\bin;${config:MAXIM_PATH}\\Toolchain\\msys\\1.0\\bin;" | ||
"Path":"${env:Path};${config:MAXIM_PATH}\\Toolchain\\bin;${config:MAXIM_PATH}\\Toolchain\\msys\\1.0\\bin;" | ||
}, | ||
|
||
"MAXIM_PATH":"C:\\Maxim",//<-- This is the root installation directory of the Maxim LP Micros Toolchain. Change this if you used a non-default installation location. | ||
"MAXIM_PATH":"C:\\Maxim", | ||
|
||
"target":"MAX32665",/*<-- Change to the correct target micro. | ||
Options : | ||
MAX3263x | ||
MAX32520 | ||
MAX32600 | ||
MAX32620 | ||
MAX32625 | ||
MAX32650 | ||
MAX32660 | ||
MAX32665-MAX32668 (Set MAX32665 if you are using of these) | ||
*/ | ||
"target":"MAX32665" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters