----------------------------------------------------------------------------- Start the controller performing one of its network management functions -----------------------------------------------------------------------------
| 4057 | // Start the controller performing one of its network management functions |
| 4058 | //----------------------------------------------------------------------------- |
| 4059 | bool 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> |
no outgoing calls
no test coverage detected