----------------------------------------------------------------------------- Get the maximum baud rate of a node's communications -----------------------------------------------------------------------------
| 4783 | // Get the maximum baud rate of a node's communications |
| 4784 | //----------------------------------------------------------------------------- |
| 4785 | uint32 Driver::GetNodeMaxBaudRate |
| 4786 | ( |
| 4787 | uint8 const _nodeId |
| 4788 | ) |
| 4789 | { |
| 4790 | uint32 baud = 0; |
| 4791 | LockGuard LG(m_nodeMutex); |
| 4792 | if( Node* node = GetNode( _nodeId ) ) |
| 4793 | { |
| 4794 | baud = node->GetMaxBaudRate(); |
| 4795 | } |
| 4796 | |
| 4797 | return baud; |
| 4798 | } |
| 4799 | |
| 4800 | //----------------------------------------------------------------------------- |
| 4801 | // <Driver::GetNodeVersion> |
nothing calls this directly
no test coverage detected