diff --git a/config/machine_settings/st-ten-2.ini b/config/machine_settings/st-ten-2.ini index e39bb31..c73079a 100644 --- a/config/machine_settings/st-ten-2.ini +++ b/config/machine_settings/st-ten-2.ini @@ -45,19 +45,22 @@ tempo_svuotamento: 1 pressione_svuotamento: 100 canale_di_prova: 0 tester_discharge_enable: yes +pid_pressure_correction: 90 [autotest_leak] enabled: true pre_filling_time: 0 pre_filling_pressure: 1000 -filling_time: 5 +filling_time: 10 settling_time: 10 settling_pressure_min_percent: 5 settling_pressure_max_percent: 5 test_time: 10 -test_pressure_qneg: 5 -test_pressure: 9000 -test_pressure_qpos: 5 +test_pressure_qneg: 50 +test_pressure: 5000 +test_pressure_qpos: 30 +test_pressure_tt_qpos: 1 # Q+ Upper test leak limit (tube-tube) (positive mbar) +test_pressure_tt_qneg: 5 # Q- Lower test leak limit (tube-tube) (negative mbar) flush_time: 1 flush_pressure: 100 relay_config: 1 \ No newline at end of file diff --git a/config/warning_images/generic/Img-12.png b/config/warning_images/generic/Img-12.png new file mode 100644 index 0000000..dec5afc Binary files /dev/null and b/config/warning_images/generic/Img-12.png differ diff --git a/config/warning_images/generic/Img-13.png b/config/warning_images/generic/Img-13.png new file mode 100644 index 0000000..a91ce7a Binary files /dev/null and b/config/warning_images/generic/Img-13.png differ diff --git a/config/warning_images/generic/Img-14.png b/config/warning_images/generic/Img-14.png new file mode 100644 index 0000000..3e5f357 Binary files /dev/null and b/config/warning_images/generic/Img-14.png differ diff --git a/runme.bat b/runme.bat index f2ba63c..b689c06 100644 --- a/runme.bat +++ b/runme.bat @@ -1,4 +1,4 @@ echo on SET mypath=%~dp0 cd %mypath% -.\venv\Scripts\activate.bat && python -O "./src/main.py" +.\venv\Scripts\activate.bat && python -O "./src/main.py" --no-autotest diff --git a/src/ui/test/test.py b/src/ui/test/test.py index 5bd062c..a3a7239 100755 --- a/src/ui/test/test.py +++ b/src/ui/test/test.py @@ -708,7 +708,7 @@ class Test(Widget): "BADGE_NUM": str(archived.user.badge_number), # RESULT - "RESULT": str("CONFORME" if leak_test_1_results.get("ok", False) else "SCARTO") + str(" FORZATO" if self.data.get("overridden", False) else ""), + "RESULT": str("CONFORME" if leak_test_1.get("ok", False) else "SCARTO") + str(" FORZATO" if self.data.get("overridden", False) else ""), "RESULT_L1": "ESITO" + str(" FORZATO" if self.data.get("overridden", False) else ""), "RESULT_L2": str("CONFORME" if leak_test_1_results.get("ok", False) else "SCARTO"), }