ICETEK-DM642-C.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:0k
源码类别:

DSP编程

开发平台:

C/C++

  1. #define LOOPBACK 0
  2. #define FREEZE 1
  3. #define SIMGWIDTH 720
  4. #define SIMGHEIGHT 576
  5. #define TIMGWIDTH 512
  6. #define TIMGHEIGHT 512
  7. #define FFTIMGWIDTH 128
  8. #define FFTIMGHEIGHT 128
  9. #define PI 3.14159265
  10. typedef struct complex_struct
  11. {
  12. float real;
  13. float img;
  14. } complex;
  15. //函数定义
  16. void ICETEKDM642PCIBoardInit();
  17. void ICETEKDM642PCIStatistic();
  18. void ICETEKDM642PCIFourier();
  19. void FFT(complex *TD,complex *FD,int r);