Skip to content

Commit 0458417

Browse files
committed
v1.6.10
1 parent a6cf031 commit 0458417

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
ChangeLog
22
=========
33

4+
# V1.6.10
5+
* [Issue#793 Container install broke from v1.6.7 to v1.6.9](https://github.com/Marus/cortex-debug/issues/793). It appears that VSCode does not install extensions with dependencies fully. Ie, if ext. `a` depends on `b` which depends on `c`, `c` is not installed so extension `a` fails to load properly. While we confirm, report this issue to VSCode folks, a (ugly) workaround has been implemented.
6+
47
# V1.6.9
58
* The RTOS view has been moved to another extension so it can work with other debuggers. https://github.com/mcu-debug/rtos-views It will be automatically installed for you with this update. Note that the RTOS view related settings and commands now belong to the new extension (search for `RTOS` in Command Palette)
69
* This release will also install the new memory view extension from https://github.com/mcu-debug/memview. The old memory view is still available (search for `legacy` in Command Palette)

debug_attributes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ Also using IntelliSense while editing launch.json in VSCode can be quite helpful
5151
| symbolFiles | Common | List of ELF files to load symbols from instead of the executable file. Program information is ignored (see `loadFiles`). Can be an empty list to specify none. If this property does not exist, then the executable is used for symbols
5252
| targetId | Common | On BMP this is the ID number that should be passed to the attach command (defaults to 1); for PyOCD this is the target identifier (only needed for custom hardware)
5353
| targetProcessor | Common | The processor you want to debug. Zero based integer index. Must be less than 'numberOfProcessors'
54-
| toolchainPrefix | Common | This setting can be used to override the toolchainPrefix user setting for a particular launch configuration.
54+
| toolchainPrefix | Common | This setting can be used to override the toolchainPrefix user setting for a particular launch configuration. Default = "arm-none-eabi"
5555
| BMPGDBSerialPort | BMP Specific | The serial port for the Black Magic Probe GDB Server. On Windows this will be "COM<num>", on Linux this will be something similar to /dev/ttyACM0, on OS X something like /dev/cu.usbmodemE2C0C4C6 (do not use tty versions on OS X)
5656
| powerOverBMP | BMP Specific | Power up the board over Black Magic Probe. "powerOverBMP" : "enable" or "powerOverBMP" : "disable". If not set it will use the last power state.
57-
| gdbTarget | External | For externally controlled GDB Servers you must specify the GDB target to connect to. This can either be a "hostname:port" combination or path to a serial port
57+
| gdbTarget | External | For externally (servertype = "external") controlled GDB Servers you must specify the GDB target to connect to. This can either be a "hostname:port" combination or path to a serial port
5858
| ipAddress | J-Link Specific | IP Address for networked J-Link Adapter
5959
| jlinkscript | J-Link Specific | J-Link script file - optional input file for customizing J-Link actions.
6060
| serialNumber | J-Link Specific | J-Link or ST-LINK Serial Number - only needed if multiple J-Links/ST-LINKs are connected to the computer

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.6.10-pre1",
2+
"version": "1.6.10",
33
"preview": false,
44
"activationEvents": [
55
"onDebugResolve:cortex-debug",
@@ -683,7 +683,7 @@
683683
},
684684
"toolchainPrefix": {
685685
"default": null,
686-
"description": "This setting can be used to override the toolchainPrefix user setting for a particular launch configuration.",
686+
"description": "This setting can be used to override the toolchainPrefix user setting for a particular launch configuration. Default = \"arm-none-eabi\"",
687687
"type": "string"
688688
},
689689
"serverpath": {
@@ -767,7 +767,7 @@
767767
},
768768
"gdbTarget": {
769769
"default": null,
770-
"description": "For externally controlled GDB Servers you must specify the GDB target to connect to. This can either be a \"hostname:port\" combination or path to a serial port",
770+
"description": "For externally (servertype = \"external\") controlled GDB Servers you must specify the GDB target to connect to. This can either be a \"hostname:port\" combination or path to a serial port",
771771
"type": "string"
772772
},
773773
"breakAfterReset": {
@@ -1763,7 +1763,7 @@
17631763
},
17641764
"toolchainPrefix": {
17651765
"default": null,
1766-
"description": "This setting can be used to override the toolchainPrefix user setting for a particular launch configuration.",
1766+
"description": "This setting can be used to override the toolchainPrefix user setting for a particular launch configuration. Default = \"arm-none-eabi\"",
17671767
"type": "string"
17681768
},
17691769
"serverpath": {
@@ -1853,7 +1853,7 @@
18531853
},
18541854
"gdbTarget": {
18551855
"default": null,
1856-
"description": "For externally controlled GDB Servers you must specify the GDB target to connect to. This can either be a \"hostname:port\" combination or path to a serial port",
1856+
"description": "For externally (servertype = \"external\") controlled GDB Servers you must specify the GDB target to connect to. This can either be a \"hostname:port\" combination or path to a serial port",
18571857
"type": "string"
18581858
},
18591859
"runToMain": {

0 commit comments

Comments
 (0)