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

📄 system.h

📁 提供了一个简单的KEIL C51工程模板
💻 H
字号:
/******************************************************************************
 * File   Name: System.h
 * Create Time: 2007/07/14
 * Description:
 * Copyright  :
 * History    :
 * |---Data---|---Author---|--Version--|--------------Description-------------|
 *****************************************************************************/

#ifndef _SYSTEM_H_                      /* avoid being incude more than once */
#define _SYSTEM_H_

/************************************************
 *Header file        segment
 ***********************************************/

#include "system_config.h"

#include "user_datatype.h"
#include "macro_consts.h"

/************************************************
 *Macros             segment
 ***********************************************/

/************************************************
 *Define consts      segment
 ***********************************************/

/************************************************
 *Function declaration segment
 ***********************************************/


/******************************************************************************
 * Function Name: SystemInitial
 * Description  : initial entire system resources.
 * [    IN   ]  : VOID
 * [    OUT  ]	: VOID
 *****************************************************************************/
VOID SystemIntial(VOID);


#endif                                    /*  end of switch _SYSTEM_H_       */

/******************************************************************************
 * End of Entire File
 *****************************************************************************/

⌨️ 快捷键说明

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