You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by hu...@apache.org on 2023/11/12 16:40:24 UTC

(plc4x) branch feat/plc4py_code_gen updated (1ee6a578f9 -> 8e4ed857d4)

This is an automated email from the ASF dual-hosted git repository.

hutcheb pushed a change to branch feat/plc4py_code_gen
in repository https://gitbox.apache.org/repos/asf/plc4x.git


    from 1ee6a578f9 chore(plc4py): Fixed Enums and working on DataIO template
     add 8e4ed857d4 chore(plc4py): Update the PlcValues and Data IO template

No new revisions were added by this update.

Summary of changes:
 .../python/PythonLanguageTemplateHelper.java       |  32 +++-
 .../templates/python/data-io-template.python.ftlh  |  45 +++--
 sandbox/plc4py/plc4py/api/messages/PlcResponse.py  |   6 +-
 sandbox/plc4py/plc4py/api/value/PlcValue.py        |  18 +-
 .../plc4py/plc4py/drivers/mock/MockConnection.py   |   5 +-
 .../plc4py/plc4py/drivers/modbus/ModbusDevice.py   |  19 ++-
 .../plc4py/protocols/modbus/readwrite/DataItem.py  | 122 ++++++++------
 .../protocols/simulated/readwrite/DataItem.py      | 129 ++++++++-------
 .../plc4py/plc4py/spi/generation/WriteBuffer.py    |   7 +-
 sandbox/plc4py/plc4py/spi/values/PlcBOOL.py        |  27 ---
 sandbox/plc4py/plc4py/spi/values/PlcINT.py         |  27 ---
 sandbox/plc4py/plc4py/spi/values/PlcValues.py      | 182 +++++++++++++++++++++
 .../tests/unit/plc4py/api/test_PlcRequest.py       |   6 +-
 .../drivers/modbus/test_modbus_connection.py       |   7 +-
 14 files changed, 425 insertions(+), 207 deletions(-)
 delete mode 100644 sandbox/plc4py/plc4py/spi/values/PlcBOOL.py
 delete mode 100644 sandbox/plc4py/plc4py/spi/values/PlcINT.py
 create mode 100644 sandbox/plc4py/plc4py/spi/values/PlcValues.py