MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / SendNodeInformation

Method SendNodeInformation

cpp/src/Manager.cpp:4317–4330  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Send a NIF frame from the Controller to the Node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4315// Send a NIF frame from the Controller to the Node
4316//-----------------------------------------------------------------------------
4317bool Manager::SendNodeInformation
4318(
4319 uint32 const _homeId,
4320 uint8 const _nodeId
4321)
4322{
4323 if (Driver *driver = GetDriver( _homeId ) ) {
4324 LockGuard LG(driver->m_nodeMutex);
4325 return driver->BeginControllerCommand(
4326 Driver::ControllerCommand_SendNodeInformation,
4327 NULL, NULL, true, _nodeId, 0);
4328 }
4329 return false;
4330}
4331
4332//-----------------------------------------------------------------------------
4333// <Manager::CreateNewPrimary>

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected