Fixed an issue when calling built-in pio device monitor filter

This commit is contained in:
Ivan Kravets
2022-05-16 14:46:37 +03:00
parent 0fb4b1e109
commit 40422eac2e
2 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,11 @@ PlatformIO Core 6
**A professional collaborative platform for declarative, safety-critical, and test-driven embedded development.**
6.0.1 (2022-05-??)
~~~~~~~~~~~~~~~~~~
* Fixed an issue when calling built-in `pio device monitor <https://docs.platformio.org/en/latest/core/userguide/device/cmd_monitor.html#filters>`__ filter
6.0.0 (2022-05-16)
~~~~~~~~~~~~~~~~~~

View File

@ -71,7 +71,7 @@ def register_filters(platform=None, options=None):
)
# default filters
load_monitor_filters(
os.path.join(fs.get_source_dir(), "commands", "device", "filters"),
os.path.join(fs.get_source_dir(), "device", "filters"),
options=options,
)