Skip to content

Commit a0f8def

Browse files
committed
Resolved a regression issue with Memory Inspection in PIO Home
1 parent c946613 commit a0f8def

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

HISTORY.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ test-driven methodologies, and modern toolchains for unrivaled success.
2020
6.1.11 (2023-??-??)
2121
~~~~~~~~~~~~~~~~~~~
2222

23-
* Resolved a possible issue that may cause generated projects for `PlatformIO IDE for VSCode <https://docs.platformio.org/en/latest/integration/ide/vscode.html>`__ to fail to launch a debug session because of a missing objdump binary when GDB is not part of the toolchain package
23+
* Resolved a possible issue that may cause generated projects for `PlatformIO IDE for VSCode <https://docs.platformio.org/en/latest/integration/ide/vscode.html>`__ to fail to launch a debug session because of a missing "objdump" binary when GDB is not part of the toolchain package
24+
* Resolved a regression issue that resulted in the malfunction of the Memory Inspection feature within `PIO Home <https://docs.platformio.org/en/latest/home/index.html>`__
2425

2526
6.1.10 (2023-08-11)
2627
~~~~~~~~~~~~~~~~~~~

platformio/home/rpc/handlers/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ def config_call(init_kwargs, method, *args):
4242
project_dir = init_kwargs["path"]
4343
init_kwargs["path"] = os.path.join(init_kwargs["path"], "platformio.ini")
4444
elif os.path.isfile(init_kwargs["path"]):
45-
project_dir = get_project_dir()
46-
else:
4745
project_dir = os.path.dirname(init_kwargs["path"])
46+
else:
47+
project_dir = get_project_dir()
4848
with fs.cd(project_dir):
4949
return getattr(ProjectConfig(**init_kwargs), method)(*args)
5050

0 commit comments

Comments
 (0)