SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
fcdprohidcmd.h
Go to the documentation of this file.
1 #ifndef _FCDPRO_HID_CMD_H_
2 #define _FCDPRO_HID_CMD_H_
3 
4 #define FCDPRO_HID_CMD_GET_IF_RSSI 104 // Returns 1 byte unsigned IF RSSI, -35dBm ~=0, -10dBm ~=70.
5 #define FCDPRO_HID_CMD_GET_PLL_LOCK 105 // Returns 1 bit, true if locked
6 
7 #define FCDPRO_HID_CMD_SET_DC_CORR 106 // Send with 2 byte unsigned I DC correction followed by 2 byte unsigned Q DC correction. 32768 is the default centre value.
8 #define FCDPRO_HID_CMD_GET_DC_CORR 107 // Returns 2 byte unsigned I DC correction followed by 2 byte unsigned Q DC correction. 32768 is the default centre value.
9 #define FCDPRO_HID_CMD_SET_IQ_CORR 108 // Send with 2 byte signed phase correction followed by 2 byte unsigned gain correction. 0 is the default centre value for phase correction, 32768 is the default centre value for gain.
10 #define FCDPRO_HID_CMD_GET_IQ_CORR 109 // Returns 2 byte signed phase correction followed by 2 byte unsigned gain correction. 0 is the default centre value for phase correction, 32768 is the default centre value for gain.
11 
12 #define FCDPRO_HID_CMD_SET_LNA_GAIN 110 // Send a 1 byte value, see enums for reference
13 #define FCDPRO_HID_CMD_SET_LNA_ENHANCE 111
14 #define FCDPRO_HID_CMD_SET_BAND 112
15 #define FCDPRO_HID_CMD_SET_RF_FILTER 113
16 #define FCDPRO_HID_CMD_SET_MIXER_GAIN 114
17 #define FCDPRO_HID_CMD_SET_BIAS_CURRENT 115
18 #define FCDPRO_HID_CMD_SET_MIXER_FILTER 116
19 #define FCDPRO_HID_CMD_SET_IF_GAIN1 117
20 #define FCDPRO_HID_CMD_SET_IF_GAIN_MODE 118
21 #define FCDPRO_HID_CMD_SET_IF_RC_FILTER 119
22 #define FCDPRO_HID_CMD_SET_IF_GAIN2 120
23 #define FCDPRO_HID_CMD_SET_IF_GAIN3 121
24 #define FCDPRO_HID_CMD_SET_IF_FILTER 122
25 #define FCDPRO_HID_CMD_SET_IF_GAIN4 123
26 #define FCDPRO_HID_CMD_SET_IF_GAIN5 124
27 #define FCDPRO_HID_CMD_SET_IF_GAIN6 125
28 
29 #define FCDPRO_HID_CMD_GET_LNA_GAIN 150 // Retrieve a 1 byte value, see enums for reference
30 #define FCDPRO_HID_CMD_GET_LNA_ENHANCE 151
31 #define FCDPRO_HID_CMD_GET_BAND 152
32 #define FCDPRO_HID_CMD_GET_RF_FILTER 153
33 #define FCDPRO_HID_CMD_GET_MIXER_GAIN 154
34 #define FCDPRO_HID_CMD_GET_BIAS_CURRENT 155
35 #define FCDPRO_HID_CMD_GET_MIXER_FILTER 156
36 #define FCDPRO_HID_CMD_GET_IF_GAIN1 157
37 #define FCDPRO_HID_CMD_GET_IF_GAIN_MODE 158
38 #define FCDPRO_HID_CMD_GET_IF_RC_FILTER 159
39 #define FCDPRO_HID_CMD_GET_IF_GAIN2 160
40 #define FCDPRO_HID_CMD_GET_IF_GAIN3 161
41 #define FCDPRO_HID_CMD_GET_IF_FILTER 162
42 #define FCDPRO_HID_CMD_GET_IF_GAIN4 163
43 #define FCDPRO_HID_CMD_GET_IF_GAIN5 164
44 #define FCDPRO_HID_CMD_GET_IF_GAIN6 165
45 
46 #define FCDPRO_HID_CMD_I2C_SEND_BYTE 200
47 #define FCDPRO_HID_CMD_I2C_RECEIVE_BYTE 201
48 
49 #endif // _FCDPRO_HID_CMD_H_