Mercurial > pt1
annotate driver/pt1_tuner_data.h @ 70:babd84ff70ff
added a LF
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Wed, 28 Oct 2009 21:04:53 +0900 |
parents | 272a8fba970b |
children | 28f25ec7f962 |
rev | line source |
---|---|
0 | 1 #ifndef __PT1_TUNER_DATA_H__ |
2 #define __PT1_TUNER_DATA_H__ | |
3 /***************************************************************************/ | |
4 /* */ | |
5 /***************************************************************************/ | |
6 #define MAX_ISDB_S_INIT 19 // ISDB-S 初期化データ数 | |
7 #define MAX_ISDB_T_INIT 16 // ISDB-S 初期化データ数 | |
8 #define MAX_BS_CHANNEL 36 // 周波数テーブル数 | |
9 #define MAX_ISDB_T_CHANNEL 113 // 周波数テーブル数(地デジタル) | |
10 #define MAX_BS_CHANNEL_PLL_COMMAND 3 // PLLロックするためのコマンド数 | |
11 /***************************************************************************/ | |
12 /* */ | |
13 /***************************************************************************/ | |
14 | |
15 /***************************************************************************/ | |
16 /* */ | |
17 /***************************************************************************/ | |
18 typedef struct _WBLOCK_BS_PLL{ | |
19 WBLOCK *wblock[MAX_BS_CHANNEL_PLL_COMMAND] ; | |
20 }WBLOCK_BS_PLL; | |
21 | |
22 /***************************************************************************/ | |
23 /* */ | |
24 /***************************************************************************/ | |
25 extern WBLOCK com_initdata; //初期化(共通) | |
26 extern WBLOCK isdb_s_init1; //ISDB-S先頭 | |
27 extern WBLOCK isdb_s_init21; //ISDB-S最終 | |
28 extern WBLOCK isdb_t_init17; //ISDB-T最終 | |
29 extern WBLOCK bs_pll_lock; //ISDB-S PLLロック確認 | |
69
272a8fba970b
added very rough support for PT2.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
9
diff
changeset
|
30 extern WBLOCK *isdb_s_initial_pt1[MAX_ISDB_S_INIT]; |
272a8fba970b
added very rough support for PT2.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
9
diff
changeset
|
31 extern WBLOCK *isdb_s_initial_pt2[MAX_ISDB_S_INIT]; |
272a8fba970b
added very rough support for PT2.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
9
diff
changeset
|
32 extern WBLOCK *isdb_t_initial_pt1[MAX_ISDB_T_INIT]; |
272a8fba970b
added very rough support for PT2.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
9
diff
changeset
|
33 extern WBLOCK *isdb_t_initial_pt2[MAX_ISDB_T_INIT]; |
0 | 34 /***************************************************************************/ |
35 /* BS用データ定義 */ | |
36 /***************************************************************************/ | |
37 extern WBLOCK_BS_PLL bs_pll[MAX_BS_CHANNEL] ; // 周波数テーブル | |
38 extern WBLOCK *bs_get_ts_id[(MAX_BS_TS_ID / 2)] ; // TS-ID取得テーブル | |
39 extern WBLOCK bs_tmcc_get_1; // TMCC取得テーブル | |
40 extern WBLOCK bs_tmcc_get_2; // TMCC取得テーブル | |
41 extern WBLOCK bs_get_ts_lock; | |
42 extern WBLOCK bs_set_ts_lock; | |
43 extern WBLOCK bs_get_slot; | |
44 extern WBLOCK bs_get_clock; | |
45 extern WBLOCK bs_get_carrir; | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
46 extern WBLOCK bs_get_signal1; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
47 extern WBLOCK bs_get_signal2; |
0 | 48 extern WBLOCK bs_get_agc; |
49 /***************************************************************************/ | |
50 /* 地デジ用データ定義 */ | |
51 /***************************************************************************/ | |
52 extern WBLOCK isdb_t_pll_base; // 地デジ用周波数テーブルbase | |
53 extern WBLOCK isdb_t_pll_lock; | |
54 extern WBLOCK_BS_PLL isdb_t_info[MAX_ISDB_T_INFO_LEN]; | |
55 extern WBLOCK isdb_t_check_tune; | |
56 extern WBLOCK isdb_t_tune_read; | |
57 extern WBLOCK isdb_t_tmcc_read_1; | |
58 extern WBLOCK isdb_t_tmcc_read_1; | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
59 extern WBLOCK isdb_t_signal1; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
60 extern WBLOCK isdb_t_signal2; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
61 extern WBLOCK isdb_t_agc2; |
0 | 62 |
63 extern WBLOCK isdb_t_get_clock; | |
64 extern WBLOCK isdb_t_get_carrir; | |
65 | |
66 /***************************************************************************/ | |
67 /* 省電力用データ定義 */ | |
68 /***************************************************************************/ | |
69 extern WBLOCK isdb_s_wake; | |
70 extern WBLOCK isdb_t_wake; | |
71 | |
72 extern WBLOCK isdb_s_sleep; | |
73 extern WBLOCK isdb_t_sleep; | |
74 | |
75 extern ISDB_S_CH_TABLE isdb_t_table[11]; | |
76 | |
77 #endif |