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

Method BeginControllerCommand

cpp/src/Manager.cpp:4059–4076  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Start the controller performing one of its network management functions -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4057// Start the controller performing one of its network management functions
4058//-----------------------------------------------------------------------------
4059bool Manager::BeginControllerCommand
4060(
4061 uint32 const _homeId,
4062 Driver::ControllerCommand _command,
4063 Driver::pfnControllerCallback_t _callback, // = NULL
4064 void* _context, // = NULL
4065 bool _highPower, // = false
4066 uint8 _nodeId, // = 0xff
4067 uint8 _arg // = 0
4068)
4069{
4070 if( Driver* driver = GetDriver( _homeId ) )
4071 {
4072 return driver->BeginControllerCommand( _command, _callback, _context, _highPower, _nodeId, _arg );
4073 }
4074
4075 return false;
4076}
4077
4078//-----------------------------------------------------------------------------
4079// <Manager::CancelControllerCommand>

Callers 15

HealNetworkNodeMethod · 0.45
HealNetworkMethod · 0.45
AddNodeMethod · 0.45
RemoveNodeMethod · 0.45
RemoveFailedNodeMethod · 0.45
HasNodeFailedMethod · 0.45
AssignReturnRouteMethod · 0.45
DeleteAllReturnRoutesMethod · 0.45
SendNodeInformationMethod · 0.45
CreateNewPrimaryMethod · 0.45
ReceiveConfigurationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected