【STC15】面向对象的.h/.c程序架构
.h 文件
#ifndef __MAIN_H_
#define __MAIN_H_
/* Includes ------------------------------------------------------------------*/
#include <STC15.h>
/* extern variables-----------------------------------------------------------*/
/* extern function prototypes-------------------------------------------------*/
#endif
/********************************************************
End Of File
********************************************************/
.c 文件
/******************************************************************************
* @file main.c
* @author xxx
* @version V1.0
* @date 2022-5-3
* @Conpany
* @project LED闪烁(面向对象程序结构)
*******************************************************************************/
/* Includes ------------------------------------------------------------------*/
#include <main.h>
/* Private define-------------------------------------------------------------*/
/* Private variables----------------------------------------------------------*/
/* Public variables-----------------------------------------------------------*/
/* Private function prototypes------------------------------------------------*/
/*
* @name main
* @brief 主函数
* @param void
* @retval int
*/
int main(void)
{
//系统初始化
//系统主循环
while(1)
{
}
}
/********************************************************
End Of File
********************************************************/
函数
/*
* @name main
* @brief a func desc
* @param void
* @retval void
*/
void func(void)
{
}
可以在Keil中添加