main.c
来自「此程序是GPS导航程序」· C语言 代码 · 共 28 行
C
28 行
#include "common.h"
#include "window.h"
#include "TS12864A.h"
#include "astar.h"
#include "key.h"
#include "map.h"
unsigned int Position;
void main (void)
{
SFRPAGE = CONFIG_PAGE;
WDTCN = 0xDE; // Disable watchdog timer
WDTCN = 0xAD;
OSCILLATOR_Init (); // Initialize oscillator
PORT_Init (); // Initialize crossbar and GPIO
LCD_Init(); // 液晶初始化
CleanScreen();
show_menu_system();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?