├── .github └── workflows │ ├── pypi.yaml │ └── pythonpackage.yml ├── .gitignore ├── LICENSE ├── README.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── spiflash ├── AUTHORS ├── __init__.py ├── serialflash.py └── tests └── serialflash.py /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyftdi>=0.42,<0.60 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | python-tag = py39 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/setup.py -------------------------------------------------------------------------------- /spiflash/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/spiflash/AUTHORS -------------------------------------------------------------------------------- /spiflash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/spiflash/__init__.py -------------------------------------------------------------------------------- /spiflash/serialflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/spiflash/serialflash.py -------------------------------------------------------------------------------- /spiflash/tests/serialflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eblot/pyspiflash/HEAD/spiflash/tests/serialflash.py --------------------------------------------------------------------------------