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_ADAFRUIT_PUREIO
bool "python-adafruit-pureio"
help
Pure python (i.e. no native extensions) access to Linux IO
including I2C and SPI. Drop in replacement for smbus and
spidev modules.
https://github.com/adafruit/Adafruit_Python_PureIO

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/Adafruit-PureIO/json
md5 f7d2f93db567333321b4097b4858bea5 Adafruit_PureIO-1.1.9.tar.gz
sha256 2caf22fb07c7f771d83267f331a76cde314723f884a9570ea6f768730c87a879 Adafruit_PureIO-1.1.9.tar.gz
# Locally computed sha256 checksums
sha256 aa5e54136c840ed2e333f65d43fecbc6c0e8fff62ebaece4ff281cd2a6672088 LICENSE

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-adafruit-pureio
#
################################################################################
PYTHON_ADAFRUIT_PUREIO_VERSION = 1.1.9
PYTHON_ADAFRUIT_PUREIO_SOURCE = Adafruit_PureIO-$(PYTHON_ADAFRUIT_PUREIO_VERSION).tar.gz
PYTHON_ADAFRUIT_PUREIO_SITE = https://files.pythonhosted.org/packages/df/ca/9162d4648669d12af16d5a66d808bdef6967eb684cbed9b1a3ebc19b361a
PYTHON_ADAFRUIT_PUREIO_SETUP_TYPE = setuptools
PYTHON_ADAFRUIT_PUREIO_LICENSE = MIT
PYTHON_ADAFRUIT_PUREIO_LICENSE_FILES = LICENSE
$(eval $(python-package))