Changeset 19017 for trunk


Ignore:
Timestamp:
05/24/18 22:11:04 (6 years ago)
Author:
tbretz
Message:
Output the connection settings for debugging purpose as debug.
File:
1 edited

Legend:

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

    r18996 r19017  
    294294    try
    295295    {
     296        Debug("Setting Baud Rate");
    296297        set_option(baud_rate(_baud_rate));
     298
     299        Debug("Setting Character Size");
    297300        set_option(character_size(_character_size));
     301
     302        Debug("Setting Parity");
    298303        set_option(parity(_parity));
     304
     305        Debug("Setting Sop Bits");
    299306        set_option(stop_bits(_stop_bits));
     307
     308        Debug("Setting Flow control");
    300309        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         */
    313310    }
    314311    catch (const bs::system_error &erc)
Note: See TracChangeset for help on using the changeset viewer.