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

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/FT2000.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 _FT2000_H
2
 
#define _FT2000_H
3
 
 
4
 
#include "rigbase.h"
5
 
 
6
 
class RIG_FT2000 : public rigbase {
7
 
private:
8
 
        bool notch_on;
9
 
        int  atten_level;
10
 
        int  preamp_level;
11
 
        int  m_60m_indx;
12
 
 
13
 
public:
14
 
        RIG_FT2000();
15
 
        ~RIG_FT2000(){}
16
 
 
17
 
        void initialize();
18
 
 
19
 
        long get_vfoA();
20
 
        void set_vfoA(long);
21
 
        int  get_smeter();
22
 
        int  get_swr();
23
 
        int  get_power_out();
24
 
        int  get_power_control();
25
 
        void set_volume_control(int val);
26
 
        int  get_volume_control();
27
 
        void set_power_control(double val);
28
 
        void set_PTT_control(int val);
29
 
        void tune_rig();
30
 
        void set_attenuator(int val);
31
 
        int  get_attenuator();
32
 
        void set_preamp(int val);
33
 
        int  get_preamp();
34
 
        void set_modeA(int val);
35
 
        int  get_modeA();
36
 
        int  get_modetype(int n);
37
 
        void set_bwA(int val);
38
 
        int  get_bwA();
39
 
        void set_if_shift(int val);
40
 
        bool get_if_shift(int &val);
41
 
        void get_if_min_max_step(int &min, int &max, int &step);
42
 
        void set_notch(bool on, int val);
43
 
        bool get_notch(int &val);
44
 
        void get_notch_min_max_step(int &min, int &max, int &step);
45
 
        void set_noise(bool b);
46
 
        void set_mic_gain(int val);
47
 
        int  get_mic_gain();
48
 
        void get_mic_min_max_step(int &min, int &max, int &step);
49
 
        int  adjust_bandwidth(int);
50
 
        int  def_bandwidth(int);
51
 
 
52
 
        bool sendFTcommand(string, int, bool);
53
 
        const char **bwtable(int);
54
 
 
55
 
        void set_band_selection(int v);
56
 
 
57
 
};
58
 
 
59
 
 
60
 
#endif