You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by ot...@apache.org on 2020/05/12 02:27:25 UTC

[plc4x] 01/01: Merge pull request #153 from apache/feature/c-api-subscriptions

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

otto pushed a commit to branch feature/c-api
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 67892057afd36005d08c675693d32f1c1b922cb1
Merge: 7067860 d1f2d8c
Author: Otto Fowler <ot...@gmail.com>
AuthorDate: Mon May 11 22:26:16 2020 -0400

    Merge pull request #153 from apache/feature/c-api-subscriptions
    
    Feature/c api subscriptions

 sandbox/plc4c/api/include/plc4c/connection.h       |  59 ++--
 sandbox/plc4c/api/include/plc4c/plc4c.h            |   1 +
 sandbox/plc4c/api/include/plc4c/read.h             |  16 +-
 sandbox/plc4c/api/include/plc4c/subscribe.h        | 244 +++++++++++++++
 sandbox/plc4c/api/include/plc4c/types.h            |  32 ++
 sandbox/plc4c/api/include/plc4c/write.h            |  17 +-
 sandbox/plc4c/drivers/modbus/src/driver_modbus.c   |   4 +
 sandbox/plc4c/drivers/s7/src/driver_s7.c           |   4 +
 sandbox/plc4c/examples/CMakeLists.txt              |   1 +
 .../{ => hello-subsciptions}/CMakeLists.txt        |   9 +-
 .../hello-subsciptions/src/hello_subscriptions.c   | 264 +++++++++++++++++
 .../plc4c/examples/hello-world/src/hello_world.c   |  65 ++--
 .../plc4c/spi/include/plc4c/spi/types_private.h    |  67 ++++-
 sandbox/plc4c/spi/src/connection.c                 |  93 +++---
 sandbox/plc4c/spi/src/read.c                       |  16 +
 sandbox/plc4c/spi/src/subscribe.c                  | 330 +++++++++++++++++++++
 sandbox/plc4c/spi/src/write.c                      |  25 ++
 17 files changed, 1119 insertions(+), 128 deletions(-)