----------------------------------------------------------------------------- Handle a message from the Z-Wave network -----------------------------------------------------------------------------
| 47 | // Handle a message from the Z-Wave network |
| 48 | //----------------------------------------------------------------------------- |
| 49 | bool 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 |
nothing calls this directly
no outgoing calls
no test coverage detected