⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.h

📁 可以对UC1697V的进行连续烧录
💻 H
字号:
/*------------------------------------------------------------------*-

   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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -