mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========== - Better error message, when pyserial is missing. - Slave=0 will return first response, used to identify device address. - Feature/add simulator api skeleton - Correct max. read size for registers. - Ruff complains, due to upgrade. - Properly process 'slaves' argument - Update repl requirement to >= 2.0.4 - Fix aiohttp < 3.9.0 - Simplify framer test setup - Clean up ModbusControlBlock - example docstrings diag_message -> pdu.diag_message - Explain version schema - Add more testing for WriteRegisters. - Proof for issue 2273. - Update simulator tests. - Correct README - Rename branch wait3.8.0 to wait_next_API Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
960 B
BlitzBasic
32 lines
960 B
BlitzBasic
SUMMARY = "A fully featured modbus protocol stack in python"
|
|
HOMEPAGE = "https://github.com/riptideio/pymodbus/"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=eba8057aa82c058d2042b4b0a0e9cc63"
|
|
|
|
SRC_URI[sha256sum] = "6cc63a14c8cca83f5b6d9dae3319565061bd49503ee7282df681201c16357eef"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[repl] = ",,,python3-aiohttp python3-click python3-prompt-toolkit python3-pygments python3-pyserial-asyncio"
|
|
PACKAGECONFIG[asyncio] = ",,,python3-pyserial-asyncio"
|
|
PACKAGECONFIG[tornado] = ",,,python3-tornado"
|
|
PACKAGECONFIG[twisted] = ",,,python3-twisted-conch"
|
|
PACKAGECONFIG[redis] = ",,,python3-redis"
|
|
PACKAGECONFIG[sql] = ",,,python3-sqlalchemy"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-asyncio \
|
|
python3-core \
|
|
python3-io \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-math \
|
|
python3-netserver \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-pyserial \
|
|
python3-six \
|
|
"
|