----------------------------------------------------------------------------- Fetch only the dynamic command class data for a node from the Z-Wave network -----------------------------------------------------------------------------
| 877 | // Fetch only the dynamic command class data for a node from the Z-Wave network |
| 878 | //----------------------------------------------------------------------------- |
| 879 | bool Manager::RequestNodeDynamic |
| 880 | ( |
| 881 | uint32 const _homeId, |
| 882 | uint8 const _nodeId |
| 883 | ) |
| 884 | { |
| 885 | if( Driver* driver = GetDriver( _homeId ) ) |
| 886 | { |
| 887 | LockGuard LG(driver->m_nodeMutex); |
| 888 | // Retreive the Node's dynamic data |
| 889 | Node* node = driver->GetNode( _nodeId ); |
| 890 | if( node ) |
| 891 | { |
| 892 | node->SetQueryStage( Node::QueryStage_Dynamic ); |
| 893 | return true; |
| 894 | } |
| 895 | } |
| 896 | return false; |
| 897 | } |
| 898 | |
| 899 | //----------------------------------------------------------------------------- |
| 900 | // <Manager::IsNodeListeningDevice> |
nothing calls this directly
no test coverage detected