📄 config.h
字号:
/****************************************Copyright (c)**************************************************** Guangzou ZLG-MCU Development Co.,LTD.** graduate school** http://www.zlgmcu.com****--------------File Info-------------------------------------------------------------------------------** File Name: config.h** Last modified Date: 2004-09-17** Last Version: 1.0** Descriptions: User Configurable File****------------------------------------------------------------------------------------------------------** Created By: Chenmingji** Created date: 2004-09-17** Version: 1.0** Descriptions: First version****------------------------------------------------------------------------------------------------------** Modified by:** Modified date:** Version:** Descriptions:**********************************************************************************************************/#ifndef __CONFIG_H#define __CONFIG_H//This segment should not be modified#ifndef TRUE#define TRUE 1#endif#ifndef FALSE#define FALSE 0#endif#include <asm/types.h>typedef __u8 uint8; /* defined for unsigned 8-bits integer variable 无符号8位整型变量 */typedef __s8 int8; /* defined for signed 8-bits integer variable 有符号8位整型变量 */typedef __u16 uint16; /* defined for unsigned 16-bits integer variable 无符号16位整型变量 */typedef __s16 int16; /* defined for signed 16-bits integer variable 有符号16位整型变量 */typedef __u32 uint32; /* defined for unsigned 32-bits integer variable 无符号32位整型变量 */typedef __s32 int32; /* defined for signed 32-bits integer variable 有符号32位整型变量 */typedef float fp32; /* single precision floating point variable (32bits) 单精度浮点数(32位长度) */typedef double fp64; /* double precision floating point variable (64bits) 双精度浮点数(64位长度) *//********************************//*Application Program Configurations*//* 应用程序配置 *//********************************///This segment could be modified as needed.//以下根据需要改动/* 系统设置, Fosc、Fcclk、Fcco、Fpclk必须定义*/#define Fosc 11059200 //Crystal frequence,10MHz~25MHz,should be the same as actual status. //应当与实际一至晶振频率,10MHz~25MHz,应当与实际一至#define Fcclk (Fosc * 4) //System frequence,should be (1~32)multiples of Fosc,and should be equal or less than 60MHz. //系统频率,必须为Fosc的整数倍(1~32),且<=60MHZ#define Fcco (Fcclk * 4) //CCO frequence,should be 2、4、8、16 multiples of Fcclk, ranged from 156MHz to 320MHz. //CCO频率,必须为Fcclk的2、4、8、16倍,范围为156MHz~320MHz#define Fpclk (Fcclk / 4) * 1 //VPB clock frequence , must be 1、2、4 multiples of (Fcclk / 4). //VPB时钟频率,只能为(Fcclk / 4)的1、2、4倍#include <fcntl.h>#include "../header/pwm.h"#endif/*********************************************************************************************************** End Of File********************************************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -