Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile
- Timestamp:
- 08/23/10 08:12:45 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile
v8 v9 90 90 Function does not accept any parameters 91 91 92 ==== Re sult====92 ==== Retrun Value ==== 93 93 94 94 Function does not return any result. 95 96 ==== Remarks ==== 97 98 For 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 {{{ 103 CFile file("/dev/ttyS1", "w"); 104 file.Print("This is a test\r\n"); 105 SleepSeconds(1); 106 file.Close(); 107 }}} 95 108 96 109 === SetSerial ===