Subversion Repositories libSerial

Rev

Rev 11 | Rev 14 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 13
Line 18... Line 18...
18
    EDIT_DONE,     ///< All characters read
18
    EDIT_DONE,     ///< All characters read
19
    EDIT_CR        ///< Characters up to CR read
19
    EDIT_CR        ///< Characters up to CR read
20
} editBufferReturn;
20
} editBufferReturn;
21
 
21
 
22
/// @brief Send a string to the user
22
/// @brief Send a string to the user
23
/// @param ctl
23
/// @param ctl Handle of usart 
24
/// @param string
24
/// @param string String to send 
25
/// @param length
25
/// @param length Length of string 
26
extern void sendString(usart_ctl *ctl, char const *string, int length);
26
extern void sendString(usart_ctl *ctl, char const *string, int length);
27
 
27
 
28
/// @brief Prepare the line buffer reader
28
/// @brief Prepare the line buffer reader
29
/// @param context editBuffer object to initialise
29
/// @param context editBuffer object to initialise
30
/// @param buffer  Pointer to data: externally allocated memory buffer.
30
/// @param buffer  Pointer to data: externally allocated memory buffer.