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

[plc4x] branch develop updated: fix(protocols/c-bus): associate type with Reply type

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new edda7d2  fix(protocols/c-bus): associate type with Reply type
edda7d2 is described below

commit edda7d20a07c2c192cf8d862769514bf7f673304
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Tue Mar 1 16:53:32 2022 +0100

    fix(protocols/c-bus): associate type with Reply type
---
 protocols/c-bus/src/main/resources/protocols/cbus/c-bus.mspec | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/protocols/c-bus/src/main/resources/protocols/cbus/c-bus.mspec b/protocols/c-bus/src/main/resources/protocols/cbus/c-bus.mspec
index 7f6f481..d20360d 100644
--- a/protocols/c-bus/src/main/resources/protocols/cbus/c-bus.mspec
+++ b/protocols/c-bus/src/main/resources/protocols/cbus/c-bus.mspec
@@ -427,16 +427,22 @@
     [peek   byte magicByte]
     [typeSwitch magicByte
         ['0x0' CALReplyReply
+            [simple CALReply isA]
         ]
         ['0x0' MonitoredSALReply
+            [simple MonitoredSAL isA]
         ]
         ['0x0' ConfirmationReply
+            [simple Confirmation isA]
         ]
         ['0x0' PowerUpReply
+            [simple PowerUp isA]
         ]
         ['0x0' ParameterChangeReply
+            [simple ParameterChange isA]
         ]
         ['0x0' ExclamationMarkReply
+            [simple ExclamationMark isA]
         ]
     ]
 ]