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

« back to all changes in this revision

Viewing changes to src/include/IC7000.h

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-06-07 11:28:52 UTC
  • Revision ID: package-import@ubuntu.com-20140607112852-v4d5tb1m3h3vi0dl
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _IC7000_H
 
2
#define _IC7000_H
 
3
 
 
4
#include "IC746.h"
 
5
 
 
6
class RIG_IC7000 : public RIG_IC746PRO {
 
7
public:
 
8
        RIG_IC7000();
 
9
        ~RIG_IC7000(){}
 
10
 
 
11
        void initialize();
 
12
 
 
13
        long get_vfoA(void);
 
14
        void set_vfoA(long f);
 
15
        int  get_bwA();
 
16
        void set_bwA(int);
 
17
        int  get_modeA();
 
18
        void set_modeA(int val);
 
19
 
 
20
        long get_vfoB(void);
 
21
        void set_vfoB(long f);
 
22
        int  get_bwB();
 
23
        void set_bwB(int);
 
24
        void set_modeB(int val);
 
25
        int  get_modeB();
 
26
 
 
27
        void selectA();
 
28
        void selectB();
 
29
 
 
30
        int  adjust_bandwidth(int m);
 
31
        int  def_bandwidth(int m);
 
32
        void set_attenuator( int val );
 
33
        int  get_attenuator();
 
34
        void set_preamp(int val);
 
35
        int  get_preamp();
 
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
        void set_rf_gain(int val);
 
41
        int  get_rf_gain();
 
42
        void set_squelch(int val);
 
43
        int  get_squelch();
 
44
        void set_power_control(double val);
 
45
        int  get_power_control();
 
46
        int  get_auto_notch();
 
47
        void set_auto_notch(int v);
 
48
        int  get_smeter();
 
49
        int  get_power_out();
 
50
        int  get_alc();
 
51
 
 
52
        void set_split(bool v);
 
53
        int  get_split();
 
54
 
 
55
        int  get_mic_gain();
 
56
        void set_mic_gain(int val);
 
57
        void get_mic_gain_min_max_step(int &min, int &max, int &step);
 
58
 
 
59
        void set_notch(bool on, int val);
 
60
        bool get_notch(int &val);
 
61
        void get_notch_min_max_step(int &min, int &max, int &step);
 
62
 
 
63
        void set_noise(bool val);
 
64
        int  get_noise();
 
65
 
 
66
        void set_noise_reduction(int val);
 
67
        int  get_noise_reduction();
 
68
 
 
69
        void set_noise_reduction_val(int val);
 
70
        int  get_noise_reduction_val();
 
71
        void set_compression();
 
72
        void get_comp_min_max_step(int &min, int &max, int &step) {
 
73
                min = 0; max = 10; step = 1; }
 
74
 
 
75
};
 
76
 
 
77
 
 
78
#endif