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

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/TT599.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 _TT599_H
2
 
#define _TT599_H
3
 
 
4
 
#include "ICbase.h"
5
 
 
6
 
class RIG_TT599 : public rigbase {
7
 
private:
8
 
        int fwdpwr;
9
 
        int refpwr;
10
 
 
11
 
public:
12
 
        RIG_TT599();
13
 
        ~RIG_TT599(){}
14
 
 
15
 
        void initialize();
16
 
        void shutdown();
17
 
 
18
 
        long get_vfoA();
19
 
        void set_vfoA(long);
20
 
        long get_vfoB();
21
 
        void set_vfoB(long);
22
 
        void set_modeA(int val);
23
 
        int  get_modeA();
24
 
        void set_modeB(int val);
25
 
        int  get_modeB();
26
 
        void set_bwA(int bw);
27
 
        int  get_bwA();
28
 
        void set_bwB(int bw);
29
 
        int  get_bwB();
30
 
 
31
 
        bool can_split() { return true;}
32
 
        void set_split(bool val);
33
 
        int  get_split();
34
 
        bool twovfos() { return false;}//true;}
35
 
 
36
 
        void set_PTT_control(int val);
37
 
        int  get_modetype(int n);
38
 
        void set_preamp(int);
39
 
        int  get_preamp();
40
 
        int  get_power_control(void);
41
 
        void set_power_control(double val);
42
 
        void set_auto_notch(int v);
43
 
        int  get_auto_notch();
44
 
        void set_attenuator(int val);
45
 
        int  get_attenuator();
46
 
        int  get_smeter();
47
 
        int  get_power_out();
48
 
        int  get_swr();
49
 
 
50
 
        int  adjust_bandwidth(int);
51
 
        int  def_bandwidth(int);
52
 
 
53
 
//      void set_agc_level();
54
 
};
55
 
 
56
 
#endif