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


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

--

Legend:

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

    v8 v9  
    9090Function does not accept any parameters
    9191
    92 ==== Result ====
     92==== Retrun Value ====
    9393 
    9494Function does not return any result.
     95
     96==== Remarks ====
     97
     98For serial ports it may be necessary to provide some delay to allow all of the buffered data to be sent out of the port before closing the port.
     99
     100==== Example ====
     101
     102{{{
     103CFile file("/dev/ttyS1", "w");
     104file.Print("This is a test\r\n");
     105SleepSeconds(1);
     106file.Close();
     107}}}
    95108
    96109=== SetSerial ===