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

Changelog: ========= Solve log problem in payload. Fix register type check for size bigger than 3 registers (6 bytes) (#1323) Re-add SQL tests. (#1329) Central logging. (#1324) Skip sqlAlchemy test. (#1325) Solve 1319 (#1320) Update README.rst Correct README link. (#1316) More direct readme links for REPL (#1314) Add classifier for 3.11 (#1312) Update README.rst (#1313) Delete ModbusCommonBlock.png (#1311) Add modbus standard to README. (#1308) fix no auto reconnect after close/connect in TCPclient (#1298) Update examples.rst (#1307) var name clarification (#1304) Bump external libraries. (#1302) Reorganize documentation to make it easier accessible (#1299) Simulator documentation (first version). (#1296) Updated datastore Simulator. (#1255) Update links to pydmodbus-dev (#1291) Change riptideio to pymodbus-dev. (#1292) #1258 Avoid showing unit as a seperate command line argument (#1288) Solve docker cache problem. (#1287) add missing server.start() (#1282) small performance improvement on debug log (#1279) Fix Unix sockets parsing (#1281) client: Allow unix domain socket. (#1274) transfer timeout to protocol object. (#1275) Add ModbusUnixServer / StartAsyncUnixServer. (#1273) Added return in AsyncModbusSerialClient.connect (#1271) add connect() to the very first example (#1270) Solve docker problem. (#1268) Test stop of server task. (#1256) Thanks to: Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
36 lines
1009 B
BlitzBasic
36 lines
1009 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=2c2223d66c7e674b40527b5a4c35bd76"
|
|
DEPENDS += "python3-six-native"
|
|
|
|
SRC_URI[sha256sum] = "714e5d6b7e28c4016a94346e73033aff276b6ce8bd22e470ba4fd8b982e08a98"
|
|
S = "${WORKDIR}/pymodbus-${PV}"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
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 \
|
|
"
|
|
|
|
|