Show
Ignore:
Timestamp:
08/11/08 16:05:35 (5 months ago)
Author:
liamstask
Message:

- add new serial functions: Serial_Flush, Serial_ClearErrors, Serial_GetErrors, Serial_StartBreak, Serial_StopBreak

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • firmware/trunk/core/makingthings/serial.h

    r792 r810  
    4747int Serial_Read( uchar* buffer, int count, int timeout ); 
    4848 
     49void Serial_Flush( void ); 
     50void Serial_ClearErrors( void ); 
     51bool Serial_GetErrors( bool* overrun, bool* frame, bool* parity ); 
     52void Serial_StartBreak( void ); 
     53void Serial_StopBreak( void ); 
     54 
    4955/* OSC Interface */ 
    5056const char* SerialOsc_GetName( void );