2460lib.h
来自「SMDK2460 usb monitor program. compiler A」· C头文件 代码 · 共 42 行
H
42 行
//************************************************
// NAME : 2460lib.h
// DESC : library functions
// History : 01.08.2004 ver 0.0
//************************************************
#ifndef __2460lib_h__
#define __2460lib_h__
#ifdef __cplusplus
extern "C" {
#endif
extern unsigned int MPLL;
extern unsigned int ARMCLK, HCLK, PCLK;
extern unsigned int ARMCLKdiv, HCLKdiv, PCLKdiv;
void GlobalCLK( void);
void Delay( int); //Watchdog Timer is used.
int GetIntNum(void);
void Init_LED( void);
void Led_Display( int);
void Uart_Init( int, int);
int Uart_putc(int);
int Uart_puts( const char *);
int Uart_getc( void);
int Uart_GetKey( void);
void HaltUndef(void);
void HaltSwi(void);
void HaltPabort(void);
void HaltDabort(void);
#ifdef __cplusplus
}
#endif
#endif //__2460lib_h__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?