?? params.h
字號:
/******************************************************************************
FILE
params.h - This is the C header file for example real FFT
implemetations.
******************************************************************************/
#define TRUE 1
#define FALSE 0
#define BE TRUE
#define LE FALSE
#define ENDIAN LE /* selects proper endianaess. If
buliding code in Big Endian,
use BE, else use LE */
#define PI 3.141592653589793 /* defineition of pi */
/* Some functions used in the example implementations use word loads which make
the code endianess dependent. Thus, one of the below definitions need to be
used depending on the endianess you are using to build your code */
/* BIG Endian */
#if ENDIAN == TRUE
typedef struct {
short imag;
short real;
} COMPLEX;
#else
/* LITTLE Endian */
typedef struct {
short real;
short imag;
} COMPLEX;
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -