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 2020/11/17 17:09:55 UTC

[plc4x] branch feature/plc4go updated (fe44231 -> 338ba32)

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

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


    from fe44231  - Updated the ADS mspec to use the IEC type names for DataIo - Added definitions for processing the temporal values in ADS DataIo - Fixed problems in the ADS driver causing issues (Replaced stream and lambda expression with for loop) - Added implementation for little-endian reading of BigInteger in ReadBuffer - Added implementation for readDouble in ReadBuffer - Fixed the implementation for readFloat in ReadBuffer - Added some null-checks in DefaultPlcReadResponse - Work [...]
     add 27192b7  [Broken State] Adding support for PlcValue datatypes for simulated devic
     add 7627f38  Fixed a couple of things
     add 3c79e6c  Merge branch 'feature/plc4go' into bug/simulated_device_data_types
     add ddc5776  [Broken] Fix after Merge Plc4go
     add 079259f  Add back support for existing Java class types.
     new 338ba32  Merge pull request #204 from apache/bug/simulated_device_data_types

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../language/java/JavaLanguageTemplateHelper.java  |   4 +-
 plc4j/drivers/simulated/pom.xml                    |  52 ++++++-
 .../java/simulated/connection/SimulatedDevice.java |  67 ++++-----
 .../plc4x/java/simulated/field/SimulatedField.java |  54 +++++--
 .../simulated/field/SimulatedFieldHandler.java     |  10 ++
 .../plc4x/java/simulated/utils/StaticHelper.java   |  66 +++++++++
 .../simulated/connection/SimulatedDeviceTest.java  |   4 +-
 .../simulated/field/SimularedFieldHandlerTest.java |  10 +-
 .../java/simulated/field/SimulatedFieldTest.java   |  17 ++-
 .../apache-calcite/src/test/resources/example.yml  |   2 +-
 .../plc4x/java/spi/generation/ReadBuffer.java      |   1 +
 protocols/pom.xml                                  |   3 +-
 protocols/{knxnetip => simulated}/pom.xml          |   8 +-
 .../protocol/simulated/SimulatedProtocol.java}     |   8 +-
 ...e.plc4x.plugins.codegenerator.protocol.Protocol |   2 +-
 .../resources/protocols/simulated/simulated.mspec  | 164 +++++++++++++++++++++
 src/site/asciidoc/users/protocols/simulated.adoc   | 120 +++++++++++++++
 17 files changed, 512 insertions(+), 80 deletions(-)
 create mode 100644 plc4j/drivers/simulated/src/main/java/org/apache/plc4x/java/simulated/utils/StaticHelper.java
 copy protocols/{knxnetip => simulated}/pom.xml (89%)
 copy protocols/{s7/src/main/java/org/apache/plc4x/protocol/s7/S7Protocol.java => simulated/src/main/java/org/apache/plc4x/protocol/simulated/SimulatedProtocol.java} (86%)
 copy protocols/{knxnetip => simulated}/src/main/resources/META-INF/services/org.apache.plc4x.plugins.codegenerator.protocol.Protocol (93%)
 create mode 100644 protocols/simulated/src/main/resources/protocols/simulated/simulated.mspec


[plc4x] 01/01: Merge pull request #204 from apache/bug/simulated_device_data_types

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hutcheb pushed a commit to branch feature/plc4go
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 338ba322fd2e2f678fa3bf1d1baa56b070535933
Merge: fe44231 079259f
Author: hutcheb <be...@gmail.com>
AuthorDate: Tue Nov 17 12:09:46 2020 -0500

    Merge pull request #204 from apache/bug/simulated_device_data_types
    
    Bug/simulated device data types

 .../language/java/JavaLanguageTemplateHelper.java  |   4 +-
 plc4j/drivers/simulated/pom.xml                    |  52 ++++++-
 .../java/simulated/connection/SimulatedDevice.java |  67 ++++-----
 .../plc4x/java/simulated/field/SimulatedField.java |  54 +++++--
 .../simulated/field/SimulatedFieldHandler.java     |  10 ++
 .../plc4x/java/simulated/utils/StaticHelper.java   |  66 +++++++++
 .../simulated/connection/SimulatedDeviceTest.java  |   4 +-
 .../simulated/field/SimularedFieldHandlerTest.java |  10 +-
 .../java/simulated/field/SimulatedFieldTest.java   |  17 ++-
 .../apache-calcite/src/test/resources/example.yml  |   2 +-
 .../plc4x/java/spi/generation/ReadBuffer.java      |   1 +
 protocols/pom.xml                                  |   3 +-
 protocols/simulated/pom.xml                        |  43 ++++++
 .../protocol/simulated/SimulatedProtocol.java      |  46 ++++++
 ...e.plc4x.plugins.codegenerator.protocol.Protocol |  21 +--
 .../resources/protocols/simulated/simulated.mspec  | 164 +++++++++++++++++++++
 src/site/asciidoc/users/protocols/simulated.adoc   | 120 +++++++++++++++
 17 files changed, 596 insertions(+), 88 deletions(-)