You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2022/03/03 14:56:14 UTC

[plc4x] branch develop updated (9dd8a07 -> e6f462f)

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

cdutz pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git.


    from 9dd8a07  feat(plc4go/c-bus): added IdentifyReplyCommand
     add befcbd8  feat(protocol/c-bus): Implemented the ApplicationId part
     add e6f462f  feat(protocol/c-bus): Continued implementing the driver core

No new revisions were added by this update.

Summary of changes:
 plc4j/drivers/c-bus/pom.xml                        |   8 +-
 .../org/apache/plc4x/java/cbus/CBusDriver.java     |  60 ++-
 .../cbus/configuration/CBusConfiguration.java}     |  28 +-
 .../java/cbus/context/CBusDriverContext.java}      |  15 +-
 .../java/cbus/protocol/CBusProtocolLogic.java      |  74 ++++
 .../apache/plc4x/java/cbus/RandomPackagesTest.java |  16 +
 .../src/main/resources/protocols/cbus/c-bus.mspec  | 425 +++++++++++++++++----
 7 files changed, 527 insertions(+), 99 deletions(-)
 copy plc4j/drivers/{ab-eth/src/main/java/org/apache/plc4x/java/abeth/configuration/AbEthConfiguration.java => c-bus/src/main/java/org/apache/plc4x/java/cbus/configuration/CBusConfiguration.java} (63%)
 copy plc4j/drivers/{plc4x/src/main/java/org/apache/plc4x/java/plc4x/context/Plc4xDriverContext.java => c-bus/src/main/java/org/apache/plc4x/java/cbus/context/CBusDriverContext.java} (71%)
 create mode 100644 plc4j/drivers/c-bus/src/main/java/org/apache/plc4x/java/cbus/protocol/CBusProtocolLogic.java