Changeset 18615 for trunk/FACT++


Ignore:
Timestamp:
09/17/16 23:39:20 (8 years ago)
Author:
tbretz
Message:
It seems the new system Ubuntu 16.04 does not support anymore hardware flowcontrol on the USB... or never did but now, we get an error... turned off.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/ConnectionUSB.cc

    r16768 r18615  
    292292    try
    293293    {
     294        Info("Setting Baud Rate");
    294295        set_option(fBaudRate);
     296        Info("Setting Character Size");
    295297        set_option(fCharacterSize);
     298        Info("Setting Parity");
    296299        set_option(fParity);
     300        Info("Setting Sop Bits");
    297301        set_option(fStopBits);
     302        Info("Setting Flow control");
    298303        set_option(fFlowControl);
    299304    }
     
    324329fBaudRate(115200),
    325330fCharacterSize(8), fParity(parity::none), fStopBits(stop_bits::one),
    326 fFlowControl(flow_control::hardware),
     331fFlowControl(flow_control::none),
    327332fInTimeout(ioservice), fOutTimeout(ioservice), fConnectTimeout(ioservice),
    328333fQueueSize(0), fConnectionStatus(kDisconnected)
Note: See TracChangeset for help on using the changeset viewer.