Overview
Comment: | lt8900_spi v2.2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 2.2 |
Files: | files | file ages | folders |
SHA3-256: |
ef0aed03087390b328db2fc81ae08133 |
User & Date: | rkeene on 2020-04-30 03:29:48 |
Other Links: | manifest | tags |
Context
2020-04-30
| ||
17:50 | Added a software tx queue and support for setting the syncword as part of the transmit call check-in: fc5d84e9e1 user: rkeene tags: trunk | |
03:29 | lt8900_spi v2.2 check-in: ef0aed0308 user: rkeene tags: 2.2, trunk | |
2020-04-29
| ||
22:53 | Also reset radio if there is 0-sized packets check-in: 59690c8273 user: rkeene tags: trunk | |
Changes
Modified setup.py from [cdb53755a0] to [dcec25f662].
1 2 3 4 5 6 7 | import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="lt8900_spi", # Replace with your own username | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="lt8900_spi", # Replace with your own username version="2.2", author="Roy Keene", author_email="pypi@rkeene.org", description="Python interface to an LT8900 connected via SPI", long_description=long_description, long_description_content_type="text/markdown", url="https://chiselapp.com/user/rkeene/repository/lt8900_spi/", packages=["lt8900_spi"], |
︙ | ︙ |