Blame view

redpitaya/gnuradio_blocks/dds_control.py 5.27 KB
ed4b2fee6   bmarechal   minor fixes
1
2
3
4
  #!/usr/bin/env python2
  # -*- coding: utf-8 -*-
  ##################################################
  # GNU Radio Python Flow Graph
385c63d95   bmarechal   -
5
6
  # Title: Dds Control
  # Generated: Tue Mar 21 12:05:52 2017
ed4b2fee6   bmarechal   minor fixes
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  ##################################################
  
  if __name__ == '__main__':
      import ctypes
      import sys
      if sys.platform.startswith('linux'):
          try:
              x11 = ctypes.cdll.LoadLibrary('libX11.so')
              x11.XInitThreads()
          except:
              print "Warning: failed to XInitThreads()"
  
  from PyQt4 import Qt
  from gnuradio import eng_notation
  from gnuradio import gr
  from gnuradio.eng_option import eng_option
  from gnuradio.filter import firdes
  from gnuradio.qtgui import Range, RangeWidget
  from optparse import OptionParser
  import redpitaya_gnuradio
  import sys
385c63d95   bmarechal   -
28
  class dds_control(gr.top_block, Qt.QWidget):
ed4b2fee6   bmarechal   minor fixes
29
30
  
      def __init__(self):
385c63d95   bmarechal   -
31
          gr.top_block.__init__(self, "Dds Control")
ed4b2fee6   bmarechal   minor fixes
32
          Qt.QWidget.__init__(self)
385c63d95   bmarechal   -
33
          self.setWindowTitle("Dds Control")
ed4b2fee6   bmarechal   minor fixes
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
          try:
              self.setWindowIcon(Qt.QIcon.fromTheme('gnuradio-grc'))
          except:
              pass
          self.top_scroll_layout = Qt.QVBoxLayout()
          self.setLayout(self.top_scroll_layout)
          self.top_scroll = Qt.QScrollArea()
          self.top_scroll.setFrameStyle(Qt.QFrame.NoFrame)
          self.top_scroll_layout.addWidget(self.top_scroll)
          self.top_scroll.setWidgetResizable(True)
          self.top_widget = Qt.QWidget()
          self.top_scroll.setWidget(self.top_widget)
          self.top_layout = Qt.QVBoxLayout(self.top_widget)
          self.top_grid_layout = Qt.QGridLayout()
          self.top_layout.addLayout(self.top_grid_layout)
385c63d95   bmarechal   -
49
          self.settings = Qt.QSettings("GNU Radio", "dds_control")
ed4b2fee6   bmarechal   minor fixes
50
51
52
53
54
          self.restoreGeometry(self.settings.value("geometry").toByteArray())
  
          ##################################################
          # Variables
          ##################################################
ed4b2fee6   bmarechal   minor fixes
55
56
57
          self.port = port = 1001
          self.offset_out1 = offset_out1 = 0
          self.f_dds = f_dds = 0
385c63d95   bmarechal   -
58
          self.addr = addr = "192.168.0.201"
ed4b2fee6   bmarechal   minor fixes
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
          self.a_dds = a_dds = 0
  
          ##################################################
          # Blocks
          ##################################################
          self._offset_out1_range = Range(-8192, 8191, 100, 0, 200)
          self._offset_out1_win = RangeWidget(self._offset_out1_range, self.set_offset_out1, 'Offset DDS', "counter_slider", int)
          self.top_grid_layout.addWidget(self._offset_out1_win, 2, 0)
          self._f_dds_range = Range(0, 60000000, 100000, 0, 200)
          self._f_dds_win = RangeWidget(self._f_dds_range, self.set_f_dds, 'DDS frequency', "counter_slider", int)
          self.top_grid_layout.addWidget(self._f_dds_win, 0, 0)
          self._a_dds_range = Range(0, 8191, 128, 0, 200)
          self._a_dds_win = RangeWidget(self._a_dds_range, self.set_a_dds, 'DDS amplitude', "counter_slider", int)
          self.top_grid_layout.addWidget(self._a_dds_win, 1, 0)
          self.nco_counter_send_conf_0 = redpitaya_gnuradio.nco_counter_send_conf(
                  addr=addr,
                  port=port,
                  device='/dev/dds_freq',
                  freq_ref=125000000,
                  freq_dds=f_dds,
                  acc_size=32,
                  offset=0,
          )
            
          self.add_const_set_offset_0_0 = redpitaya_gnuradio.add_const_set_offset(
                  addr=addr,
                  port=port,
                  device='/dev/dds_ampl',
                  const=a_dds,
          )
            
          self.add_const_set_offset_0 = redpitaya_gnuradio.add_const_set_offset(
                  addr=addr,
                  port=port,
                  device='/dev/dds_offset',
                  const=offset_out1,
          )
            
  
      def closeEvent(self, event):
385c63d95   bmarechal   -
99
          self.settings = Qt.QSettings("GNU Radio", "dds_control")
ed4b2fee6   bmarechal   minor fixes
100
101
          self.settings.setValue("geometry", self.saveGeometry())
          event.accept()
ed4b2fee6   bmarechal   minor fixes
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
      def get_port(self):
          return self.port
  
      def set_port(self, port):
          self.port = port
  
      def get_offset_out1(self):
          return self.offset_out1
  
      def set_offset_out1(self, offset_out1):
          self.offset_out1 = offset_out1
          self.add_const_set_offset_0.set_const(device='/dev/dds_offset', const=self.offset_out1)
  
      def get_f_dds(self):
          return self.f_dds
  
      def set_f_dds(self, f_dds):
          self.f_dds = f_dds
          self.nco_counter_send_conf_0.set_nco(device='/dev/dds_freq', freq_ref=125000000, freq_dds=self.f_dds, acc_size=32, offset=0)
  
      def get_addr(self):
          return self.addr
  
      def set_addr(self, addr):
          self.addr = addr
  
      def get_a_dds(self):
          return self.a_dds
  
      def set_a_dds(self, a_dds):
          self.a_dds = a_dds
          self.add_const_set_offset_0_0.set_const(device='/dev/dds_ampl', const=self.a_dds)
385c63d95   bmarechal   -
134
  def main(top_block_cls=dds_control, options=None):
ed4b2fee6   bmarechal   minor fixes
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
  
      from distutils.version import StrictVersion
      if StrictVersion(Qt.qVersion()) >= StrictVersion("4.5.0"):
          style = gr.prefs().get_string('qtgui', 'style', 'raster')
          Qt.QApplication.setGraphicsSystem(style)
      qapp = Qt.QApplication(sys.argv)
  
      tb = top_block_cls()
      tb.start()
      tb.show()
  
      def quitting():
          tb.stop()
          tb.wait()
      qapp.connect(qapp, Qt.SIGNAL("aboutToQuit()"), quitting)
      qapp.exec_()
  
  
  if __name__ == '__main__':
      main()