fco730
This commit is contained in:
parent
5b0aee7437
commit
6a254e7922
|
|
@ -1,6 +1,35 @@
|
|||
registers = {
|
||||
|
||||
}
|
||||
settings = {
|
||||
"program_data":b'A000',
|
||||
"product_data":b'B000',
|
||||
"function_data":b'D000',
|
||||
"counters":b'E000',
|
||||
"change_cur_prod":b'F000',
|
||||
"start_test": b'G000',
|
||||
"reset_test": b'H000',
|
||||
"version_num_range": b'I000',
|
||||
"reset_counters": b'J000',
|
||||
"self_check": b'K000',
|
||||
"last_test_result": b'L000',
|
||||
"current_status": b'M000',
|
||||
"zero_pressure": b'O000',
|
||||
"security_data": b'P000',
|
||||
"printer_settings": b'S000',
|
||||
"comm_settings": b'x000'
|
||||
}
|
||||
tags = {
|
||||
"product_id": b'a',
|
||||
"test_press": b'b',
|
||||
"tolerance": b'c',
|
||||
"+fail": b'd',
|
||||
"-fail": b'e',
|
||||
"fill_time": b'f',
|
||||
"stab_time": b'g',
|
||||
"test_time": b'h',
|
||||
"prefill_time": b'i',
|
||||
"vent_time": b'm',
|
||||
"test_type": b'n',
|
||||
"fail_high": b'o',
|
||||
"fail_low": b'p',
|
||||
"outputs_a_h": b'q',
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -100,6 +100,9 @@ class Test_Leak(Test_Test):
|
|||
self.recipe_pressure_l.setText(f"{self.step.spec['test_pressure']}")
|
||||
self.leak_min_l.setText(f"{self.step.spec['test_pressure_qneg']}")
|
||||
self.leak_max_l.setText(f"{self.step.spec['test_pressure_qpos']}")
|
||||
self.fill_time_l.setText(f"{self.step.spec['filling_time']}")
|
||||
self.settle_time_l.setText(f"{self.step.spec['settling_time']}")
|
||||
self.meas_time_l.setText(f"{self.step.spec['test_time']}")
|
||||
|
||||
# SETUP TEST LOOP
|
||||
if self.step.spec.get("autotest", False) != False: # IF AUTOTESTING UPLOAD RECIPE EVERY TIME
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user