?? config.h
字號:
/*******************************************************************************************************
** 西安傅立葉電子科技
** Xian FFT Electornic Technology
** http://www.fftchina.com
********************************************************************************************************/
#ifndef __CONFIG_H
#define __CONFIG_H
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned char uint8;
typedef signed char int8;
typedef unsigned short uint16;
typedef signed short int16;
typedef unsigned int uint32;
typedef signed int int32;
typedef float fp32;
typedef double fp64;
#include "LPC2294.h"
/* System configuration .Fosc、Fcclk、Fcco、Fpclk must be defined */
#define Fosc 11059200 // Crystal frequence,10MHz~25MHz,should be the same as actual status.
#define Fcclk (Fosc * 4) // System frequence,should be (1~32)multiples of Fosc,and should be equal or less than 60MHz.
#define Fcco (Fcclk * 4) // CCO frequence,should be 2、4、8、16 multiples of Fcclk, ranged from 156MHz to 320MHz.
#define Fpclk (Fcclk / 4) * 1 // VPB clock frequence , must be 1、2、4 multiples of (Fcclk / 4).
#include "target.h" // This line may not be deleted
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -