Changes between Version 11 and Version 12 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial


Ignore:
Timestamp:
01/23/24 11:03:23 (10 months ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v11 v12  
    2323
    2424{{{
     25CCommSerial *pSerial = new CCommSerial();
     26// Creates a CCommSerial instance that does not have a port specified yet. Method SetPort() must be called before calling Open().
     27}}}
     28
     29{{{
    2530CCommSerial *pSerial = new CCommSerial(2);
    2631// Creates a CCommSerial instance that when opened will connect to COM2
     
    3742CCommSerial *pSerial = new CCommSerial(COMM_USB_PRINTER_OFFSET);
    3843// Creates a CCommSerial instance that when opened will connect to first USB to printer /dev/usb/lp0
    39 }}}
    40 
    41 
    42 
    43 {{{
    44 CCommSerial *pSerial = new CCommSerial();
    45 // Creates a CCommSerial instance that does not have a port specified yet. Method SetPort() must be called before calling Open().
    4644}}}
    4745