Skip to content

Commit

Permalink
Do not fetch registers data when Peripherals or Registers views are c…
Browse files Browse the repository at this point in the history
…ollapsed; Fixed issue with incorrect breakpoint hit in multi-thread environment (RTOS)
  • Loading branch information
ivankravets committed Jul 4, 2018
1 parent bd50264 commit ad572f2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 0.17.1 (2018-07-??)

* Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html):
- Do not fetch registers data when Peripherals or Registers views are collapsed
- Fixed issue with incorrect breakpoint hit in multi-thread environment (RTOS)

## 0.17.0 (2018-06-29)

* Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html):
Expand Down
18 changes: 7 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,12 @@
"view/title": [
{
"command": "platformio-debug.examineMemory",
"when": "view == platformio-debug.memory",
"when": "debugType == platformio-debug && view == platformio-debug.memory",
"group": "navigation"
},
{
"command": "platformio-debug.memory.clearHistory",
"when": "view == platformio-debug.memory",
"when": "debugType == platformio-debug && view == platformio-debug.memory",
"group": "navigation"
}
]
Expand All @@ -396,23 +396,19 @@
"debug": [
{
"id": "platformio-debug.peripherals",
"name": "Peripherals",
"when": "debugType == platformio-debug && peripheralsEnabled"
"name": "Peripherals"
},
{
"id": "platformio-debug.registers",
"name": "Registers",
"when": "debugType == platformio-debug"
"name": "Registers"
},
{
"id": "platformio-debug.memory",
"name": "Memory",
"when": "debugType == platformio-debug"
"name": "Memory"
},
{
"id": "platformio-debug.disassembly",
"name": "Disassembly",
"when": "debugType == platformio-debug"
"name": "Disassembly"
}
]
},
Expand Down Expand Up @@ -549,7 +545,7 @@
"fs-plus": "^3.0.0",
"ini": "^1.3.4",
"platformio-node-helpers": "^2.0.0",
"platformio-vscode-debug": "^1.1.0",
"platformio-vscode-debug": "^1.1.1",
"querystringify": "*"
},
"extensionDependencies": [
Expand Down

0 comments on commit ad572f2

Please sign in to comment.