----------------------------------------------------------------------------- Get the product Id string value with the specified ID Returns a copy of the string rather than a const ref for thread safety -----------------------------------------------------------------------------
| 5066 | // Returns a copy of the string rather than a const ref for thread safety |
| 5067 | //----------------------------------------------------------------------------- |
| 5068 | uint16 Driver::GetNodeProductId |
| 5069 | ( |
| 5070 | uint8 const _nodeId |
| 5071 | ) |
| 5072 | { |
| 5073 | LockGuard LG(m_nodeMutex); |
| 5074 | if( Node* node = GetNode( _nodeId ) ) |
| 5075 | { |
| 5076 | return node->GetProductId(); |
| 5077 | } |
| 5078 | |
| 5079 | return 0; |
| 5080 | } |
| 5081 | |
| 5082 | //----------------------------------------------------------------------------- |
| 5083 | // <Driver::GetNodeDeviceType> |
nothing calls this directly
no test coverage detected