电脑和开发板分别运行
#include "stdafx.h"
#include "BSP\bsp_timer.h"
#include "BSP\bsp_key.h"
#include "BSP\bsp_lcd.h"
#include "BSP\fonts.h"
#if DEBUG_ON_PC
#include <graphics.h>
#include <conio.h>
#endif
int _tmain(int argc, _TCHAR* argv[])
{
initgraph(320, 240); //分辨率 320*240
InitSystem(); //初始化硬件
GUI_Form_Main(); //显示主界面
while(1)
{
if(kbhit()) //键盘处理
{
}
}
getchar();
return 0;
}
|