Write TWELITE series firmware (beta)
Project description
tweliter
A Python module for writing TWELITE series firmware. (beta)
Overview
Write firmware over TWELITE R series via USB.
This module is executable in standalone and importable for your scripts.
Installation
The module is available in PyPI.
Use pip
pip install tweliter
or poetry
poetry add tweliter
Linux
Sometimes you need to set permission with udev.
- Create
/etc/udev/rules.d/99-ftdi.rules
# TWELITE R / MONOSTICK (FT232R / 0403:6001)
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="0666"
# TWELITE R2 / R3 (FT230X / 0403:6015)
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", MODE="0666"
- Reload udev rules
sudo udevadm control --reload-rules
sudo udevadm trigger
Usage
Command line
Simply
$ tweliter dir/SomeApp_BLUE.bin
or use verification
$ tweliter --verify dir/SomeApp_BLUE.bin
FTDI chip can be filtered by URL
$ tweliter --url ftdi://:ft-x:/1 dir/SomeApp_BLUE.bin
or product type(s)
$ tweliter --type TWELITE_R2,TWELITE_R3 dir/SomeApp_BLUE.bin
In script
from pathlib import Path
from tweliter import Tweliter
file = Path("firmware/SomeApp_BLUE.bin")
try:
with Tweliter(
type_filter=Tweliter.Type.TWELITE_R2 | Tweliter.Type.TWELITE_R3
) as liter:
# Get serial interface
ser = liter.get_serial_instance()
# Write firmware
liter.write(ser, file, verify=True)
# Show startup message
print(liter.get_startup_message_after(ser, "!INF"))
except IOError as e:
print(f"Couldn't connect {e}")
except RuntimeError as e:
print(f"Failed to write {e}")
LICENSE
MW-OSSLA
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tweliter-0.5.4.tar.gz.
File metadata
- Download URL: tweliter-0.5.4.tar.gz
- Upload date:
- Size: 412.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.9 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ea4b9e558bc95a22b5136e888f533fcd7ac8e6e8298da4eddf83323d8d01881
|
|
| MD5 |
5dae9eeae44013dc1982a36397afefe4
|
|
| BLAKE2b-256 |
4391c269319deb21343bf551391e79aaa6cfe085336a34df26a1a272b948bbc1
|
File details
Details for the file tweliter-0.5.4-py3-none-any.whl.
File metadata
- Download URL: tweliter-0.5.4-py3-none-any.whl
- Upload date:
- Size: 421.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.9 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
149dd11d03e3b26c302fb5c0b068622efb67611e259342647801ec6753608f87
|
|
| MD5 |
4df813bbc0ef12348b15f64d4d532521
|
|
| BLAKE2b-256 |
b97157e60e9767064d62747ecaec3eee8c9ee31e60bf67c6f5fd4cea173e4f16
|