summaryrefslogtreecommitdiffstats
path: root/api/inttype.h
blob: 8f7ed4b737e0f79c47fa68a43e575237cd994eb5 (plain)
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
#ifndef __INTTYPE_H__
#define __INTTYPE_H__


/**
 * The type defination of SnrTable.
 */
typedef struct {
    Dword errorCount;
    Dword snr;
    double errorRate;
} SnrTable;


/**
 * The type defination of Statistic.
 */
typedef struct {
    Word abortCount;
    Dword postVitBitCount;
    Dword postVitErrorCount;
    /** float point */
    Dword softBitCount;
    Dword softErrorCount;
    Dword preVitBitCount;
    Dword preVitErrorCount;
    double snr;
} ChannelStatistic;


/**
 * The type defination of AgcVoltage.
 */
typedef struct {
    double doSetVolt;
    double doPuUpVolt;
} AgcVoltage;


#endif