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


Ignore:
Timestamp:
08/23/10 07:54:44 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v7 v8  
    9595
    9696=== SetSerial ===
    97 
    98  * bool SetSerial(baud_index baud, data_bit_index = data8, parity_index = parityNone, stop_bit_index = stopOne);
     97Set the baud rate, number of data bits, parity, and number of stop bits for serial ports.
     98{{{
     99bool 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
     110Returns true if successful, false if not successful.
     111
     112==== Remarks ====
     113
     114==== Example ====
     115
    99116
    100117=== ReadLine ===
    101118
    102  * bool ReadLine(std::string& str);
     119{{{
     120bool ReadLine(std::string& str);
     121}}}
    103122
    104123=== DeleteFile ===
    105124
    106  * static bool DeleteFile(std::string& filepath);
    107  * static bool DeleteFile(const char* filepath);
    108 
    109  * bool DeleteFile(void);
     125{{{
     126static bool DeleteFile(std::string& filepath);
     127static bool DeleteFile(const char* filepath);
     128
     129bool DeleteFile(void);
     130}}}
    110131
    111132
     
    155176==== Return Value ====
    156177
    157  * Returns true if successfully set RTS state, false otherwise.
     178Returns true if successfully set RTS state, false otherwise.
    158179
    159180==== Remarks ====