Skip to content
Snippets Groups Projects
Commit 1f5e0c02 authored by Guenter Quast's avatar Guenter Quast
Browse files

all trigger settings in yaml

parent 659f32a1
No related branches found
No related tags found
No related merge requests found
Showing with 15 additions and 1 deletion
......@@ -33,7 +33,10 @@ redP_to_rb:
trigger_channel: *trigger_channel
trigger_level: *trigger_level
trigger_mode: 'norm'
decimation_index: 0
invert_channel1: 0
invert_channel2: 0
# Dict for simul_source.py
simul_source:
sample_time_ns: *sample_time_ns
......
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
......@@ -169,6 +169,10 @@ class rpControl(QMainWindow, Ui_MCPHA):
self.osc_daq.autoButton.setChecked(self.trigger_mode)
self.osc_daq.ch2Button.setChecked(self.trigger_source)
self.osc_daq.fallingButton.setChecked(self.trigger_slope)
self.rateValue.setCurrentIndex(self.decimation_index)
self.neg1Check.setChecked(self.invert1)
self.neg2Check.setChecked(self.invert2)
# automatically connect
if self.ip_address is not None:
self.addrValue.setText(self.ip_address)
......@@ -214,6 +218,9 @@ class rpControl(QMainWindow, Ui_MCPHA):
self.trigger_mode = 0 if args.trigger_mode == 'norm' else 1
self.trigger_slope = 0 if args.trigger_slope == 'rising' else 1
# other parameters
self.invert1 = 0
self.invert2 = 0
self.decimation_index = 1
self.filename = args.file
def parse_confd(self):
......@@ -231,6 +238,10 @@ class rpControl(QMainWindow, Ui_MCPHA):
self.trigger_level = 500 if "trigger_level" not in self.confd else self.confd["trigger_level"]
self.trigger_slope = 0 if "trigger_direction" not in self.confd else\
0 if self.confd["trigger_direction"] == "rising" else 1
self.decimation_index = 1 if "decimation_index" not in self.confd else \
self.confd["decimation_index"]
self.invert1 = 0 if "invert_channel1" in self.confd else self.confd["invert_channel1"]
self.invert2 = 0 if "invert_channel2" in self.confd else self.confd["invert_channel2"]
self.readInterval = 1000 # used to control update of oscilloscope display
# other parameters
self.filename = '' # file name for data export
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment