MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / HandleMsg

Method HandleMsg

cpp/src/command_classes/Proprietary.cpp:49–61  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Handle a message from the Z-Wave network -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

47// Handle a message from the Z-Wave network
48//-----------------------------------------------------------------------------
49bool Proprietary::HandleMsg
50(
51 uint8 const* _data,
52 uint32 const _length,
53 uint32 const _instance // = 1
54)
55{
56 if (ProprietaryCmd_Report == (ProprietaryCmd)_data[0])
57 {
58 return true;
59 }
60 return false;
61}
62

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected