----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 54 | // Constructor |
| 55 | //----------------------------------------------------------------------------- |
| 56 | Basic::Basic |
| 57 | ( |
| 58 | uint32 const _homeId, |
| 59 | uint8 const _nodeId |
| 60 | ): |
| 61 | CommandClass( _homeId, _nodeId ) |
| 62 | { |
| 63 | m_com.EnableFlag(COMPAT_FLAG_BASIC_IGNOREREMAPPING, false); |
| 64 | m_com.EnableFlag(COMPAT_FLAG_BASIC_MAPPING, 0); |
| 65 | m_com.EnableFlag(COMPAT_FLAG_BASIC_SETASREPORT, false); |
| 66 | } |
| 67 | |
| 68 | //----------------------------------------------------------------------------- |
| 69 | // <Basic::ReadXML> |
nothing calls this directly
no test coverage detected