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

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2004 by Real Time DSP Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
  9. /********************************************************************************/
  10. /* saa7121.h file */
  11. /********************************************************************************/
  12. #ifndef _SAA7121_H
  13. #define _SAA7121_H       
  14. #include <std.h>
  15. #include <csl_stdinc.h>
  16. #include <csl_i2c.h>
  17. #include <edc.h>
  18. typedef enum 
  19. {
  20.     SAA7121_MODE_NTSC, 
  21.     SAA7121_MODE_PAL
  22. }SAA7121_Mode;
  23. #define SAA7121_POWERDOWN           EDC_USER+1
  24. #define SAA7121_POWERUP             EDC_USER+2
  25. typedef struct {
  26.   SAA7121_Mode         mode;           
  27.   I2C_Handle           hI2C;
  28. } SAA7121_ConfParams;
  29. typedef unsigned int SAA7121_Cmd;
  30. extern EDC_Fxns SAA7121_Fxns;
  31. #endif