module-qc-tools 2.2.7__tar.gz → 2.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- module_qc_tools-2.3.0/.gitlab-ci.yml +189 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/PKG-INFO +6 -5
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/README.md +1 -1
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/config.md +18 -10
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/install.md +2 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/measurements.md +46 -40
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/mkdocs.yml +5 -1
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/pyproject.toml +4 -3
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/_version.py +2 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/ADC_CALIBRATION.py +20 -10
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/ANALOG_READBACK.py +21 -12
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/DATA_TRANSMISSION.py +22 -13
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/INJECTION_CAPACITANCE.py +20 -15
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/IV_MEASURE.py +20 -10
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/LONG_TERM_STABILITY_DCS.py +19 -9
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/LP_MODE.py +20 -15
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/OVERVOLTAGE_PROTECTION.py +20 -15
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/SLDO.py +20 -15
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/UNDERSHUNT_PROTECTION.py +20 -15
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/VCAL_CALIBRATION.py +21 -16
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/globals.py +15 -5
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/main.py +2 -0
- module_qc_tools-2.3.0/src/module_qc_tools/cli/split_old_config.py +89 -0
- module_qc_tools-2.3.0/src/module_qc_tools/console.py +3 -0
- module_qc_tools-2.3.0/src/module_qc_tools/data/configs/hw_config_emulator_merged_vmux.json +54 -0
- module_qc_tools-2.3.0/src/module_qc_tools/data/configs/hw_config_example_merged_vmux_itkpixv2.json +60 -0
- module_qc_tools-2.3.0/src/module_qc_tools/data/configs/hw_config_example_merged_vmux_v1.json +60 -0
- module_qc_tools-2.3.0/src/module_qc_tools/data/configs/hw_config_example_separate_vmux_itkpixv2.json +63 -0
- module_qc_tools-2.3.0/src/module_qc_tools/data/configs/hw_config_example_separate_vmux_v1.json +63 -0
- module_qc_tools-2.2.7/src/module_qc_tools/data/configs/emulator_merged_vmux.json → module_qc_tools-2.3.0/src/module_qc_tools/data/configs/meas_config.json +31 -71
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip1.json +2 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip2.json +2 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip3.json +2 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip4.json +2 -2
- module_qc_tools-2.3.0/src/module_qc_tools/data/schema/common.json +1843 -0
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/config.json → module_qc_tools-2.3.0/src/module_qc_tools/data/schema/hw_config.json +104 -55
- module_qc_tools-2.3.0/src/module_qc_tools/data/schema/meas_config.json +332 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/adc_calibration.py +19 -34
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/analog_readback.py +55 -92
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/iv_measure.py +86 -57
- module_qc_tools-2.3.0/src/module_qc_tools/measurements/long_term_stability_dcs.py +183 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/lp_mode.py +1 -6
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/overvoltage_protection.py +0 -6
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/sldo.py +0 -6
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/undershunt_protection.py +0 -6
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/hardware_control_base.py +5 -2
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/misc.py +93 -24
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/yarr.py +12 -28
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/tbump.toml +2 -2
- module_qc_tools-2.3.0/tests/conftest.py +26 -0
- module_qc_tools-2.3.0/tests/test_emulator.py +143 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/tests/test_measurements.py +15 -4
- module_qc_tools-2.3.0/tests/test_schema/cutter_pcb_tab.json +29 -0
- module_qc_tools-2.3.0/tests/test_schema/cutter_pcb_tab_BAD.json +29 -0
- module_qc_tools-2.3.0/tests/test_schema.py +29 -0
- module_qc_tools-2.2.7/.gitlab-ci.yml +0 -722
- module_qc_tools-2.2.7/Measurements/ADC_CALIBRATION/2024-10-03_210638/20UPGXM1234567.json +0 -770
- module_qc_tools-2.2.7/Measurements/ADC_CALIBRATION/2024-10-03_210648/20UPGXM1234567.json +0 -578
- module_qc_tools-2.2.7/Measurements/ANALOG_READBACK/2024-10-03_210634/20UPGXM1234567.json +0 -9450
- module_qc_tools-2.2.7/Measurements/ANALOG_READBACK/2024-10-03_210639/20UPGXM1234567.json +0 -7070
- module_qc_tools-2.2.7/Measurements/DATA_TRANSMISSION/2024-10-03_210646/20UPGXM1234567.json +0 -512
- module_qc_tools-2.2.7/Measurements/INJECTION_CAPACITANCE/2024-10-03_210639/20UPGXM1234567.json +0 -566
- module_qc_tools-2.2.7/Measurements/INJECTION_CAPACITANCE/2024-10-03_210650/20UPGXM1234567.json +0 -419
- module_qc_tools-2.2.7/Measurements/IV_MEASURE/2024-10-03_210654/20UPGXM1234567.json +0 -266
- module_qc_tools-2.2.7/Measurements/LP_MODE/2024-10-03_210651/20UPGXM1234567.json +0 -742
- module_qc_tools-2.2.7/Measurements/LP_MODE/2024-10-03_210654/20UPGXM1234567.json +0 -551
- module_qc_tools-2.2.7/Measurements/OVERVOLTAGE_PROTECTION/2024-10-03_210641/20UPGXM1234567.json +0 -622
- module_qc_tools-2.2.7/Measurements/OVERVOLTAGE_PROTECTION/2024-10-03_210650/20UPGXM1234567.json +0 -467
- module_qc_tools-2.2.7/Measurements/OVERVOLTAGE_PROTECTION/2024-10-03_210653/20UPGXM1234567.json +0 -630
- module_qc_tools-2.2.7/Measurements/SLDO/2024-10-03_210631/20UPGXM1234567.json +0 -1942
- module_qc_tools-2.2.7/Measurements/SLDO/2024-10-03_210636/20UPGXM1234567.json +0 -1950
- module_qc_tools-2.2.7/Measurements/SLDO/2024-10-03_210647/20UPGXM1234567.json +0 -1457
- module_qc_tools-2.2.7/Measurements/UNDERSHUNT_PROTECTION/2024-10-03_210643/20UPGXM1234567.json +0 -918
- module_qc_tools-2.2.7/Measurements/UNDERSHUNT_PROTECTION/2024-10-03_210646/20UPGXM1234567.json +0 -689
- module_qc_tools-2.2.7/Measurements/UNDERSHUNT_PROTECTION/2024-10-03_210656/20UPGXM1234567.json +0 -926
- module_qc_tools-2.2.7/Measurements/VCAL_CALIBRATION/2024-10-03_210636/20UPGXM1234567.json +0 -2602
- module_qc_tools-2.2.7/Measurements/VCAL_CALIBRATION/2024-10-03_210642/20UPGXM1234567.json +0 -1952
- module_qc_tools-2.2.7/src/module_qc_tools/data/configs/example_merged_vmux.json +0 -156
- module_qc_tools-2.2.7/src/module_qc_tools/data/configs/example_merged_vmux_itkpixv2.json +0 -156
- module_qc_tools-2.2.7/src/module_qc_tools/data/configs/example_separate_vmux.json +0 -160
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/ADC_CALIBRATION.json +0 -54
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/ANALOG_READBACK.json +0 -219
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/DATA_TRANSMISSION.json +0 -51
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/INJECTION_CAPACITANCE.json +0 -54
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/IV_MEASURE.json +0 -42
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/LONG_TERM_STABILITY_DCS.json +0 -81
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/LP_MODE.json +0 -63
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/OVERVOLTAGE_PROTECTION.json +0 -59
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/SLDO.json +0 -65
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/UNDERSHUNT_PROTECTION.json +0 -57
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/VCAL_CALIBRATION.json +0 -55
- module_qc_tools-2.2.7/src/module_qc_tools/data/schema/common.json +0 -985
- module_qc_tools-2.2.7/src/module_qc_tools/measurements/long_term_stability_dcs.py +0 -123
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/.gitignore +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/.gitmodules +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/.linkcheckerrc +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/.pre-commit-config.yaml +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/LICENSE +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/.gitkeep +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/.overrides/main.html +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/.snippets/abbrs.txt +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/.snippets/links.txt +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/assets/css/custom.css +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/development.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/history.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/index.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/meta/authors.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/reference/cli.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/reference/gen_ref_nav.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xIIzI.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fBBc4.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu4mxK.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu72xKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/fonts.css +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/docs/stylesheets/readme.txt +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/emulator/README.md +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/__init__.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/__init__.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/__main__.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/hardware_emulator.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/cli/upload_localdb.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/20UPGXM1234567_Lx_dummy.json +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/connectivity/20UPGXM1234567_Lx_dummy_disabledchip.json +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/configs/controller/specCfg-rd53b.json +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/data/emulator/module_state_template.json +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/__init__.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/data_transmission.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/injection_capacitance.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/measurements/vcal_calibration.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/__init__.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/multimeter.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/ntc.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/power_supply.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/src/module_qc_tools/utils/subprocess_emulator.py +0 -0
- {module_qc_tools-2.2.7 → module_qc_tools-2.3.0}/tests/test_package.py +0 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
stages:
|
|
2
|
+
- autoupdate
|
|
3
|
+
- check
|
|
4
|
+
- test
|
|
5
|
+
- build
|
|
6
|
+
- deploy
|
|
7
|
+
|
|
8
|
+
variables:
|
|
9
|
+
# see https://docs.gitlab.com/ee/ci/caching/#cache-python-dependencies
|
|
10
|
+
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
|
|
11
|
+
PRE_COMMIT_HOME: "$CI_PROJECT_DIR/.cache/pre-commit"
|
|
12
|
+
|
|
13
|
+
cache:
|
|
14
|
+
paths:
|
|
15
|
+
- .cache/pip
|
|
16
|
+
- .cache/pre-commit
|
|
17
|
+
- venv/
|
|
18
|
+
|
|
19
|
+
image: registry.cern.ch/docker.io/library/python:3.11-buster
|
|
20
|
+
before_script:
|
|
21
|
+
# want to set up a virtualenv to cache
|
|
22
|
+
- apt-get install -y --no-install-recommends git
|
|
23
|
+
- python -V
|
|
24
|
+
- git config --global credential.helper 'cache'
|
|
25
|
+
- |
|
|
26
|
+
echo "protocol=https
|
|
27
|
+
host=gitlab.cern.ch
|
|
28
|
+
username=gitlab-ci-token
|
|
29
|
+
password=${CI_JOB_TOKEN}
|
|
30
|
+
" | git credential approve
|
|
31
|
+
- python -m venv venv
|
|
32
|
+
- source venv/bin/activate
|
|
33
|
+
- python -m pip install -U pip pipx
|
|
34
|
+
- python -m pipx ensurepath
|
|
35
|
+
- python -m pip freeze --local
|
|
36
|
+
|
|
37
|
+
# NB: repo-review requires python>=3.10
|
|
38
|
+
review:
|
|
39
|
+
image: registry.cern.ch/docker.io/library/python:3.10-buster
|
|
40
|
+
stage: check
|
|
41
|
+
script:
|
|
42
|
+
- pipx run 'sp-repo-review[cli]' .
|
|
43
|
+
|
|
44
|
+
lint:
|
|
45
|
+
stage: check
|
|
46
|
+
rules:
|
|
47
|
+
- if: $CI_PIPELINE_SOURCE == "push"
|
|
48
|
+
script:
|
|
49
|
+
- pipx run hatch run lint
|
|
50
|
+
|
|
51
|
+
pre-commit:
|
|
52
|
+
stage: check
|
|
53
|
+
variables:
|
|
54
|
+
PRE_COMMIT_HOME: "$CI_PROJECT_DIR/.cache/pre-commit"
|
|
55
|
+
rules:
|
|
56
|
+
- if: $CI_PIPELINE_SOURCE == "push"
|
|
57
|
+
script:
|
|
58
|
+
- pipx run pre-commit run --hook-stage manual --all-files
|
|
59
|
+
cache:
|
|
60
|
+
key:
|
|
61
|
+
files:
|
|
62
|
+
- .pre-commit-config.yaml
|
|
63
|
+
paths:
|
|
64
|
+
- .cache/pre-commit
|
|
65
|
+
|
|
66
|
+
pre-commit-autoupdate:
|
|
67
|
+
stage: autoupdate
|
|
68
|
+
rules:
|
|
69
|
+
- if: $CI_PIPELINE_SOURCE == "schedule"
|
|
70
|
+
when: always
|
|
71
|
+
- if:
|
|
72
|
+
$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
73
|
+
when: manual
|
|
74
|
+
# manual jobs need allow_failure? https://gitlab.com/gitlab-org/gitlab/-/issues/233876
|
|
75
|
+
allow_failure: true
|
|
76
|
+
script:
|
|
77
|
+
- python -m pip install pre-commit
|
|
78
|
+
- python -m pip freeze --local
|
|
79
|
+
- ci/pre-commit-update.sh
|
|
80
|
+
|
|
81
|
+
cache:
|
|
82
|
+
key:
|
|
83
|
+
files:
|
|
84
|
+
- .pre-commit-config.yaml
|
|
85
|
+
paths:
|
|
86
|
+
- .cache/pre-commit
|
|
87
|
+
|
|
88
|
+
tests:
|
|
89
|
+
stage: test
|
|
90
|
+
image: $IMAGE
|
|
91
|
+
script:
|
|
92
|
+
- git clone
|
|
93
|
+
https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools
|
|
94
|
+
- pipx run hatch run +py=${PYTHON_VERSION} dev:test
|
|
95
|
+
parallel:
|
|
96
|
+
matrix:
|
|
97
|
+
- IMAGE: "registry.cern.ch/docker.io/library/python:3.8-buster"
|
|
98
|
+
PYTHON_VERSION: "3.8"
|
|
99
|
+
- IMAGE: "registry.cern.ch/docker.io/library/python:3.9-buster"
|
|
100
|
+
PYTHON_VERSION: "3.9"
|
|
101
|
+
- IMAGE: "registry.cern.ch/docker.io/library/python:3.10-buster"
|
|
102
|
+
PYTHON_VERSION: "3.10"
|
|
103
|
+
- IMAGE: "registry.cern.ch/docker.io/library/python:3.11-buster"
|
|
104
|
+
PYTHON_VERSION: "3.11"
|
|
105
|
+
- IMAGE: "registry.cern.ch/docker.io/library/python:3.12-bullseye"
|
|
106
|
+
PYTHON_VERSION: "3.12"
|
|
107
|
+
|
|
108
|
+
.test:
|
|
109
|
+
image: registry.cern.ch/docker.io/library/python:3.8-buster
|
|
110
|
+
stage: test
|
|
111
|
+
|
|
112
|
+
make-docs:
|
|
113
|
+
stage: test
|
|
114
|
+
image: registry.cern.ch/docker.io/library/python:3.11-bullseye
|
|
115
|
+
rules:
|
|
116
|
+
- if: $CI_PIPELINE_SOURCE == "push"
|
|
117
|
+
script: pipx run hatch run docs:build-check
|
|
118
|
+
|
|
119
|
+
package:
|
|
120
|
+
stage: build
|
|
121
|
+
rules:
|
|
122
|
+
- if: $CI_PIPELINE_SOURCE == "push"
|
|
123
|
+
script:
|
|
124
|
+
- pipx run hatch run build-check
|
|
125
|
+
artifacts:
|
|
126
|
+
paths:
|
|
127
|
+
- dist/
|
|
128
|
+
expire_in: 1 day
|
|
129
|
+
|
|
130
|
+
.deploy_package:
|
|
131
|
+
stage: deploy
|
|
132
|
+
dependencies:
|
|
133
|
+
- package
|
|
134
|
+
script:
|
|
135
|
+
- pipx run hatch run upload
|
|
136
|
+
|
|
137
|
+
deploy_package_gitlab:
|
|
138
|
+
extends: .deploy_package
|
|
139
|
+
rules:
|
|
140
|
+
- if:
|
|
141
|
+
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"
|
|
142
|
+
variables:
|
|
143
|
+
TWINE_REPOSITORY_URL: "https://gitlab.cern.ch/api/v4/projects/${CI_PROJECT_ID}/packages/pypi"
|
|
144
|
+
TWINE_USERNAME: "gitlab-ci-token"
|
|
145
|
+
TWINE_PASSWORD: "${CI_JOB_TOKEN}"
|
|
146
|
+
|
|
147
|
+
deploy_package_pypi:
|
|
148
|
+
extends: .deploy_package
|
|
149
|
+
only:
|
|
150
|
+
- tags
|
|
151
|
+
variables:
|
|
152
|
+
TWINE_REPOSITORY: pypi
|
|
153
|
+
TWINE_USERNAME: __token__
|
|
154
|
+
TWINE_PASSWORD: $PYPI_TOKEN
|
|
155
|
+
|
|
156
|
+
deploy_docs_dev:
|
|
157
|
+
stage: deploy
|
|
158
|
+
resource_group: documentation
|
|
159
|
+
rules:
|
|
160
|
+
- if:
|
|
161
|
+
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"
|
|
162
|
+
script:
|
|
163
|
+
# the next three lines are just to commit and push pages to the project
|
|
164
|
+
- git config --global user.email
|
|
165
|
+
"project_139533_bot_52a0e9bbb1570326242e61cb6cd9d917@noreply.gitlab.cern.ch"
|
|
166
|
+
- git config --global user.name "pre-commit-ci"
|
|
167
|
+
- git remote set-url origin
|
|
168
|
+
"https://__pre-commit_ci_token:${PRE_COMMIT_CI_JOB_TOKEN}@${CI_SERVER_HOST}:${CI_SERVER_PORT}/${CI_PROJECT_PATH}.git"
|
|
169
|
+
# this is the script
|
|
170
|
+
- pipx run hatch run docs:deploy dev
|
|
171
|
+
|
|
172
|
+
deploy_docs_latest:
|
|
173
|
+
stage: deploy
|
|
174
|
+
resource_group: documentation
|
|
175
|
+
only:
|
|
176
|
+
- tags
|
|
177
|
+
script:
|
|
178
|
+
# the next three lines are just to commit and push pages to the project
|
|
179
|
+
- git config --global user.email
|
|
180
|
+
"project_139533_bot_52a0e9bbb1570326242e61cb6cd9d917@noreply.gitlab.cern.ch"
|
|
181
|
+
- git config --global user.name "pre-commit-ci"
|
|
182
|
+
- git remote set-url origin
|
|
183
|
+
"https://__pre-commit_ci_token:${PRE_COMMIT_CI_JOB_TOKEN}@${CI_SERVER_HOST}:${CI_SERVER_PORT}/${CI_PROJECT_PATH}.git"
|
|
184
|
+
# this is the script
|
|
185
|
+
- VERSION=$(cut -d '.' -f 1,2 <<< "${CI_COMMIT_TAG}")
|
|
186
|
+
- IS_LATEST=$([[ "${CI_COMMIT_TAG}" == *"rc"* ]] && echo "" || echo
|
|
187
|
+
"latest")
|
|
188
|
+
- echo "Building and deploying docs for ${VERSION}"
|
|
189
|
+
- pipx run hatch run docs:deploy "${VERSION}" ${IS_LATEST:+"$IS_LATEST"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: module_qc_tools
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: Module qc tools
|
|
5
5
|
Project-URL: Homepage, https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools
|
|
6
6
|
Project-URL: Bug Tracker, https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/issues
|
|
7
7
|
Project-URL: Source, https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools
|
|
8
|
-
Project-URL: Documentation, https://atlas-itk-pixel-mqt.docs.cern.ch/2.
|
|
8
|
+
Project-URL: Documentation, https://atlas-itk-pixel-mqt.docs.cern.ch/2.3/
|
|
9
9
|
Author-email: Jay Chan <jay.chan@cern.ch>
|
|
10
10
|
Maintainer-email: Giordon Stark <gstark@cern.ch>
|
|
11
11
|
License: Copyright (c) 2018 ATLAS ITk Pixel Modules
|
|
@@ -34,7 +34,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
34
34
|
Requires-Python: >=3.7
|
|
35
35
|
Requires-Dist: check-jsonschema
|
|
36
36
|
Requires-Dist: importlib-resources; python_version < '3.9'
|
|
37
|
-
Requires-Dist: module-qc-data-tools>=1.0.
|
|
37
|
+
Requires-Dist: module-qc-data-tools>=1.0.22
|
|
38
|
+
Requires-Dist: module-qc-database-tools>=2.4.8
|
|
38
39
|
Requires-Dist: numpy
|
|
39
40
|
Requires-Dist: pre-commit
|
|
40
41
|
Requires-Dist: requests
|
|
@@ -44,7 +45,7 @@ Requires-Dist: typer>=0.9.0
|
|
|
44
45
|
Requires-Dist: urllib3<2,>=1.26.11; 'el7.x86_64' in platform_release
|
|
45
46
|
Description-Content-Type: text/markdown
|
|
46
47
|
|
|
47
|
-
# module-qc-tools v2.
|
|
48
|
+
# module-qc-tools v2.3.0
|
|
48
49
|
|
|
49
50
|
A general python tool for running ITkPixV1.1 and ITkPixV2 module QC tests
|
|
50
51
|
|
|
@@ -7,23 +7,31 @@ table tr td:first-of-type {
|
|
|
7
7
|
|
|
8
8
|
# Configuration and external commands
|
|
9
9
|
|
|
10
|
-
All the configuration/settings are defined in
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
All the configuration/settings are defined in two json files: one for the
|
|
11
|
+
hardware and one for the measurements. The hardware config is specific to the
|
|
12
|
+
site and needs to be modified, but the default measurement config should not
|
|
13
|
+
modified when running standard module QC. Examples are provided in
|
|
14
|
+
`$(module-qc-tools --prefix)/configs/`, such as:
|
|
14
15
|
|
|
15
|
-
- `
|
|
16
|
-
- `
|
|
17
|
-
- `example_separate_vmux.json`
|
|
16
|
+
- `hw_config_example_merged_vmux_itkpixv2.json`
|
|
17
|
+
- `meas_config.json`
|
|
18
18
|
|
|
19
19
|
!!! note
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
There are 4 example hardware configs for the different combinations of V1 or V2 modules and a merged or separate VMUX:
|
|
22
|
+
- `hw_config_example_merged_vmux_itkpixv2.json`
|
|
23
|
+
- `hw_config_example_merged_vmux_v1.json`
|
|
24
|
+
- `hw_config_example_separate_vmux_itkpixv2.json`
|
|
25
|
+
- `hw_config_example_separate_vmux_v1.json`
|
|
26
|
+
|
|
27
|
+
The only difference between the `_v1.json` hw_config and the `_itkpixv2.json` lies in the paths for the chip-specific `lpm_digitalscan` and `read_ringosc_exe`. For more info see below.
|
|
22
28
|
|
|
23
29
|
??? abstract "reference json configuration"
|
|
24
30
|
|
|
25
|
-
```json title="$(module-qc-tools --prefix)/configs/
|
|
26
|
-
--8<-- "
|
|
31
|
+
```json title="$(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux_itkpixv2.json"
|
|
32
|
+
--8<-- "hw_config_example_merged_vmux_itkpixv2.json"
|
|
33
|
+
json title="$(module-qc-tools --prefix)/configs/meas_config.json"
|
|
34
|
+
--8<-- "meas_config.json"
|
|
27
35
|
```
|
|
28
36
|
|
|
29
37
|
The major blocks (e.g. `yarr`, `power_supply`, `multimeter`, `ntc`) correspond
|
|
@@ -92,7 +92,7 @@ package.
|
|
|
92
92
|
$ python -m venv venv
|
|
93
93
|
$ source venv/bin/activate
|
|
94
94
|
$ python -m pip install -U pip
|
|
95
|
-
$ python -m pip install -U pip module-qc-tools==2.
|
|
95
|
+
$ python -m pip install -U pip module-qc-tools==2.3.0
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
### via uv
|
|
@@ -101,7 +101,7 @@ $ python -m pip install -U pip module-qc-tools==2.2.7
|
|
|
101
101
|
$ python -m venv venv
|
|
102
102
|
$ source venv/bin/activate
|
|
103
103
|
$ python -m pip install uv
|
|
104
|
-
$ uv pip install module-qc-tools==2.
|
|
104
|
+
$ uv pip install module-qc-tools==2.3.0
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
# Usage
|
|
@@ -50,7 +50,7 @@ Measurements/
|
|
|
50
50
|
└── ...
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
The test-type of each measurement is the corresponding test-
|
|
53
|
+
The test-type of each measurement is the corresponding test-mode used in the
|
|
54
54
|
Production Data Base. The naming of each measurement script is chosen to be the
|
|
55
55
|
same as the test-type. The timestamp is chosen to be the start time of the
|
|
56
56
|
measurement.
|
|
@@ -95,7 +95,7 @@ Please use `mqdbt` to upload measurements to localDB.
|
|
|
95
95
|
|
|
96
96
|
This script will test the sensor leakage current vs. reverse bias voltage
|
|
97
97
|
(`task = IV_MEASURE`) as specified in the input configuration json file (i.e.
|
|
98
|
-
|
|
98
|
+
'$(module-qc-tools --prefix)/configs/meas_config.json').
|
|
99
99
|
|
|
100
100
|
**Configuration settings**
|
|
101
101
|
|
|
@@ -110,13 +110,13 @@ This script will test the sensor leakage current vs. reverse bias voltage
|
|
|
110
110
|
??? example
|
|
111
111
|
|
|
112
112
|
```
|
|
113
|
-
measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/
|
|
113
|
+
measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
??? example "emulator"
|
|
117
117
|
|
|
118
118
|
```
|
|
119
|
-
measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/
|
|
119
|
+
measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
|
|
120
120
|
```
|
|
121
121
|
|
|
122
122
|
## Eye Diagram
|
|
@@ -144,8 +144,8 @@ For more information please refer to the
|
|
|
144
144
|
- [`measurement-ADC-CALIBRATION`](reference/cli.md#mqt-measurement-adc-calibration)
|
|
145
145
|
|
|
146
146
|
This script will run the ADC calibration (`task = ADC_CALIBRATION`) as specified
|
|
147
|
-
in the input configuration json file (i.e.
|
|
148
|
-
|
|
147
|
+
in the input configuration json file (i.e. '$(module-qc-tools
|
|
148
|
+
--prefix)/configs/meas_config.json').
|
|
149
149
|
|
|
150
150
|
**Configuration settings**
|
|
151
151
|
|
|
@@ -158,13 +158,13 @@ in the input configuration json file (i.e.
|
|
|
158
158
|
??? example
|
|
159
159
|
|
|
160
160
|
```
|
|
161
|
-
measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/
|
|
161
|
+
measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
??? example "emulator"
|
|
165
165
|
|
|
166
166
|
```
|
|
167
|
-
measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/
|
|
167
|
+
measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
168
168
|
```
|
|
169
169
|
|
|
170
170
|
## Analog readback
|
|
@@ -176,9 +176,9 @@ in the input configuration json file (i.e.
|
|
|
176
176
|
This script will measure all internal voltages available through VMUX and IMUX,
|
|
177
177
|
measure the chip temperature, and measure VDDA/VDDD/ROSC vs Trim. channels. The
|
|
178
178
|
scan settings are defined in the `task = ANALOG_READBACK` block of the input
|
|
179
|
-
configuration file (i.e.
|
|
180
|
-
|
|
181
|
-
|
|
179
|
+
configuration file (i.e. '$(module-qc-tools
|
|
180
|
+
--prefix)/configs/meas_config.json'). The NTC needs to be set in order to run
|
|
181
|
+
this script, so that the temperature can be read.
|
|
182
182
|
|
|
183
183
|
**Configuration settings**
|
|
184
184
|
|
|
@@ -201,13 +201,13 @@ to be set in order to run this script, so that the temperature can be read.
|
|
|
201
201
|
??? example
|
|
202
202
|
|
|
203
203
|
```
|
|
204
|
-
measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/
|
|
204
|
+
measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
205
205
|
```
|
|
206
206
|
|
|
207
207
|
??? example "emulator"
|
|
208
208
|
|
|
209
209
|
```
|
|
210
|
-
measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/
|
|
210
|
+
measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
|
|
211
211
|
```
|
|
212
212
|
|
|
213
213
|
## SLDO VI
|
|
@@ -217,8 +217,8 @@ to be set in order to run this script, so that the temperature can be read.
|
|
|
217
217
|
- [`measurement-SLDO`](reference/cli.md#mqt-measurement-sldo)
|
|
218
218
|
|
|
219
219
|
This script will run the VI scans (`task = SLDO`) as specified in the input
|
|
220
|
-
configuration json file (i.e.
|
|
221
|
-
|
|
220
|
+
configuration json file (i.e. '$(module-qc-tools
|
|
221
|
+
--prefix)/configs/meas_config.json').
|
|
222
222
|
|
|
223
223
|
**Configuration settings**
|
|
224
224
|
|
|
@@ -234,13 +234,13 @@ configuration json file (i.e.
|
|
|
234
234
|
??? example
|
|
235
235
|
|
|
236
236
|
```
|
|
237
|
-
measurement-SLDO -c $(module-qc-tools --prefix)/configs/
|
|
237
|
+
measurement-SLDO -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
238
238
|
```
|
|
239
239
|
|
|
240
240
|
??? example "emulator"
|
|
241
241
|
|
|
242
242
|
```
|
|
243
|
-
measurement-SLDO -c $(module-qc-tools --prefix)/configs/
|
|
243
|
+
measurement-SLDO -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
|
|
244
244
|
```
|
|
245
245
|
|
|
246
246
|
## VCal Calibration
|
|
@@ -250,8 +250,8 @@ configuration json file (i.e.
|
|
|
250
250
|
- [`measurement-VCAL-CALIBRATION`](reference/cli.md#mqt-measurement-vcal-calibration)
|
|
251
251
|
|
|
252
252
|
This script will run the VCal calibration (`task = VCAL_CALIBRATION`) as
|
|
253
|
-
specified in the input configuration json file (i.e.
|
|
254
|
-
|
|
253
|
+
specified in the input configuration json file (i.e. '$(module-qc-tools
|
|
254
|
+
--prefix)/configs/meas_config.json').
|
|
255
255
|
|
|
256
256
|
**Configuration settings**
|
|
257
257
|
|
|
@@ -266,13 +266,13 @@ specified in the input configuration json file (i.e.
|
|
|
266
266
|
??? example
|
|
267
267
|
|
|
268
268
|
```
|
|
269
|
-
measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/
|
|
269
|
+
measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
270
270
|
```
|
|
271
271
|
|
|
272
272
|
??? example "emulator"
|
|
273
273
|
|
|
274
274
|
```
|
|
275
|
-
measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/
|
|
275
|
+
measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
276
276
|
```
|
|
277
277
|
|
|
278
278
|
## Injection Capacitance
|
|
@@ -283,7 +283,7 @@ specified in the input configuration json file (i.e.
|
|
|
283
283
|
|
|
284
284
|
This script will run the injection capacitance measurement
|
|
285
285
|
(`task = INJECTION_CAPACITANCE`) as specified in the input configuration json
|
|
286
|
-
file (i.e.
|
|
286
|
+
file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
|
|
287
287
|
|
|
288
288
|
**Configuration settings**
|
|
289
289
|
|
|
@@ -296,13 +296,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
296
296
|
??? example
|
|
297
297
|
|
|
298
298
|
```
|
|
299
|
-
measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/
|
|
299
|
+
measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
300
300
|
```
|
|
301
301
|
|
|
302
302
|
??? example "emulator"
|
|
303
303
|
|
|
304
304
|
```
|
|
305
|
-
measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/
|
|
305
|
+
measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
306
306
|
```
|
|
307
307
|
|
|
308
308
|
## Low Power Mode
|
|
@@ -312,8 +312,8 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
312
312
|
- [`measurement-LP-MODE`](reference/cli.md#mqt-measurement-lp-mode)
|
|
313
313
|
|
|
314
314
|
This script will run the low power mode test (`task = LP_MODE`) as specified in
|
|
315
|
-
the input configuration json file (i.e.
|
|
316
|
-
|
|
315
|
+
the input configuration json file (i.e. '$(module-qc-tools
|
|
316
|
+
--prefix)/configs/meas_config.json').
|
|
317
317
|
|
|
318
318
|
**Configuration settings**
|
|
319
319
|
|
|
@@ -327,13 +327,13 @@ the input configuration json file (i.e.
|
|
|
327
327
|
??? example
|
|
328
328
|
|
|
329
329
|
```
|
|
330
|
-
measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/
|
|
330
|
+
measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
|
|
331
331
|
```
|
|
332
332
|
|
|
333
333
|
??? example "emulator"
|
|
334
334
|
|
|
335
335
|
```
|
|
336
|
-
measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/
|
|
336
|
+
measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
337
337
|
```
|
|
338
338
|
|
|
339
339
|
## Overvoltage Protection
|
|
@@ -344,7 +344,7 @@ the input configuration json file (i.e.
|
|
|
344
344
|
|
|
345
345
|
This script will test the Overvoltage Protection (OVP)
|
|
346
346
|
(`task = OVERVOLTAGE_PROTECTION`) as specified in the input configuration json
|
|
347
|
-
file (i.e.
|
|
347
|
+
file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
|
|
348
348
|
|
|
349
349
|
**Configuration settings**
|
|
350
350
|
|
|
@@ -358,13 +358,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
358
358
|
??? example
|
|
359
359
|
|
|
360
360
|
```
|
|
361
|
-
measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/
|
|
361
|
+
measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
|
|
362
362
|
```
|
|
363
363
|
|
|
364
364
|
??? example "emulator"
|
|
365
365
|
|
|
366
366
|
```
|
|
367
|
-
measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/
|
|
367
|
+
measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
|
|
368
368
|
```
|
|
369
369
|
|
|
370
370
|
## Undershunt Protection
|
|
@@ -375,7 +375,7 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
375
375
|
|
|
376
376
|
This script will test the Undershunt Protection (USP)
|
|
377
377
|
(`task = UNDERSHUNT_PROTECTION`) as specified in the input configuration json
|
|
378
|
-
file (i.e.
|
|
378
|
+
file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
|
|
379
379
|
|
|
380
380
|
**Configuration settings**
|
|
381
381
|
|
|
@@ -389,13 +389,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
389
389
|
??? example
|
|
390
390
|
|
|
391
391
|
```
|
|
392
|
-
measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/
|
|
392
|
+
measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
|
|
393
393
|
```
|
|
394
394
|
|
|
395
395
|
??? example "emulator"
|
|
396
396
|
|
|
397
397
|
```
|
|
398
|
-
measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/
|
|
398
|
+
measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
|
|
399
399
|
```
|
|
400
400
|
|
|
401
401
|
## Data Transmission
|
|
@@ -405,8 +405,8 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
405
405
|
- [`measurement-DATA-TRANSMISSION`](reference/cli.md#mqt-measurement-data-transmission)
|
|
406
406
|
|
|
407
407
|
This script will run the data transmission (`task = DATA_TRANSMISSION`) as
|
|
408
|
-
specified in the input configuration json file (i.e.
|
|
409
|
-
|
|
408
|
+
specified in the input configuration json file (i.e. '$(module-qc-tools
|
|
409
|
+
--prefix)/configs/meas_config.json').
|
|
410
410
|
|
|
411
411
|
**Configuration settings**
|
|
412
412
|
|
|
@@ -417,13 +417,13 @@ specified in the input configuration json file (i.e.
|
|
|
417
417
|
??? example
|
|
418
418
|
|
|
419
419
|
```
|
|
420
|
-
measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/
|
|
420
|
+
measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
421
421
|
```
|
|
422
422
|
|
|
423
423
|
??? example "emulator"
|
|
424
424
|
|
|
425
425
|
```
|
|
426
|
-
measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/
|
|
426
|
+
measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
427
427
|
```
|
|
428
428
|
|
|
429
429
|
## Long-term stability DCS
|
|
@@ -434,7 +434,7 @@ specified in the input configuration json file (i.e.
|
|
|
434
434
|
|
|
435
435
|
This adds the ability to run the long-term stability dcs measurement
|
|
436
436
|
(`task = LONG_TERM_STABILITY_DCS`) as specified in the input configuration json
|
|
437
|
-
file (i.e.
|
|
437
|
+
file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
|
|
438
438
|
|
|
439
439
|
**Configuration settings**
|
|
440
440
|
|
|
@@ -446,5 +446,11 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
|
|
|
446
446
|
??? example
|
|
447
447
|
|
|
448
448
|
```
|
|
449
|
-
measurement-LONG-TERM-STABILITY-DCS -c $(module-qc-tools --prefix)/configs/
|
|
449
|
+
measurement-LONG-TERM-STABILITY-DCS -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
??? example "emulator"
|
|
453
|
+
|
|
454
|
+
```
|
|
455
|
+
measurement-LONG-TERM-STABILITY-DCS -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
|
|
450
456
|
```
|
|
@@ -162,7 +162,11 @@ markdown_extensions:
|
|
|
162
162
|
base_path:
|
|
163
163
|
- docs/.snippets
|
|
164
164
|
- README.md
|
|
165
|
-
- src/module_qc_tools/data/configs/
|
|
165
|
+
- src/module_qc_tools/data/configs/meas_config.json
|
|
166
|
+
- src/module_qc_tools/data/configs/hw_config_example_merged_vmux_itkpixv2.json
|
|
167
|
+
- src/module_qc_tools/data/configs/hw_config_example_separate_vmux_itkpixv2.json
|
|
168
|
+
- src/module_qc_tools/data/configs/hw_config_example_merged_vmux_v1.json
|
|
169
|
+
- src/module_qc_tools/data/configs/hw_config_example_separate_vmux_v1.json
|
|
166
170
|
auto_append:
|
|
167
171
|
- links.txt
|
|
168
172
|
- abbrs.txt
|
|
@@ -20,7 +20,8 @@ dependencies = [
|
|
|
20
20
|
"tabulate",
|
|
21
21
|
"pre-commit",
|
|
22
22
|
"check-jsonschema",
|
|
23
|
-
"module-qc-data-tools >= 1.0.
|
|
23
|
+
"module-qc-data-tools >= 1.0.22",
|
|
24
|
+
"module-qc-database-tools >= 2.4.8",
|
|
24
25
|
'importlib_resources; python_version < "3.9"',
|
|
25
26
|
"requests",
|
|
26
27
|
'urllib3>=1.26.11,<2; "el7.x86_64" in platform_release',
|
|
@@ -37,7 +38,7 @@ classifiers = [
|
|
|
37
38
|
"Homepage" = "https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools"
|
|
38
39
|
"Bug Tracker" = "https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/issues"
|
|
39
40
|
"Source" = "https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools"
|
|
40
|
-
"Documentation" = "https://atlas-itk-pixel-mqt.docs.cern.ch/2.
|
|
41
|
+
"Documentation" = "https://atlas-itk-pixel-mqt.docs.cern.ch/2.3/"
|
|
41
42
|
|
|
42
43
|
[project.scripts]
|
|
43
44
|
module-qc-tools = "module_qc_tools.cli:app"
|
|
@@ -110,7 +111,7 @@ dependencies = [
|
|
|
110
111
|
test = "pytest -ra {args}"
|
|
111
112
|
|
|
112
113
|
[[tool.hatch.envs.dev.matrix]]
|
|
113
|
-
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8"]
|
|
114
|
+
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8"]
|
|
114
115
|
|
|
115
116
|
[tool.hatch.envs.docs]
|
|
116
117
|
template = "docs"
|