Changes between Version 21 and Version 22 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial


Ignore:
Timestamp:
03/12/25 08:16:07 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial

    v21 v22  
    77== Constructors ==
    88
    9 {{{
     9{{{#!c++
    1010CCommSerial(void)
    1111CCommSerial(int port);
     
    2222==== Examples ====
    2323
    24 {{{
     24{{{#!c++
    2525CCommSerial *pSerial = new CCommSerial();
    2626// Creates a CCommSerial instance that does not have a port specified yet. Method SetPort() must be called before calling Open().
    2727}}}
    2828
    29 {{{
     29{{{#!c++
    3030CCommSerial *pSerial = new CCommSerial(2);
    3131// Creates a CCommSerial instance that when opened will connect to COM2
     
    3333
    3434USB to Serial adapter example **825gen2**
    35 {{{
     35{{{#!c++
    3636CCommSerial *pSerial = new CCommSerial(COMM_USB_SERIAL_OFFSET);
    3737// Creates a CCommSerial instance that when opened will connect to first USB to serial adapter /dev/ttyUSB0
     
    3939
    4040USB Printer example **825gen2**
    41 {{{
     41{{{#!c++
    4242CCommSerial *pSerial = new CCommSerial(COMM_USB_PRINTER_OFFSET + 1);
    4343// Creates a CCommSerial instance that when opened will connect to second USB printer /dev/usb/lp1
     
    4646**NOTE** When "new" is used to instantiate an object be sure to "delete" the memory when the use of the object is complete. Otherwise a memory leak will occur and the 825 may run out of memory.
    4747
    48 {{{
     48{{{#!c++
    4949  pSerial->Close();
    5050  delete pSerial;
     
    5454==== Example ====
    5555
    56 {{{
     56{{{#!c++
    5757   if(commTypeSelection == SERIAL)
    5858   {
     
    110110Sets the communications port to be used when Open() is called.
    111111
    112 {{{
     112{{{#!c++
    113113void SetPort(int port);
    114114}}}
     
    124124Opens the previously specified port.
    125125
    126 {{{
     126{{{#!c++
    127127int Open(void);
    128128}}}
     
    139139==== Example ====
    140140
    141 {{{
     141{{{#!c++
    142142}}}
    143143
    144144=== Close ===
    145145Closes the connection
    146 {{{
     146{{{#!c++
    147147int Close(void);
    148148}}}
     
    164164=== !SetParameters ===
    165165Set the baud rate, number of data bits, parity, and number of stop bits for serial ports.
    166 {{{
     166{{{#!c++
    167167bool SetParameters(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne);
    168168}}}
     
    182182==== Examples ====
    183183
    184 {{{
     184{{{#!c++
    185185CCommSerial* pSerial = new CCommSerial(2);
    186186if(pSerial->Open())
     
    190190}}}
    191191
    192 {{{
     192{{{#!c++
    193193CCommSerial* pSerial = new CCommSerial(2);
    194194if(pSerial->Open())
     
    200200=== !IsReady ===
    201201Check the state of the serial CTS input (for serial ports that are equipped with CTS input)
    202 {{{
     202{{{#!c++
    203203bool IsReady(void);
    204204}}}
     
    217217==== Example ====
    218218
    219 {{{
     219{{{#!c++
    220220CCommSerial *pSerial = new CCommSerial(2);
    221221if(pSerial->Open())
     
    233233Set the state of the serial RTS output
    234234
    235 {{{
     235{{{#!c++
    236236bool SetRTS(bool bRTSOn = true);
    237237}}}
     
    249249==== Example ====
    250250
    251 {{{
     251{{{#!c++
    252252CCommSerial* pSerial = new CCommSerial(2);
    253253if(pSerial->Open())