-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAfa_AF9007.c
50 lines (44 loc) · 1.05 KB
/
Afa_AF9007.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* @(#)Afatech_AF9007_EXT.cpp
*
* Copyright 2005 Afatech, Inc. All rights reserved.
*/
//#include <stdio.h>
#include "type.h"
#include "error.h"
#include "user.h"
#include "register.h"
#include "standard.h"
#include "Afa_AF9007_Script.h"
Dword AF9007_open (
IN Demodulator* demodulator,
IN Byte chip
) {
return (Error_NO_ERROR);
}
Dword AF9007_close (
IN Demodulator* demodulator,
IN Byte chip
) {
return (Error_NO_ERROR);
}
Dword AF9007_set (
IN Demodulator* demodulator,
IN Byte chip,
IN Word bandwidth,
IN Dword frequency
) {
return (Error_NO_ERROR);
}
TunerDescription tuner_AF9007 = {
AF9007_open,
AF9007_close,
AF9007_set,
AF9007_scripts,
AF9007_scriptSets,
0, /** tuner i2c address */
0, /** length of tuner register address */
36167000, /** tuner if */
True, /** spectrum inverse */
0xFF /** tuner id */
};