Changes between Version 11 and Version 12 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial
- Timestamp:
- 01/23/24 11:03:23 (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial
v11 v12 23 23 24 24 {{{ 25 CCommSerial *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 {{{ 25 30 CCommSerial *pSerial = new CCommSerial(2); 26 31 // Creates a CCommSerial instance that when opened will connect to COM2 … … 37 42 CCommSerial *pSerial = new CCommSerial(COMM_USB_PRINTER_OFFSET); 38 43 // 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().46 44 }}} 47 45