Changeset 19017
- Timestamp:
- 05/24/18 22:11:04 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/ConnectionUSB.cc
r18996 r19017 294 294 try 295 295 { 296 Debug("Setting Baud Rate"); 296 297 set_option(baud_rate(_baud_rate)); 298 299 Debug("Setting Character Size"); 297 300 set_option(character_size(_character_size)); 301 302 Debug("Setting Parity"); 298 303 set_option(parity(_parity)); 304 305 Debug("Setting Sop Bits"); 299 306 set_option(stop_bits(_stop_bits)); 307 308 Debug("Setting Flow control"); 300 309 set_option(flow_control(_flow_control)); 301 /*302 Info("Setting Baud Rate");303 set_option(fBaudRate);304 Info("Setting Character Size");305 set_option(fCharacterSize);306 Info("Setting Parity");307 set_option(fParity);308 Info("Setting Sop Bits");309 set_option(fStopBits);310 Info("Setting Flow control");311 set_option(fFlowControl);312 */313 310 } 314 311 catch (const bs::system_error &erc)
Note:
See TracChangeset
for help on using the changeset viewer.