1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

[WIP] Working on implementing all sj201-interface dependencies

Leaving it for now as circuitpython needs some thoughs to implement
into the buildroot system.
This commit is contained in:
j1nx
2022-11-05 15:11:23 +01:00
parent d6bc429a5f
commit 0abca6a109
23 changed files with 193 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYFTDI
bool "python-pyftdi"
select BR2_PACKAGE_PYTHON_PYSERIAL # runtime
select BR2_PACKAGE_PYTHON_PYUSB # runtime
help
FTDI device driver (pure Python).
http://github.com/eblot/pyftdi

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pyftdi/json
md5 d8969beb9cd11c123f1249963bf8c0d8 pyftdi-0.54.0.tar.gz
sha256 8df9af22077d17533d2f95b508b1d87959877627ea5dc2369056e90a3b5a232d pyftdi-0.54.0.tar.gz
# Locally computed sha256 checksums
sha256 7342c9ccf3ec21eee9a23c6c74af15fb08ac1b79ddbccb4e063ddeaa6ef7c52d pyftdi/doc/license.rst

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-pyftdi
#
################################################################################
PYTHON_PYFTDI_VERSION = 0.54.0
PYTHON_PYFTDI_SOURCE = pyftdi-$(PYTHON_PYFTDI_VERSION).tar.gz
PYTHON_PYFTDI_SITE = https://files.pythonhosted.org/packages/49/a3/6cd09c0493662b285b2ba87a08b1378a5b13e5cab44eb6a3f740c801c804
PYTHON_PYFTDI_SETUP_TYPE = setuptools
PYTHON_PYFTDI_LICENSE = FIXME: please specify the exact BSD version
PYTHON_PYFTDI_LICENSE_FILES = pyftdi/doc/license.rst
$(eval $(python-package))