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
Main.C
Package: Main.rar [view]
Upload User: szhonglg
Upload Date: 2021-05-17
Package Size: 1k
Code Size: 1k
Category:
3G develop
Development Platform:
Unix_Linux
- /****************************************************************************
- 【文 件 名 称】main.c
- 【功 能 描 述】三星S3C2410A板demo程序代码
- 【程 序 版 本】4.0
- 【创建人及创建日期】icesoar//2002年11月19日19:26
- 【修改人及修改日期】icesoar//2004-12-8 17:25
- ****************************************************************************/
- #include "def.h"
- #include "2410addr.h"
- #include "config.h"
- #include "board.h"
- #include "utils.h"
- extern void Test_GPRS_Q2403(void);
- /*************************************************************/
- void Main(void)
- {
- BoardInitStart();
- SystemClockInit();
- TimerInit(TIMER_FREQ);
- MemCfgInit();
- PortInit();
- SerialSwitch(0);
- SerialChgBaud(115200);
- while( 1 )
- {
- printf("please Enter any key to run testn");
- getch();
- Test_GPRS_Q2403();
- }
- }