- update to 0.39.0:

* CMSIS-Toolbox Run and Debug Management integration:
  * Set debugger protocol based on information from `*.cbuild-
    run.yml` file
  * Set output file type based on information from `*.cbuild-
    run.yml` file
  * Raise critical error if `*.cbuild-run.yml` file path is
    invalid
  * Show warning when packs required by`*.cbuild-run.yml` file
    are missing
  * Improve TransferError Exception messages to be more
    descriptive
  * Increase number of transfer retries after WAIT response
  * Probe: more reliable probe detection when probe is connected
    after pyOCD is started
- update to 0.38.0:
  * Add CoreSight AP specific CSW handling for AHB-AP, AXI-AP,
    APB-AP
  * Add more debug logging information for `cbuild-run` targets
  * Add support for SW breakpoints when cache is present
  * Cortex-M: configure AP for cacheable access when cache is
    present
  * Flash algorithms: relax memory layout rules and add RAM
    alignment and minimum stack size checking
- update to 0.37.0:
  * With this release, Python 3.7 is no longer supported. The
    minimum Python version is now 3.8.0.
  * CMSIS-Toolbox Run and Debug Management integration:
  * add a `--cbuild-run` option across subcommands
  * select target based on `cbuild-run`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyOCD?expand=0&rev=16
This commit is contained in:
2025-10-10 11:55:36 +00:00
committed by Git OBS Bridge
parent 42dbb98a0b
commit ef39852048
4 changed files with 49 additions and 6 deletions

View File

@@ -1,3 +1,46 @@
-------------------------------------------------------------------
Fri Oct 10 11:54:45 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 0.39.0:
* CMSIS-Toolbox Run and Debug Management integration:
* Set debugger protocol based on information from `*.cbuild-
run.yml` file
* Set output file type based on information from `*.cbuild-
run.yml` file
* Raise critical error if `*.cbuild-run.yml` file path is
invalid
* Show warning when packs required by`*.cbuild-run.yml` file
are missing
* Improve TransferError Exception messages to be more
descriptive
* Increase number of transfer retries after WAIT response
* Probe: more reliable probe detection when probe is connected
after pyOCD is started
- update to 0.38.0:
* Add CoreSight AP specific CSW handling for AHB-AP, AXI-AP,
APB-AP
* Add more debug logging information for `cbuild-run` targets
* Add support for SW breakpoints when cache is present
* Cortex-M: configure AP for cacheable access when cache is
present
* Flash algorithms: relax memory layout rules and add RAM
alignment and minimum stack size checking
- update to 0.37.0:
* With this release, Python 3.7 is no longer supported. The
minimum Python version is now 3.8.0.
* CMSIS-Toolbox Run and Debug Management integration:
* add a `--cbuild-run` option across subcommands
* select target based on `cbuild-run`
* debugger-clock setting from `cbuild-run`
* default memory map
* primary-core and GDB server port selection based on `cbuild-
run`
* GDB server:
* add option for stetting soft breakpoints as hard
* add option for resetting and running the target without
halting
* stricter `qC` command handling (@tlyu)
-------------------------------------------------------------------
Mon Nov 11 21:01:24 UTC 2024 - Dirk Müller <dmueller@suse.com>