An unofficial Python flash programmer for Texas Instruments Launchpads.
Please see the readthedocs page for the most up to date documentation.
TIFlash uses Texas Instruments’s Code Composer Studio scripting interface (Debug Server Scripting) to flash devices. It’s essentially a python/command line interface for CCS. This is helpful when just needing to perform simple actions like flashing, erasing or resetting a device without having to spin up an entire CCS GUI session.
Follow the steps below to get TIFlash set up on your computer.
You will need to have Code Composer Studio installed along with drivers for any devices you plan to use (offered during installation of CCS or available in CCS’s Resource Explorer).
You’ll also need Python installed on your computer, either 2.7 or 3.6+ (preferred) will work.
Install TIFlash via PyPi (recommended)
pip install tiflash
Install via git repo (used for development)
git install https://github.com/webbcam/tiflash.git cd tiflash pip install -r requirements.txt pip install -e .
TIFlash can be used via Python directly or using the commandline.
Installing TIFlash via pip will install the commandline application.
From a command prompt:
tiflash -h # display help menu tiflash -s L4000CE flash /path/to/image.hex -o ResetOnRestart True
For more commandline examples see the CLI docs
TIFlash can also be used directly in your Python scripts.
import tiflash tiflash.flash(serno='L4000CE', image='/path/to/image.hex', options={'ResetOnRestart':True})
For more python examples see the API docs
Please read CONTRIBUTING.rst for details on the process for submitting pull requests to us.
For the versions available, see the tags on this repository.
- Cameron Webb - Initial work - webbcam
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
Please see the Disclaimer.