Esempio n. 1
0
 def getCommandMapper(self):
     return (super().getCommandMapper().setBase(
         "rtl_tcp_connector").setMappings({
             "bias_tee": Flag("-b"),
             "direct_sampling": Option("-e"),
             "remote": Argument(),
         }))
Esempio n. 2
0
 def getCommandMapper(self):
     return (
         super()
         .getCommandMapper()
         .setBase("perseustest -p -d -1 -a -t 0 -o -  ")
         .setMappings(
             {
                 "samp_rate": Option("-s"),
                 "tuner_freq": Option("-f"),
                 "attenuator": Option("-u"),
                 "adc_preamp": Flag("-m"),
                 "adc_dither": Flag("-x"),
                 "wideband": Flag("-w"),
             }
         )
     )
Esempio n. 3
0
 def getCommandMapper(self):
     return (
         super().getCommandMapper().setBase("runds_connector").setMappings({
             "long":
             Flag("-l"),
             "remote":
             Argument(),
             "protocol":
             Option("-m"),
         }))
Esempio n. 4
0
 def getCommandMapper(self):
     return super().getCommandMapper().setMappings({
         "samp_rate":
         Option("-s"),
         "tuner_freq":
         Option("-f"),
         "port":
         Option("-p"),
         "controlPort":
         Option("-c"),
         "device":
         Option("-d"),
         "iqswap":
         Flag("-i"),
         "rtltcp_compat":
         Flag("-r"),
         "ppm":
         Option("-P"),
         "rf_gain":
         Option("-g"),
     })
Esempio n. 5
0
 def getCommandMapper(self):
     return super().getCommandMapper().setMappings({"bias_tee": Flag("-t biastee=true")})