Skip to content

Commit 3300367

Browse files
committed
Fixed an issue when a debug breakpoint was not allowed for Assembly files
1 parent 3af04bd commit 3300367

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@
44

55
**Requires PlatformIO Core 5.1 or above**
66

7-
* Show active project in the status bar (issue [#2276](https://github.com/platformio/platformio-vscode-ide/issues/2276))
8-
* Automatically switch to the latest project on restart (issue [#2365](https://github.com/platformio/platformio-vscode-ide/issues/2365))
9-
* Automatically restore the latest project environment (issue [#2344](https://github.com/platformio/platformio-vscode-ide/issues/2344))
7+
* Project management:
8+
- Show active project in the status bar (issue [#2276](https://github.com/platformio/platformio-vscode-ide/issues/2276))
9+
- Automatically switch to the latest project on restart (issue [#2365](https://github.com/platformio/platformio-vscode-ide/issues/2365))
10+
- Automatically restore the latest project environment (issue [#2344](https://github.com/platformio/platformio-vscode-ide/issues/2344))
1011
* Allowed passing custom base URL of the Python Package Index using new `customPyPiIndexUrl` setting
1112
* Open ["platformio.ini" configuration file](https://docs.platformio.org/page/projectconf/index.html) from newly added project (if there are no other active editors) (issue [#2263](https://github.com/platformio/platformio-vscode-ide/issues/2263))
1213
* Updated PlatformIO Core installer to v1.0.0 ([release notes](https://github.com/platformio/platformio-core-installer/releases/tag/v1.0.0))
1314
* Added protection for infinite IntelliSense index rebuilding (issue [#2363](https://github.com/platformio/platformio-vscode-ide/issues/2363))
1415
* Added "OpenAPI (Swagger) Editor" extension to the conflicted list (issue [#2324](https://github.com/platformio/platformio-vscode-ide/issues/2324))
1516
* Fixed issues when the "Upload and Monitor" command didn't terminate the running task and didn't reopen a monitor with delay (issue [#2266](https://github.com/platformio/platformio-vscode-ide/issues/2266), issue [#2319](https://github.com/platformio/platformio-vscode-ide/issues/2319))
1617
* Fixed an issue with broken IntelliSense index rebuilding or tasks loading for big projects (issue [#2321](https://github.com/platformio/platformio-vscode-ide/issues/2321))
18+
* Fixed an issue when a debug breakpoint was not allowed for Assembly files
1719

1820
## 2.2.1 (2020-11-12)
1921

package.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -252,16 +252,22 @@
252252
"title": "Set Force Disassembly"
253253
}
254254
],
255+
"breakpoints": [
256+
{
257+
"language": "c"
258+
},
259+
{
260+
"language": "cpp"
261+
},
262+
{
263+
"language": "platformio-debug.asm"
264+
},
265+
{
266+
"language": "platformio-debug.disassembly"
267+
}
268+
],
255269
"debuggers": [
256270
{
257-
"enableBreakpointsFor": {
258-
"languageIds": [
259-
"c",
260-
"cpp",
261-
"platformio-debug.asm",
262-
"platformio-debug.disassembly"
263-
]
264-
},
265271
"configurationAttributes": {
266272
"launch": {
267273
"properties": {

0 commit comments

Comments
 (0)