Home
last modified time | relevance | path

Searched refs:modulation_type (Results 1 – 25 of 146) sorted by relevance

123456

/dports/misc/urh/urh-2.9.2/src/urh/signalprocessing/
H A DModulator.py51 self.modulation_type == other.modulation_type and \
71 def modulation_type(self) -> str: member in Modulator
74 @modulation_type.setter
75 def modulation_type(self, value): member in Modulator
88 return "ASK" in self.modulation_type
92 return "FSK" in self.modulation_type
96 return "PSK" in self.modulation_type
172 return self.MODULATION_TYPES_VERBOSE[self.modulation_type]
224 if self.modulation_type == "ASK":
226 elif self.modulation_type == "PSK":
[all …]
H A DSignal.py164 def modulation_type(self) -> str: member in Signal
167 @modulation_type.setter
168 def modulation_type(self, value: str): member in Signal
379 self.modulation_type, self.modulation_order,
422 else "OOK" if self.bits_per_symbol == 1 and self.modulation_type == "ASK"
423 else self.modulation_type}
436 self.modulation_type = estimated_params["modulation_type"]
522 self.modulation_type,
H A DProtocolSniffer.py32 noise: float, tolerance: int, modulation_type: str, bits_per_symbol: int,
40 signal.silent_set_modulation_type(modulation_type)
210 … self.signal.tolerance, self.signal.modulation_type, self.signal.samples_per_symbol,
/dports/misc/urh/urh-2.9.2/src/urh/controller/dialogs/
H A DModulationParametersDialog.py12 def __init__(self, parameters: list, modulation_type: str, parent=None):
22 if "FSK" in modulation_type:
25 elif "ASK" in modulation_type:
28 elif "PSK" in modulation_type:
H A DModulatorDialog.py124 …ndex = self.ui.comboBoxModulationType.findText("*(" + self.current_modulator.modulation_type + ")",
384 if self.current_modulator.modulation_type == "OQPSK":
469 …write_default_parameters = self.current_modulator.modulation_type != self.__cur_selected_mod_type()
470 self.current_modulator.modulation_type = self.__cur_selected_mod_type()
603 …dulationParametersDialog(self.current_modulator.parameters, self.current_modulator.modulation_type,
/dports/misc/urh/urh-2.9.2/src/urh/cythonext/
H A Dsignal_functions.pyx56 cpdef modulate_c(uint8_t[:] bits, uint32_t samples_per_symbol, str modulation_type, argument
64 … bits, samples_per_symbol, modulation_type, parameters, bits_per_symbol, carrier_amplitude,
81 cpdef __modulate(uint8_t[:] bits, uint32_t samples_per_symbol, str modulation_type, argument
101 cdef bool is_fsk = modulation_type.lower() == "fsk"
102 cdef bool is_ask = modulation_type.lower() == "ask"
103 cdef bool is_psk = modulation_type.lower() == "psk"
104 cdef bool is_oqpsk = modulation_type.lower() == "oqpsk"
105 cdef bool is_gfsk = modulation_type.lower() == "gfsk"
393 str modulation_type, uint32_t samples_per_symbol, argument
402 cdef bool is_ask = modulation_type == "ASK"
[all …]
/dports/misc/urh/urh-2.9.2/src/urh/controller/widgets/
H A DSniffSettingsWidget.py37modulation_type=self.ui.combox_sniff_Modulation.currentText(),
90 …ff_Modulation.setCurrentText(conf_dict.get("modulation_type", signal.modulation_type if signal els…
132 modulation_type=self.sniffer.signal.modulation_type,
218 self.ui.combox_sniff_Modulation.setCurrentText(signal.modulation_type)
/dports/misc/urh/urh-2.9.2/src/urh/cli/
H A Durh_cli.py94 result.modulation_type = arguments.modulation_type
147 arguments.modulation_type, arguments.bits_per_symbol,
257 result["modulation_type"] = modulator.modulation_type
396 if args.modulation_type is None:
399 args.modulation_type = MODULATIONS[int(project_params["modulation_index"])]
401 args.modulation_type = project_params["modulation_type"]
/dports/misc/urh/urh-2.9.2/src/urh/controller/
H A DSignalTabController.py169 if frame.signal.modulation_type != signal.modulation_type:
170 frame.signal.modulation_type = signal.modulation_type
/dports/multimedia/dvb-apps/dvb-apps-3d43b280298c/lib/libucsi/dvb/
H A Dsatellite_delivery_descriptor.h45 uint8_t modulation_type : 2; );
/dports/multimedia/v4l_compat/v4l-utils-4l-utils-1.20.0/lib/include/libdvbv5/
H A Ddesc_sat.h70 uint8_t modulation_type:2; member
/dports/multimedia/libv4l/v4l-utils-4l-utils-1.20.0/lib/include/libdvbv5/
H A Ddesc_sat.h70 uint8_t modulation_type:2; member
/dports/multimedia/v4l-utils/v4l-utils-4l-utils-1.20.0/lib/include/libdvbv5/
H A Ddesc_sat.h70 uint8_t modulation_type:2; member
/dports/multimedia/w_scan2/w_scan2-1.0.13/src/
H A Dsatellites.h54 fe_modulation_t modulation_type; member
/dports/multimedia/v4l_compat/v4l-utils-4l-utils-1.20.0/lib/libdvbv5/descriptors/
H A Ddesc_sat.c71 dvb_loginfo("| modulation_type %d", sat->modulation_type); in dvb_desc_sat_print()
/dports/multimedia/libv4l/v4l-utils-4l-utils-1.20.0/lib/libdvbv5/descriptors/
H A Ddesc_sat.c71 dvb_loginfo("| modulation_type %d", sat->modulation_type); in dvb_desc_sat_print()
/dports/multimedia/v4l-utils/v4l-utils-4l-utils-1.20.0/lib/libdvbv5/descriptors/
H A Ddesc_sat.c71 dvb_loginfo("| modulation_type %d", sat->modulation_type); in dvb_desc_sat_print()
/dports/misc/urh/urh-2.9.2/src/urh/ainterpretation/
H A DWavelet.py62 modulator.modulation_type = "PSK"
/dports/audio/praat/praat-6.2.03/external/espeak/
H A Dwavegen.cpp85 static int modulation_type = 0; variable
780 modn_period = modulation_tab[voice->roughness][modulation_type]; in Wavegen()
789 modulation_type = 0; in Wavegen()
1161 modulation_type = modn & 0xff; in SetSynth()
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-mac-lte.h152 guint8 modulation_type; member
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-mac-lte.h152 guint8 modulation_type; member
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-mac-lte.h152 guint8 modulation_type; member
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-mac-lte.h152 guint8 modulation_type; member
/dports/misc/urh/urh-2.9.2/src/urh/util/
H A DProjectManager.py328 signal_tag.set("modulation_type", str(signal.modulation_type))
509 … signal.modulation_type = Signal.MODULATION_TYPES[int(sig_tag.get("modulation_type", 0))]
511 signal.modulation_type = sig_tag.get("modulation_type", "ASK")
/dports/net/gstreamer1-plugins-srtp/gst-plugins-bad-1.16.2/gst-libs/gst/mpegts/
H A Dgst-dvb-descriptor.c266 res->modulation_type = GST_MPEGTS_MODULATION_QAM_AUTO; in gst_mpegts_descriptor_parse_satellite_delivery_system()
269 res->modulation_type = GST_MPEGTS_MODULATION_QPSK; in gst_mpegts_descriptor_parse_satellite_delivery_system()
272 res->modulation_type = GST_MPEGTS_MODULATION_PSK_8; in gst_mpegts_descriptor_parse_satellite_delivery_system()
275 res->modulation_type = GST_MPEGTS_MODULATION_QAM_16; in gst_mpegts_descriptor_parse_satellite_delivery_system()
278 res->modulation_type = GST_MPEGTS_MODULATION_QAM_AUTO; in gst_mpegts_descriptor_parse_satellite_delivery_system()

123456