Changes between Version 9 and Version 10 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile


Ignore:
Timestamp:
08/23/10 08:17:45 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile

    v9 v10  
    125125==== Remarks ====
    126126
    127 ==== Example ====
    128 
     127==== Examples ====
     128
     129{{{
     130CFile file("/dev/ttyS1", "w");
     131if(file.IsOpen())
     132{
     133   file.SetSerial(CFile::baud9600, CFile::data7, CFile::parityEven, CFile::stopOne);
     134}
     135}}}
     136
     137{{{
     138CFile file("/dev/ttyS1", "w");
     139if(file.IsOpen())
     140{
     141   file.SetSerial(CFile::baud19200);
     142}
     143}}}
    129144
    130145=== ReadLine ===