~ubuntu-branches/ubuntu/wily/flrig/wily

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/IC756PRO3.h

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _IC756PRO3_H
2
 
#define _IC756PRO3_H
3
 
 
4
 
#include "ICbase.h"
5
 
 
6
 
class RIG_IC756PRO3 : public RIG_ICOM {
7
 
public:
8
 
        RIG_IC756PRO3();
9
 
        ~RIG_IC756PRO3(){}
10
 
 
11
 
        void initialize();
12
 
 
13
 
        void selectA();
14
 
        void selectB();
15
 
        void A2B();
16
 
 
17
 
        long get_vfoA(void);
18
 
        void set_vfoA(long f);
19
 
        int  get_modetype(int n);
20
 
        void set_modeA(int val);
21
 
        int  get_modeA();
22
 
        void set_bwA(int val);
23
 
        int  get_bwA();
24
 
 
25
 
        long get_vfoB(void);
26
 
        void set_vfoB(long f);
27
 
        void set_modeB(int val);
28
 
        int  get_modeB();
29
 
        void set_bwB(int val);
30
 
        int  get_bwB();
31
 
 
32
 
        int  get_smeter();
33
 
        int  get_swr(void);
34
 
        int  get_alc(void);
35
 
        int  get_power_out(void);
36
 
 
37
 
        void set_volume_control(int val);
38
 
        int  get_volume_control();
39
 
        void get_vol_min_max_step(int &min, int &max, int &step);
40
 
 
41
 
        void set_PTT_control(int val);
42
 
 
43
 
        void set_noise(bool val);
44
 
        int  get_noise();
45
 
 
46
 
        void set_noise_reduction(int val);
47
 
        int  get_noise_reduction();
48
 
 
49
 
        void set_noise_reduction_val(int val);
50
 
        int  get_noise_reduction_val();
51
 
 
52
 
        void set_mic_gain(int val);
53
 
        int  get_mic_gain();
54
 
        void get_mic_gain_min_max_step(int &min, int &max, int &step);
55
 
 
56
 
        void set_if_shift(int val);
57
 
        bool get_if_shift(int &val);
58
 
        void get_if_min_max_step(int &min, int &max, int &step);
59
 
        
60
 
        void set_squelch(int val);
61
 
        int  get_squelch();
62
 
        
63
 
        void set_rf_gain(int val);
64
 
        int  get_rf_gain();
65
 
        
66
 
        void set_power_control(double val);
67
 
        int  get_power_control();
68
 
 
69
 
        void set_split(bool val);
70
 
        int  get_split();
71
 
        bool can_split() { return true;}
72
 
 
73
 
        void set_attenuator(int val);
74
 
        int  get_attenuator();
75
 
 
76
 
        void set_preamp(int val);
77
 
        int  get_preamp();
78
 
 
79
 
        int  adjust_bandwidth(int);
80
 
        int  def_bandwidth(int);
81
 
 
82
 
        void tune_rig();
83
 
 
84
 
        void set_notch(bool, int);
85
 
        bool get_notch(int&);
86
 
        void get_notch_min_max_step(int&, int&, int&);
87
 
 
88
 
        void set_auto_notch(int);
89
 
        int  get_auto_notch();
90
 
 
91
 
        bool twovfos() { return false; }
92
 
 
93
 
        const char **bwtable(int);
94
 
 
95
 
protected:
96
 
        int  preamp_level;
97
 
        int  atten_level;
98
 
        int  ICvol;
99
 
 
100
 
};
101
 
 
102
 
 
103
 
#endif