----------------------------------------------------------------------------- Close a serial port -----------------------------------------------------------------------------
| 149 | // Close a serial port |
| 150 | //----------------------------------------------------------------------------- |
| 151 | bool SerialController::Close |
| 152 | ( |
| 153 | ) |
| 154 | { |
| 155 | if( !m_bOpen ) |
| 156 | { |
| 157 | return false; |
| 158 | } |
| 159 | |
| 160 | m_pImpl->Close(); |
| 161 | m_bOpen = false; |
| 162 | return true; |
| 163 | } |
| 164 | |
| 165 | //----------------------------------------------------------------------------- |
| 166 | // <SerialController::Write> |
nothing calls this directly
no outgoing calls
no test coverage detected