Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
saa7121.h
Package: DSP-C6000-DM642DEMO.rar [view]
Upload User: dahaojd
Upload Date: 2008-01-29
Package Size: 14357k
Code Size: 2k
Category:
DSP program
Development Platform:
C/C++
- /*
- * Copyright 2003 by Texas Instruments Incorporated.
- * All rights reserved. Property of Texas Instruments Incorporated.
- * Restricted rights to use, duplicate or disclose this code are
- * granted through contract.
- *
- */
- /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
- /********************************************************************************/
- /* saa7121.h file */
- /********************************************************************************/
- #ifndef _SAA7121_H
- #define _SAA7121_H
- #include <std.h>
- #include <csl_stdinc.h>
- #include <csl_i2c.h>
- #include <edc.h>
- typedef struct SAA7121_Cursor {
- Uint8 address;
- Uint8 cursorBlock[256];
- }SAA7121_Cursor;
- typedef struct SAA7121_LookUpTable {
- Uint8 address;
- Uint8 tables[256][3];
- }SAA7121_LookUpTable;
- typedef enum SAA7121_AnalogFormat {
- SAA7121_AFMT_SVIDEO = 0,
- SAA7121_AFMT_RGB = 1,
- SAA7121_AFMT_YPBPR = 1,
- SAA7121_AFMT_COMPOSITE = 2
- } SAA7121_AnalogFormat;
- typedef enum SAA7121_InputFormat {
- SAA7121_IFMT_RGB24_YCBCR444,
- SAA7121_IFMT_RGB555,
- SAA7121_IFMT_RGB565,
- SAA7121_IFMT_YCBCR422_NONEINTERLACED,
- SAA7121_IFMT_YCBCR422_INTERLACED
- }SAA7121_InputFormat;
- typedef enum
- {
- SAA7121_MODE_NTSC720,
- SAA7121_MODE_PAL720,
- SAA7121_MODE_VGA,
- SAA7121_MODE_SVGA,
- SAA7121_MODE_XGA,
- SAA7121_MODE_HD480P60F,
- SAA7121_MODE_HD720P60F,
- SAA7121_MODE_HD1080I30F,
- SAA7121_MODE_HD720P24F
- }SAA7121_Mode;
- typedef unsigned int SAA7121_Cmd;
- #define SAA7121_POWERDOWN EDC_USER+1
- #define SAA7121_POWERUP EDC_USER+2
- #define SAA7121_ENABLE_SLAVE_MODE EDC_USER+3
- #define SAA7121_LOAD_CURSOR EDC_USER+4
- #define SAA7121_LOAD_LUT EDC_USER+5
- #define SAA7121_ENABLE_COLORBAR EDC_USER+6
- typedef struct {
- SAA7121_Mode mode;
- I2C_Handle hI2C;
- } SAA7121_ConfParams;
- extern EDC_Fxns SAA7121_Fxns;
- #endif