02.config.h文件编写
Posted suliang2013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了02.config.h文件编写相关的知识,希望对你有一定的参考价值。
新建文件,命名为config.h,保存在 /source/Main/ 中
个人理解,编写config的好处:1.一个文件中定义全局变量,方便6
#ifndef __CONFIG_H__ #define __CONFIG_H__ //无符号类型的定义 #define uchar unsigned char #define uint unsigned int //32bit #define uint8 unsigned char #define uint16 unsigned short int #define uint32 unsigned int #ifndef MAIN_CONFIG //头文件被多个C调用时,避免变量冲突问题 #define EXT #else #define EXT extern //很实用 #endif //------------------------------------------------- //常用头文件包含 #include "stm32f10x.h" #include "stdio.h" #include "string.h" #include "math.h" //------------------------------------------------- //外设驱动头文件 //------------------------------------------------- //全局宏定义 #define CPU_INT_DISABLE() {__SET_PRIMASK(1);}//关闭中断 #define CPU_INT_ENABLE() {__SET_PRIMASK(0);} //打开中断 //------------------------------------------------- //全局类型定义 typedef enum{FALSE = 0, TURE = !FALSE}BOOL; //------------------------------------------------- //全局变量定义,请使用EXT修饰 EXT unsigned char g_Var; //------------------------------------------------- #endif
以上是关于02.config.h文件编写的主要内容,如果未能解决你的问题,请参考以下文章
VS Code配置snippets代码片段快速生成html模板,提高前端编写效率
片段中 ListView 的 setOnItemClickListener
片段中ListView的setOnItemClickListener
编写一个程序, 将 a.txt 文件中的单词与 b.txt 文件中的 单词交替合并到 c.txt 文件中, a.txt 文件中的单词用回车符 分隔, b.txt 文件中用回车或空格进行分隔。(代码片段