码迷,mamicode.com
首页 > 其他好文 > 详细

02.config.h文件编写

时间:2020-03-23 00:30:48      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:调用   无符号   文件中   conf   类型   32bit   使用   else   bit   

新建文件,命名为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文件编写

标签:调用   无符号   文件中   conf   类型   32bit   使用   else   bit   

原文地址:https://www.cnblogs.com/suliang2013/p/12549326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!