----------------------------------------------------------------------------- Send a NIF frame from the Controller to the Node -----------------------------------------------------------------------------
| 4465 | // Send a NIF frame from the Controller to the Node |
| 4466 | //----------------------------------------------------------------------------- |
| 4467 | bool Manager::DeleteButton |
| 4468 | ( |
| 4469 | uint32 const _homeId, |
| 4470 | uint8 const _nodeId, |
| 4471 | uint8 const _buttonid |
| 4472 | ) |
| 4473 | { |
| 4474 | if (Driver *driver = GetDriver( _homeId ) ) { |
| 4475 | LockGuard LG(driver->m_nodeMutex); |
| 4476 | return driver->BeginControllerCommand( |
| 4477 | Driver::ControllerCommand_DeleteButton, |
| 4478 | NULL, NULL, true, _nodeId, _buttonid); |
| 4479 | } |
| 4480 | return false; |
| 4481 | } |
| 4482 | |
| 4483 | //----------------------------------------------------------------------------- |
| 4484 | // <Manager::SendRawData> |
nothing calls this directly
no test coverage detected