www.pudn.com > s3c2443_test_code.zip > Console.h
#ifndef __console_h__
#define __console_h__
#ifdef __cplusplus
extern "C" {
#endif
////////////////////////////////
void Uart_Init(int);
int GetIntNum(void);
unsigned int Uart_putc(unsigned int c);
unsigned int Uart_getc(void);
void Uart_TxEmpty(void); // added 060624
char Uart_GetKey(void); // added 060624
void Console(void);
void Init_LED(void);
void Led_Display(int data);
unsigned int DownloadData(void); // added 060707
extern int UartDownAddress; // added 060707
extern unsigned int UartDownProgramSize; // added 060707
///////////////////////////////
#ifdef __cplusplus
}
#endif
#endif //__console_h__