From 0ca908f7b82fe6c8bd1edae90dfd0583f354798b Mon Sep 17 00:00:00 2001 From: "kevin.larke" Date: Thu, 14 May 2020 11:11:53 -0400 Subject: [PATCH] cwEuConDecls.h : Initial commit. --- cwEuConDecls.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 cwEuConDecls.h diff --git a/cwEuConDecls.h b/cwEuConDecls.h new file mode 100644 index 0000000..51dd7be --- /dev/null +++ b/cwEuConDecls.h @@ -0,0 +1,32 @@ +#ifndef cwEuConDecls_H +#define cwEuConDecls_H + +namespace cw +{ + namespace eucon + { + + enum + { + kHs0_a_EuProtoId = 0x0a, // Handshake 0 : Eucon -> Channel + kHs1_b_EuProtoId = 0x0b, // Handshake 1 : Channel -> EuCon + kHs2_c_EuProtoId = 0x0c, // Handshake 2 : Eucon -> Channel + kHs3_d_EuProtoId = 0x0d, // Handshake 3 : Channel -> EuCon + kChMsg_EuProtoId = 0x00, // 8 byte channel message + k0x19_EuProtoId = 0x19, // variable length messages (display bitmaps?) + kChHb_EuProtoId = 0x03, // Heartbeat : Channel -> EuCon + kEuHb_EuProtoId = 0x04 // Heartbeat : Eucon -> Channel + }; + + enum + { + + kFPosnEuconId = 0x0000, + kTouchEuconId = 0x0001, + kMuteEuconId = 0x0200, + kPingEuconId = 0x0800 + }; + } +} + +#endif