----------------------------------------------------------------------------- Request an update of all known dynamic values from the device -----------------------------------------------------------------------------
| 2313 | // Request an update of all known dynamic values from the device |
| 2314 | //----------------------------------------------------------------------------- |
| 2315 | bool Node::RequestDynamicValues |
| 2316 | ( |
| 2317 | ) |
| 2318 | { |
| 2319 | bool res = false; |
| 2320 | for( map<uint8,CommandClass*>::const_iterator it = m_commandClassMap.begin(); it != m_commandClassMap.end(); ++it ) |
| 2321 | { |
| 2322 | if( !it->second->IsAfterMark() ) |
| 2323 | { |
| 2324 | res |= it->second->RequestStateForAllInstances( CommandClass::RequestFlag_Dynamic, Driver::MsgQueue_Send ); |
| 2325 | } |
| 2326 | } |
| 2327 | |
| 2328 | return res; |
| 2329 | } |
| 2330 | //----------------------------------------------------------------------------- |
| 2331 | // <Node::RefreshValuesOnWakeup> |
| 2332 | // Request an update of all known dynamic values from the device |
no test coverage detected