Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
2410lib.h
Upload User: yzchenlin
Upload Date: 2022-03-09
Package Size: 712k
Code Size: 1k
Category:
ARM-PowerPC-ColdFire-MIPS
Development Platform:
C/C++
- //===================================================================
- // 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 min(x1,x2) (((x1)<(x2))? (x1):(x2))
- #define max(x1,x2) (((x1)>(x2))? (x1):(x2))
- #define NULL 0
- void Delay(int time);
- void Port_Init(void);
- 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__