cwEuConDecls.h : Initial commit.

This commit is contained in:
kevin.larke 2020-05-14 11:11:53 -04:00
parent 9d9f43cf58
commit 0ca908f7b8

32
cwEuConDecls.h Normal file
View File

@ -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