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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-06-07 11:28:52 UTC
  • Revision ID: package-import@ubuntu.com-20140607112852-pj9xhtlvwpgqjy5x
Tags: 1.3.15-1
* Initial release (Closes: #750861)
  flrig version 1.3.15 plus the following upstream commits:
  - 0001-License-Declaration.patch
  - 0002-FL_APPS-folder.patch
  - 0003-rig-home-dir.patch
  - 0004-RTS-DTR-restore.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _IC7200_H
 
2
#define _IC7200_H
 
3
 
 
4
#include "ICbase.h"
 
5
 
 
6
class RIG_IC7200 : public RIG_ICOM {
 
7
public:
 
8
        RIG_IC7200();
 
9
        ~RIG_IC7200(){}
 
10
 
 
11
        void initialize();
 
12
 
 
13
        void selectA();
 
14
        void selectB();
 
15
 
 
16
        long get_vfoA ();
 
17
        void set_vfoA (long freq);
 
18
 
 
19
        long get_vfoB(void);
 
20
        void set_vfoB(long f);
 
21
 
 
22
        int  get_modetype(int n);
 
23
        void set_modeA(int val);
 
24
        int  get_modeA();
 
25
        void set_bwA(int val);
 
26
        int  get_bwA();
 
27
 
 
28
        void set_modeB(int val);
 
29
        int  get_modeB();
 
30
        void set_bwB(int val);
 
31
        int  get_bwB();
 
32
 
 
33
        void set_PTT_control(int val);
 
34
        void set_volume_control(int val);
 
35
        int  get_volume_control();
 
36
        void get_vol_min_max_step(int &min, int &max, int &step);
 
37
        void set_attenuator(int val);
 
38
        int  get_smeter();
 
39
        int  get_power_out(void);
 
40
        int  get_swr(void);
 
41
        int  get_alc(void);
 
42
        void set_noise(bool val);
 
43
        int  get_noise();
 
44
        void set_noise_reduction(int val);
 
45
        int  get_noise_reduction();
 
46
        void set_noise_reduction_val(int val);
 
47
        int  get_noise_reduction_val();
 
48
        void set_preamp(int val);
 
49
        int  get_preamp();
 
50
        void set_rf_gain(int val);
 
51
        int  get_rf_gain();
 
52
        void set_squelch(int val);
 
53
        int  get_squelch();
 
54
        void set_power_control(double val);
 
55
        int  get_power_control();
 
56
        void set_mic_gain(int val);
 
57
        int  get_mic_gain();
 
58
        void get_mic_gain_min_max_step(int &min, int &max, int &step);
 
59
        int  adjust_bandwidth(int m);
 
60
        int  def_bandwidth(int m);
 
61
        void set_compression();
 
62
        void set_auto_notch(int val);
 
63
        int  get_auto_notch();
 
64
        void set_vox_onoff();
 
65
        void set_split(bool);
 
66
        bool can_split() { return true; }
 
67
        const char **bwtable(int);
 
68
 
 
69
        void tune_rig();
 
70
 
 
71
 
 
72
protected:
 
73
        int  filter_nbr;
 
74
};
 
75
 
 
76
#endif