Main.C
Upload User: szhonglg
Upload Date: 2021-05-17
Package Size: 1k
Code Size: 1k
Category:

3G develop

Development Platform:

Unix_Linux

  1. /****************************************************************************
  2. 【文  件  名  称】main.c
  3. 【功  能  描  述】三星S3C2410A板demo程序代码
  4. 【程  序  版  本】4.0
  5. 【创建人及创建日期】icesoar//2002年11月19日19:26
  6. 【修改人及修改日期】icesoar//2004-12-8 17:25
  7. ****************************************************************************/
  8. #include "def.h"
  9. #include "2410addr.h"
  10. #include "config.h"
  11. #include "board.h"
  12. #include "utils.h"
  13. extern void Test_GPRS_Q2403(void);
  14. /*************************************************************/
  15. void Main(void)
  16. {
  17. BoardInitStart();
  18. SystemClockInit();
  19. TimerInit(TIMER_FREQ);
  20. MemCfgInit();
  21. PortInit();
  22. SerialSwitch(0);
  23. SerialChgBaud(115200);
  24. while( 1 )
  25. {
  26. printf("please Enter any key to run testn");
  27. getch();
  28. Test_GPRS_Q2403();
  29. }
  30. }