main.h
来自「可以对UC1697V的进行连续烧录」· C头文件 代码 · 共 49 行
H
49 行
/*------------------------------------------------------------------*-
Main.H (v1.00)
------------------------------------------------------------------
- See Main.C for details.
-*------------------------------------------------------------------*/
#ifndef _Main_H
#define _Main_H
// Must include the appropriate microcontroller header file here
#include "Reg52.H"
#include "string.h"
#include "Port.H"
#include "INTRINS.H"
//==========================================================
// Typedefs
//==========================================================
typedef unsigned char tByte;
typedef unsigned int tWord;
typedef unsigned long tLong;
//==========================================================
// Interrupt
//==========================================================
#define INTERRUPT_UART_IO 4
// ------ Public function prototypes -------------------------------
void Initial_IO(void);
void Reset_LCD(void);
void Initial_Main(void);
void Window_Main(void);
void Delay(tByte);
void Press(void);
#endif
/*------------------------------------------------------------------*
---- END OF FILE -------------------------------------------------
*------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?