main.c

来自「S3C2440 GPS讀寫範例 for ADS編譯器用」· C语言 代码 · 共 31 行

C
31
字号
/****************************************************************
Copyright (c) 2007,  DMATEK Development Kit Department  All rights reserved
FileName   : Main.c
Description: GPS test main function
Version    : 1.0
Author     : Dmatek_Chen
Date       : June 23, 2007
****************************************************************/


#include <stdlib.h>
#include <string.h>
#include "def.h"
#include "option.h"
#include "2440addr.h"
#include "2440lib.h"
#include "2440slib.h"

extern void Test_GPS_Model(void);
void Main(void)
{

	Port_Init();
	Uart_Init( 0,115200 );
	Uart_Select(1 );
	
    Uart_Printf("test GPS \n");
	Test_GPS_Model();
  
  }  
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?