📄 pwmconfig.h
字号:
/****************************************Copyright (c)**************************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
** http://www.embedtools.com
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: PwmConfig.h
** Last modified Date: 2006-11-18
** Last Version: v1.0
** Description: 总头文件
**
**------------------------------------------------------------------------------------------------------
** Created By: Zhou Shaogang
** Created date: 2006-11-18
** Version: v1.0
** Descriptions:
**
**------------------------------------------------------------------------------------------------------
** Modified by: 柴利明
** Modified date: 2008-7-25
** Version: v1.1
** Description:
**
********************************************************************************************************/
#ifndef __PWMCONFIG_H__
#define __PWMCONFIG_H__
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0
#endif
#define uint8 unsigned char /* 无符号8位整型变量 */
#define int8 signed char /* 有符号8位整型变量 */
#define uint16 unsigned short /* 无符号16位整型变量 */
#define int16 signed short /* 有符号16位整型变量 */
#define uint32 unsigned long /* 无符号32位整型变量 */
#define int32 signed long /* 有符号32位整型变量 */
#define fp32 float /* 单精度浮点数(32位长度) */
#define fp64 double /* 双精度浮点数(64位长度) */
/********************************/
/* 应用程序配置 */
/*Application Program Configurations*/
/********************************/
#include "hw_memmap.h"
#include "hw_types.h"
#include "hw_ints.h"
#include "hw_nvic.h"
#include "hw_adc.h"
#include "hw_pwm.h"
#include "hw_gpio.h"
#include "sysctl.h"
#include "systick.h"
#include "gpio.h"
#include "timer.h"
#include "flash.h"
#include "adc.h"
#include "pwm.h"
#include "interrupt.h"
#include "..\PeripheralInit\config.h" /* 外设初始化头文件 */
#include "..\SST25VF016B\SSTconfig.h" /* FLASH头文件 */
#endif
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -