source: tools/multituner.p207/platform/tda10024_platform.h @ 8433

Last change on this file since 8433 was 8433, checked in by obi, 13 years ago

[tools] add multituner.p207

File size: 1.2 KB
Line 
1#ifndef tda_platform_123
2#define tda_platform_123
3
4/*
5 * @brief tda_platform.h
6 *
7 * @author konfetti
8 *
9 *      Copyright (C) 2011 duckbox
10 *
11 *  This program is free software; you can redistribute it and/or modify
12 *  it under the terms of the GNU General Public License as published by
13 *  the Free Software Foundation; either version 2 of the License, or
14 *  (at your option) any later version.
15 *
16 *  This program is distributed in the hope that it will be useful,
17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *  GNU General Public License for more details.
20 *
21 *  You should have received a copy of the GNU General Public License
22 *  along with this program; if not, write to the Free Software
23 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25 
26struct tda10024_private_data_s
27{
28    u32 ts_out;
29    u32 si;
30    u32 power;
31    u32 agc_th;
32};
33
34struct mxl201_private_data_s 
35{
36    u32 if_freq;
37    u32 xtal;
38    u8  xtal_cap;
39    u8  clk_out;
40    u8  clk_amp;
41    u8  si;
42    u8  mode;
43    u8  power;
44    u8  lt;
45};
46
47struct tda10024_s
48{
49      struct mxl201_private_data_s*   mxl201;
50      struct tda10024_private_data_s* tda10024;
51};
52
53#endif
Note: See TracBrowser for help on using the repository browser.