An easy to use Python API for programming and accessing Renesas's GreenPak SPLD devices.
Project description
GreenPak Driver
A Python package to access and program Renesas GreenPak SPLD's.
This Python package provides a simple to use API to read/write/program Renseas GreenPak PLDs over a USB to I2C link.
As of December 2023, the package supports the following USB to I2C interfaces and new ones can be easily added based on the examples in drivers.py:
- I2C Driver (two variants, mini and full.)
- I2C Adapter (four variants, including a bare Raspberry Pico.)
Sample usage using an I2C Adapter:
import greenpak as gp
print("Connecting.")
i2c_driver = gp.drivers.GreenPakI2cAdapter(port = "COM17")
gp_driver = gp.GreenpakDriver(i2c_driver, device="SLG46826", control_code=0b0001)
print("Loading configuration.")
data = gp.read_bits_file("test_data/slg46826_blinky_fast.txt")
gp.hex_dump(data)
print("Programming the NVM.")
gp_driver.program_nvm_pages(0, data)
print("Resetting the device.")
gp_driver.reset_device()
For full documentation see https://greenpak.readthedocs.io/en/latest
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
greenpak-0.0.24.tar.gz
(12.1 kB
view hashes)
Built Distribution
greenpak-0.0.24-py3-none-any.whl
(14.7 kB
view hashes)
Close
Hashes for greenpak-0.0.24-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 776c793f3e808ef61784419af2893f38317b5cbe13c0b0b58f8a9b106fe5b07e |
|
MD5 | f1f3527d1a77a87809542ecaa7b15b63 |
|
BLAKE2b-256 | f3b4ce309a08b684f42c4424c5b19f6460fb0c8c31d0688b1bdcf88304123616 |