----------------------------------------------------------------------------- Get the maximum baud rate of a node's communications -----------------------------------------------------------------------------
| 996 | // Get the maximum baud rate of a node's communications |
| 997 | //----------------------------------------------------------------------------- |
| 998 | uint32 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> |
nothing calls this directly
no outgoing calls
no test coverage detected