use enum for band select
[debian/gnuradio] / vrt / include / vrt / quadradio.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifndef INCLUDED_VRT_QUADRADIO_H
22 #define INCLUDED_VRT_QUADRADIO_H
23
24 #include <vrt/rx.h>
25
26 #include <arpa/inet.h>
27 #include <netinet/in.h>
28 #include <sys/types.h>
29 #include <sys/socket.h>
30
31 typedef enum{
32     VRT_TEST_SIG_NORMAL=0,
33     VRT_TEST_SIG_ZEROS=1,
34     VRT_TEST_SIG_ONES=2,
35     VRT_TEST_SIG_TOGGLE=3,
36     VRT_TEST_SIG_RAMP=4,
37     VRT_TEST_SIG_CUSTOM=5,  
38       
39     } vrt_test_sig_t;
40
41 typedef enum{
42     VRT_BAND_SEL_A='A',
43     VRT_BAND_SEL_B='B',
44     VRT_BAND_SEL_C='C',
45     VRT_BAND_SEL_D='D',  
46       
47     } vrt_band_sel_t;
48
49 namespace vrt {
50
51   /*
52    * We're not committing to this interface.  It's just here so we can make progress...
53    *
54    * This implements the ad-hoc control for bringup and has-a vrt::rx
55    */
56   class quadradio
57   {
58     int            d_ctrl_fd;          // socket for control
59     struct in_addr d_ctrl_port_inaddr; // our ip addr
60     int            d_data_fd;          // socket for data (owned by d_rx)
61     int            d_data_port;        // our data port number
62     vrt::rx::sptr  d_rx;               // has-a rx
63     
64     vrt_band_sel_t                 d_band_select;              // band select setting
65     int            d_rx_antenna;               // antenna type rf/cal
66     int            d_attenuation0;             // attenuation setting
67     int            d_attenuation1;             // attenuation setting
68     bool           d_10dB_atten;               // 10dB attenuation on/of
69
70     static bool
71     open_sockets(const char *quad_radio_ip, int quad_radio_ctrl_port,
72                  int *ctrl_fd_ptr, struct in_addr *ctrl_port_inaddr,
73                  int *data_fd_ptr, int *data_port_ptr);
74
75     static bool
76     send_rx_command(int ctrl_fd, bool start,
77                     struct in_addr addr, int data_port, int samples_per_pkt, int siggen_param);
78
79     static bool
80     send_stop_rx_command(int ctrl_fd);
81     
82     static int control_port() { return 790; }
83     int data_socket_fd() const { return d_data_fd; }
84
85     bool open(const char *ip);
86     
87     void update_dboard_pins(void);
88
89   public:
90     typedef boost::shared_ptr<quadradio> sptr;
91
92     quadradio(const std::string &ip, size_t rx_bufsize = 0);
93     ~quadradio();
94
95     vrt::rx::sptr vrt_rx() const { return d_rx; }
96
97     bool start_streaming(int samples_per_pkt = 0);
98     bool stop_streaming();
99
100
101     /* convenience methods that ultimately write the dboard pins */
102     bool set_center_freq(double target_freq);
103     bool set_band_select(vrt_band_sel_t band);
104     vrt_band_sel_t get_band_select(void){return d_band_select;}
105     //void set_10dB_atten(bool on);
106     bool set_attenuation0(int attenuation);
107     bool select_rx_antenna(const std::string &ant);
108     bool set_attenuation1(int attenuation);
109     
110     /* convenience methods that ultimately call set_hsadc_conf */
111     void set_adc_gain(bool on);
112     void set_dc_offset_comp(bool on);
113     void set_digital_gain(float gain);
114     void set_test_signal(vrt_test_sig_t type);
115     
116     /* primitives */
117     bool set_setting_reg(int regno, int value);
118     bool set_mem32(int addr, int value);        // poke a 32-bit value
119     bool set_lo_freq(double freq);
120     bool set_cal_freq(double freq);
121     bool set_beamforming(int32_t gains[8]);
122     /*
123      * The first parameter for these is a bitmask which indicates which
124      * daughterboard or daughterboards to apply the operation to.
125      * 0x1      -> dboard 0
126      * 0x2      -> dboard 1
127      * 0x3      -> dboard 0 and 1...
128      */
129     bool set_dboard_pins(int dboard_bitmask, int v);
130     bool set_hsadc_conf(int dboard_bitmask, int regno, int value);
131     bool set_lsdac(int dboard_bitmask, int which_dac, int value);
132
133   };
134
135 };
136
137
138 #endif /* INCLUDED_QUADRADIO_H */