Python interface for SEGGER J-Link.
Project description
Python interface for the SEGGER J-Link.
Requirements
GNU ARM Embedded Toolchain (for functional tests)
Installation
Clone the project into a local repository, then navigate to the directory and run:
$ python setup.py install
External Dependencies
In order to use this library, you will need to have installed the SEGGER tools. The tools can be installed from the SEGGER website here. This package is compatible with versions of the SEGGER tool >= 6.0b. Download the software under J-Link Software and Documentation Pack for your specific hardware. PyLink will automatically find the library if you have installed it this way, but for best results, you should use one of the two methods listed below depending on your operating system:
On Mac
# Option A: Copy the library to your libraries directory. $ cp libjlinkarm.dylib /usr/local/lib/ # Option B: Add SEGGER's J-Link directory to your dynamic libraries path. $ export DYLD_LIBRARY_PATH=/Applications/SEGGER/JLink:$DYLD_LIBRARY_PATH
On Windows
Windows searches for DLLs in the following order:
The current directory of execution.
The Windows system directory.
The Windows directory.
You can copy the JLinkARM.dll to any of the directories listed above. Alternatively, add the SEGGER J-Link directory to your %PATH%.
On Linux
# Option A: Copy the library to your libraries directory. $ cp libjlinkarm.so /usr/local/lib/ # Option B: Add SEGGER's J-Link library path to your libraries path. $ export LD_LIBRARY_PATH=/path/to/SEGGER/JLink:$LD_LIBRARY_PATH
Usage
import pylink if __name__ == '__main__': serial_no = '123456789' jlink = pylink.JLink() # Open a connection to your J-Link. jlink.open(serial_no) # Connect to the target device. jlink.connect('device', verbose=True) # Do whatever you want from here on in. jlink.flash(firmware, 0x0) jlink.reset()
Troubleshooting
Should you run into any issues, refer to the documentation, as well as check out our troubleshooting document.
Documentation
Documentation follows the Google Python Style Guide, and uses Sphinx documentation generator with the Napoleon extension to provide Google style Python support. To generate the documentation, these packages will need to be installed (they are included in the provided requirements.txt file). With these packages installed, you can generate the documentation as follows:
$ cd docs $ make html
Developing for PyLink
First install the development requirements by running:
$ pip install -r requirements.txt
After you’ve installed the requirements, decide on the development work you want to do. See the documentation about contributing before you begin your development work.
Testing
To run tests, execute the following:
# Unit tests $ python setup.py test # Functional tests $ python setup.py bddtest
There are two types of tests: functional and unit. Information about both can be found under tests/README.md.
Coverage
Code coverage can be generated as follows:
$ python setup.py coverage $ open htmlcov/index.html
Contributing
Please see the documentation on contributing.
License
Copyright 2017 Square, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
See terms and conditions here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pylink_square-0.11.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pylink_square-0.11.1-py2.py3-none-any.whl
- Upload date:
- Size: 78.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f62d2d2ae802631ccbcaa2d8a81d8e3a4b9d19f4530db91e467f0bc4395ce8e |
|
MD5 | 0f8ced3551c49051264a46708b56f79a |
|
BLAKE2b-256 | 9b555d454c0d4a8edaa69643d8218417f43e38d7b747bc74c098fdb3e9e353e3 |