retargetserial.h
Go to the documentation of this file.00001
00035 #ifndef __RETARGETSERIAL_H
00036 #define __RETARGETSERIAL_H
00037
00038 #include "retargetserialconfig.h"
00039
00040
00045
00050 #ifdef __cplusplus
00051 extern "C" {
00052 #endif
00053
00054 #if defined(__CROSSWORKS_ARM)
00055 int __putchar(int ch);
00056 int __getchar(void);
00057 #endif
00058
00059 int RETARGET_ReadChar(void);
00060 int RETARGET_WriteChar(char c);
00061
00062 void RETARGET_SerialCrLf(int on);
00063 void RETARGET_SerialInit(void);
00064
00065 #ifdef __cplusplus
00066 }
00067 #endif
00068
00072 #endif