示例#1
0
 def _setup_rx_path(self,options):
     if options.tx_ant == 1:
         if options.rx_ant == 1:
             self.rxpath = receive_path(options)
             #self._setup_rpc_manager()
             #self.connect(self.source, self.rxpath)
         else:
             print "Two Rx antennas"
             self.rxpath = receive_path_12(options)
示例#2
0
 def _setup_rx_path(self,options):
     if options.tx_ant == 1:
         if options.rx_ant == 1:
             if options.fbmc:
                 print "fbmc_transmit_path"
                 options.est_preamble = 0
                 self.rxpath = fbmc_receive_path(options)
             else:
                 self.rxpath = receive_path(options)
             #self._setup_rpc_manager()
             #self.connect(self.source, self.rxpath)
         else:
             print "1X21X21X21X2"
             #self.rxpath = receive_path(options)
             self.rxpath = receive_path_12(options)
示例#3
0
文件: rx.py 项目: luwangg/gr-ofdm-1
 def _setup_rx_path(self, options):
     if options.tx_ant == 1:
         if options.rx_ant == 1:
             if options.fbmc:
                 print "fbmc_transmit_path"
                 options.est_preamble = 0
                 self.rxpath = fbmc_receive_path(options)
             else:
                 self.rxpath = receive_path(options)
             #self._setup_rpc_manager()
             #self.connect(self.source, self.rxpath)
         else:
             print "1X21X21X21X2"
             #self.rxpath = receive_path(options)
             self.rxpath = receive_path_12(options)