main.c

来自「S3C2440 TouchLCD範例 forADS編譯器」· C语言 代码 · 共 33 行

C
33
字号
/**************************************************************************
Copyright (c) 2007, Dmatek Development Kit Department  All rights reserved
FileName   : Main.c
Description: main function, System initialization and call touch panel test
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"

void Test_Touchpanel(void);


void Main(void)
{

	Port_Init();
	Uart_Init( 0,115200 );
	Uart_Select(1 );
	
    Uart_Printf("Test Touchpanel \n");
	Test_Touchpanel();
  
  }  
    

⌨️ 快捷键说明

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