CHENGQI YANG / MGC3130

Dependencies:   BufferedArray

Dependents:   NucleoMGC3130 i2c_master

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GestICMsg.cpp Source File

GestICMsg.cpp

00001 #include "GestICMsg.h"
00002 
00003 GestICMsg::GestICMsg(): BufferedArray(20,20)
00004 {}
00005 
00006 int GestICMsg::getMsgSize()
00007 {
00008     return data[0];
00009 }
00010 
00011 int GestICMsg::getFlags()
00012 {
00013     return data[1];
00014 }
00015 
00016 int GestICMsg::getSeq()
00017 {
00018     return data[2];
00019 }
00020 
00021 int GestICMsg::getID()
00022 {
00023     return data[3];
00024 }