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

Method GetNodeMaxBaudRate

cpp/src/Manager.cpp:998–1011  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the maximum baud rate of a node's communications -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

996// Get the maximum baud rate of a node's communications
997//-----------------------------------------------------------------------------
998uint32 Manager::GetNodeMaxBaudRate
999(
1000 uint32 const _homeId,
1001 uint8 const _nodeId
1002)
1003{
1004 uint32 baud = 0;
1005 if( Driver* driver = GetDriver( _homeId ) )
1006 {
1007 baud = driver->GetNodeMaxBaudRate( _nodeId );
1008 }
1009
1010 return baud;
1011}
1012
1013//-----------------------------------------------------------------------------
1014// <Manager::GetNodeVersion>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected