----------------------------------------------------------------------------- Get the node role as reported in the Z-Wave+ Info report. -----------------------------------------------------------------------------
| 1394 | // Get the node role as reported in the Z-Wave+ Info report. |
| 1395 | //----------------------------------------------------------------------------- |
| 1396 | uint8 Manager::GetNodeRole |
| 1397 | ( |
| 1398 | uint32 const _homeId, |
| 1399 | uint8 const _nodeId |
| 1400 | ) |
| 1401 | { |
| 1402 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1403 | { |
| 1404 | return driver->GetNodeRole( _nodeId ); |
| 1405 | } |
| 1406 | |
| 1407 | return 0x00; // unknown |
| 1408 | } |
| 1409 | |
| 1410 | //----------------------------------------------------------------------------- |
| 1411 | // <Manager::GetNodeRole> |
nothing calls this directly
no outgoing calls
no test coverage detected