Changes between Version 7 and Version 8 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile
- Timestamp:
- 08/23/10 07:54:44 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/CFile
v7 v8 95 95 96 96 === SetSerial === 97 98 * bool SetSerial(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne); 97 Set the baud rate, number of data bits, parity, and number of stop bits for serial ports. 98 {{{ 99 bool SetSerial(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne); 100 }}} 101 102 ==== Parameters ==== 103 * baud_index 104 * data_bit_index 105 * parity_index 106 * stop_bit_index 107 108 ==== Return Value ==== 109 110 Returns true if successful, false if not successful. 111 112 ==== Remarks ==== 113 114 ==== Example ==== 115 99 116 100 117 === ReadLine === 101 118 102 * bool ReadLine(std::string& str); 119 {{{ 120 bool ReadLine(std::string& str); 121 }}} 103 122 104 123 === DeleteFile === 105 124 106 * static bool DeleteFile(std::string& filepath); 107 * static bool DeleteFile(const char* filepath); 108 109 * bool DeleteFile(void); 125 {{{ 126 static bool DeleteFile(std::string& filepath); 127 static bool DeleteFile(const char* filepath); 128 129 bool DeleteFile(void); 130 }}} 110 131 111 132 … … 155 176 ==== Return Value ==== 156 177 157 *Returns true if successfully set RTS state, false otherwise.178 Returns true if successfully set RTS state, false otherwise. 158 179 159 180 ==== Remarks ====