----------------------------------------------------------------------------- Request the value of a configuration parameter from the device -----------------------------------------------------------------------------
| 2268 | // Request the value of a configuration parameter from the device |
| 2269 | //----------------------------------------------------------------------------- |
| 2270 | void Node::RequestConfigParam |
| 2271 | ( |
| 2272 | uint8 const _param |
| 2273 | ) |
| 2274 | { |
| 2275 | if( Configuration* cc = static_cast<Configuration*>( GetCommandClass( Configuration::StaticGetCommandClassId() ) ) ) |
| 2276 | { |
| 2277 | cc->RequestValue( 0, _param, 1, Driver::MsgQueue_Send ); |
| 2278 | } |
| 2279 | } |
| 2280 | |
| 2281 | //----------------------------------------------------------------------------- |
| 2282 | // <Node::RequestAllConfigParams> |