Skip to content

Commit 5761591

Browse files
committed
Draft 1.7.0 Release
1 parent c8810ec commit 5761591

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.7.0]
9+
### Added
10+
- @hkpeprah: Added JTAG APIs:
11+
- `jtag_store_instruction` - To send an instruction to the JTAG device.
12+
- `jtag_store_data` - To send data to the JTAG device (TDO).
13+
- `jtag_get_device_info` - To get information about a JTAG device on the scan chain.
14+
- `jtag_read` / `jtag_read{8,16,32}` - To read data from a JTAG device (from the input buffer / TDI).
15+
- `jtag_sync_bits` / `jtag_sync_bytes` - To force a flush of the output buffer.
16+
17+
### Changed
18+
- @hkpeprah: CPU is not un-conditionally halted when trying to flash the target.
19+
- @mtnpke: Detailed log handler logs now strip extra trailing whitespace.
20+
21+
### Fixed
22+
- @hkpeprah: Fixed a bug where `.flash()` raised a `JLinkEraseException`, now raises a
23+
`JLinkFlashException()` as expected.
24+
- @omrisarig13: Fixed broken links in `README.md`.
25+
826
## [1.6.0]
927
### Added
1028
- @tianxiaoMCU: Added APIs to write to the peripheral register of the connected

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ In the order of appearance in the commit history:
2727
| Ben Brown | @bbrown1867 |
2828
| Karl Sigurdsson | @karl-rainlabs |
2929
| - | @tianxiaoMCU |
30+
| - | @mtnpke |
31+
| Omri Sarig | @omrisarig13 |

pylink/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.6.0'
15+
__version__ = '1.7.0'
1616
__title__ = 'pylink'
1717
__author__ = 'Square Embedded Software Team'
1818
__author_email__ = '[email protected]'

0 commit comments

Comments
 (0)