📄 2460lib.h
字号:
//************************************************
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -