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

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/IC756PRO2.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 _IC756PRO2_H
2
 
#define _IC756PRO2_H
3
 
 
4
 
#include "ICbase.h"
5
 
 
6
 
class RIG_IC756PRO2 : public RIG_ICOM {
7
 
public:
8
 
        RIG_IC756PRO2();
9
 
        ~RIG_IC756PRO2(){}
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
 
        void set_volume_control(int val);
34
 
        int  get_volume_control();
35
 
        void get_vol_min_max_step(int &min, int &max, int &step);
36
 
        void set_PTT_control(int val);
37
 
        void set_noise(bool val);
38
 
        int  get_noise();
39
 
        void set_noise_reduction(int val);
40
 
        int  get_noise_reduction();
41
 
        void set_noise_reduction_val(int val);
42
 
        int  get_noise_reduction_val();
43
 
 
44
 
        void set_mic_gain(int val);
45
 
//      int  get_mic_gain();
46
 
        void get_mic_gain_min_max_step(int &min, int &max, int &step);
47
 
        void set_if_shift(int val);
48
 
//      bool get_if_shift(int val);
49
 
        void get_if_min_max_step(int &min, int &max, int &step);
50
 
        void set_squelch(int val);
51
 
//      int  get_squelch();
52
 
        void set_rf_gain(int val);
53
 
//      int  get_rf_gain();
54
 
        void set_power_control(double val);
55
 
 
56
 
        void set_split(bool val);
57
 
        bool can_split() { return true;}
58
 
 
59
 
        void set_attenuator(int val);
60
 
        int  get_attenuator();
61
 
        void set_preamp(int val);
62
 
        int  get_preamp();
63
 
 
64
 
        int  adjust_bandwidth(int);
65
 
        int  def_bandwidth(int);
66
 
        int  get_swr();
67
 
        int  get_alc();
68
 
        int  get_power_out();
69
 
        void tune_rig();
70
 
        void set_notch(bool, int);
71
 
        bool get_notch(int&);
72
 
        void get_notch_min_max_step(int&, int&, int&);
73
 
 
74
 
        bool twovfos() { return false; }
75
 
 
76
 
        const char **bwtable(int);
77
 
 
78
 
protected:
79
 
        int  preamp_level;
80
 
        int  atten_level;
81
 
        int  ICvol;
82
 
 
83
 
};
84
 
 
85
 
 
86
 
#endif