- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
2410LIB.H
资源名称:arm_exam.rar [点击查看]
上传用户:mhstny
上传日期:2022-08-05
资源大小:793k
文件大小:2k
源码类别:
微处理器开发
开发平台:
Unix_Linux
- //===================================================================
- // File Name : 2410lib.h
- // Function : S3C2410
- // Program : Shin, On Pil (SOP)
- // Date : May 14, 2002
- // Version : 0.0
- // History
- // 0.0 : Programming start (February 20,2002) -> SOP
- // Mar.29.2002:purnnamu: For POWEROFF_wake_up, the START... label is added
- //===================================================================
- #ifndef __2410lib_h__
- #define __2410lib_h__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define DebugOut Uart_Printf
- #define min(x1,x2) (((x1)<(x2))? (x1):(x2))
- #define max(x1,x2) (((x1)>(x2))? (x1):(x2))
- #define ONESEC0 (62500) //16us resolution, max 1.04 sec
- #define ONESEC1 (31250) //32us resolution, max 2.09 sec
- #define ONESEC2 (15625) //64us resolution, max 4.19 sec
- #define ONESEC3 (7812) //128us resolution, max 8.38 sec
- #define ONESEC4 (PCLK/128/(0xff+1)) //@60Mhz, 128*4us resolution, max 32.53 sec
- #define NULL 0
- #define EnterPWDN(clkcon) ((void (*)(int))0x20)(clkcon)
- void StartPointAfterPowerOffWakeUp(void); //purnnamu:Mar.29.2002
- // 2410lib.c
- void Delay(int time); //Watchdog Timer is used.
- void *malloc(unsigned nbyte);
- void free(void *pt);
- void Port_Init(void);
- void Uart_Select(int ch);
- void Uart_TxEmpty(int ch);
- void Uart_Init(int mclk,int baud);
- char Uart_Getch(void);
- char Uart_GetKey(void);
- int Uart_GetIntNum(void);
- void Uart_SendByte(int data);
- void Uart_Printf(char *fmt,...);
- void Uart_SendString(char *pt);
- void Timer_Start(int divider); //Watchdog Timer is used.
- int Timer_Stop(void); //Watchdog Timer is used.
- void Led_Display(int data);
- void ChangeMPllValue(int m,int p,int s);
- void ChangeClockDivider(int hdivn,int pdivn);
- void ChangeUPllValue(int m,int p,int s);
- #ifdef __cplusplus
- }
- #endif
- #endif //__2410lib_h__