module-qc-tools 2.2.8__tar.gz → 2.4.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.
Files changed (156) hide show
  1. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/PKG-INFO +6 -5
  2. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/README.md +1 -1
  3. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/config.md +45 -30
  4. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/history.md +46 -0
  5. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/install.md +2 -2
  6. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/measurements.md +60 -52
  7. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/mkdocs.yml +5 -1
  8. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/pyproject.toml +5 -3
  9. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/_version.py +9 -4
  10. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/ADC_CALIBRATION.py +25 -6
  11. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/ANALOG_READBACK.py +40 -5
  12. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/DATA_TRANSMISSION.py +55 -14
  13. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/INJECTION_CAPACITANCE.py +17 -5
  14. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/IV_MEASURE.py +17 -5
  15. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/LONG_TERM_STABILITY_DCS.py +17 -5
  16. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/LP_MODE.py +25 -6
  17. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/OVERVOLTAGE_PROTECTION.py +17 -5
  18. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/SLDO.py +25 -6
  19. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/UNDERSHUNT_PROTECTION.py +17 -5
  20. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/VCAL_CALIBRATION.py +17 -5
  21. module_qc_tools-2.4.0/src/module_qc_tools/cli/get_nominal_current.py +46 -0
  22. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/globals.py +53 -6
  23. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/hardware_emulator.py +182 -85
  24. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/main.py +4 -0
  25. module_qc_tools-2.4.0/src/module_qc_tools/cli/split_old_config.py +89 -0
  26. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_emulator_merged_vmux.json +55 -0
  27. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_felix_merged_vmux_itkpixv2.json +62 -0
  28. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_felix_merged_vmux_v1.json +62 -0
  29. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_felix_separate_vmux_itkpixv2.json +65 -0
  30. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_felix_separate_vmux_v1.json +65 -0
  31. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_merged_vmux_itkpixv2.json +61 -0
  32. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_merged_vmux_v1.json +61 -0
  33. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_separate_vmux_itkpixv2.json +64 -0
  34. module_qc_tools-2.4.0/src/module_qc_tools/data/configs/hw_config_example_separate_vmux_v1.json +64 -0
  35. module_qc_tools-2.2.8/src/module_qc_tools/data/configs/emulator_merged_vmux.json → module_qc_tools-2.4.0/src/module_qc_tools/data/configs/meas_config.json +36 -73
  36. module_qc_tools-2.4.0/src/module_qc_tools/data/emulator/configs/connectivity/20UPGXM1234567_info.json +7 -0
  37. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/schema/common.json +91 -6
  38. module_qc_tools-2.2.8/src/module_qc_tools/data/schema/config.json → module_qc_tools-2.4.0/src/module_qc_tools/data/schema/hw_config.json +104 -55
  39. module_qc_tools-2.4.0/src/module_qc_tools/data/schema/meas_config.json +336 -0
  40. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/adc_calibration.py +21 -35
  41. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/analog_readback.py +102 -78
  42. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/data_transmission.py +100 -16
  43. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/iv_measure.py +7 -2
  44. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/long_term_stability_dcs.py +10 -3
  45. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/lp_mode.py +2 -1
  46. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/sldo.py +2 -1
  47. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/misc.py +66 -19
  48. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/yarr.py +73 -13
  49. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tbump.toml +2 -2
  50. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_emulator.py +3 -3
  51. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_measurements.py +18 -5
  52. module_qc_tools-2.2.8/src/module_qc_tools/data/configs/example_merged_vmux.json +0 -156
  53. module_qc_tools-2.2.8/src/module_qc_tools/data/configs/example_merged_vmux_itkpixv2.json +0 -156
  54. module_qc_tools-2.2.8/src/module_qc_tools/data/configs/example_separate_vmux.json +0 -160
  55. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/.gitignore +0 -0
  56. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/.gitlab-ci.yml +0 -0
  57. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/.gitmodules +0 -0
  58. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/.linkcheckerrc +0 -0
  59. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/.pre-commit-config.yaml +0 -0
  60. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/LICENSE +0 -0
  61. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/.gitkeep +0 -0
  62. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/.overrides/main.html +0 -0
  63. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/.snippets/abbrs.txt +0 -0
  64. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/.snippets/links.txt +0 -0
  65. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/assets/css/custom.css +0 -0
  66. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/development.md +0 -0
  67. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/index.md +0 -0
  68. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/meta/authors.md +0 -0
  69. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/reference/cli.md +0 -0
  70. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/reference/gen_ref_nav.py +0 -0
  71. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 +0 -0
  72. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 +0 -0
  73. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 +0 -0
  74. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 +0 -0
  75. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 +0 -0
  76. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 +0 -0
  77. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 +0 -0
  78. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 +0 -0
  79. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 +0 -0
  80. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 +0 -0
  81. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 +0 -0
  82. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 +0 -0
  83. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 +0 -0
  84. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 +0 -0
  85. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 +0 -0
  86. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 +0 -0
  87. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 +0 -0
  88. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 +0 -0
  89. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xIIzI.woff2 +0 -0
  90. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 +0 -0
  91. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 +0 -0
  92. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 +0 -0
  93. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fBBc4.woff2 +0 -0
  94. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 +0 -0
  95. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 +0 -0
  96. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 +0 -0
  97. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 +0 -0
  98. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 +0 -0
  99. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 +0 -0
  100. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 +0 -0
  101. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 +0 -0
  102. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 +0 -0
  103. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 +0 -0
  104. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 +0 -0
  105. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 +0 -0
  106. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 +0 -0
  107. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu4mxK.woff2 +0 -0
  108. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 +0 -0
  109. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu72xKOzY.woff2 +0 -0
  110. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 +0 -0
  111. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 +0 -0
  112. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 +0 -0
  113. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 +0 -0
  114. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 +0 -0
  115. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 +0 -0
  116. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 +0 -0
  117. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 +0 -0
  118. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 +0 -0
  119. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 +0 -0
  120. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 +0 -0
  121. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 +0 -0
  122. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 +0 -0
  123. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 +0 -0
  124. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 +0 -0
  125. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/fonts.css +0 -0
  126. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/docs/stylesheets/readme.txt +0 -0
  127. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/emulator/README.md +0 -0
  128. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/__init__.py +0 -0
  129. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/__init__.py +0 -0
  130. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/__main__.py +0 -0
  131. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/cli/upload_localdb.py +0 -0
  132. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/console.py +0 -0
  133. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/20UPGXM1234567_Lx_dummy.json +0 -0
  134. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/20UPGXM1234567_Lx_dummy_disabledchip.json +0 -0
  135. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip1.json +0 -0
  136. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip2.json +0 -0
  137. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip3.json +0 -0
  138. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/connectivity/chip/dummy_chip4.json +0 -0
  139. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/configs/controller/specCfg-rd53b.json +0 -0
  140. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/data/emulator/module_state_template.json +0 -0
  141. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/__init__.py +0 -0
  142. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/injection_capacitance.py +0 -0
  143. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/overvoltage_protection.py +0 -0
  144. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/undershunt_protection.py +0 -0
  145. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/measurements/vcal_calibration.py +0 -0
  146. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/__init__.py +0 -0
  147. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/hardware_control_base.py +0 -0
  148. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/multimeter.py +0 -0
  149. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/ntc.py +0 -0
  150. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/power_supply.py +0 -0
  151. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/src/module_qc_tools/utils/subprocess_emulator.py +0 -0
  152. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/conftest.py +0 -0
  153. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_package.py +0 -0
  154. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_schema/cutter_pcb_tab.json +0 -0
  155. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_schema/cutter_pcb_tab_BAD.json +0 -0
  156. {module_qc_tools-2.2.8 → module_qc_tools-2.4.0}/tests/test_schema.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: module_qc_tools
3
- Version: 2.2.8
3
+ Version: 2.4.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.2/
8
+ Project-URL: Documentation, https://atlas-itk-pixel-mqt.docs.cern.ch/2.4/
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,17 +34,18 @@ 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.22
37
+ Requires-Dist: module-qc-data-tools>=1.0.23
38
+ Requires-Dist: module-qc-database-tools>=2.5.0rc0
38
39
  Requires-Dist: numpy
39
40
  Requires-Dist: pre-commit
40
41
  Requires-Dist: requests
41
42
  Requires-Dist: rich
42
43
  Requires-Dist: tabulate
43
44
  Requires-Dist: typer>=0.9.0
44
- Requires-Dist: urllib3<2,>=1.26.11; 'el7.x86_64' in platform_release
45
+ Requires-Dist: urllib3<2,>=1.26.20; 'el7.x86_64' in platform_release
45
46
  Description-Content-Type: text/markdown
46
47
 
47
- # module-qc-tools v2.2.8
48
+ # module-qc-tools v2.4.0
48
49
 
49
50
  A general python tool for running ITkPixV1.1 and ITkPixV2 module QC tests
50
51
 
@@ -1,4 +1,4 @@
1
- # module-qc-tools v2.2.8
1
+ # module-qc-tools v2.4.0
2
2
 
3
3
  A general python tool for running ITkPixV1.1 and ITkPixV2 module QC tests
4
4
 
@@ -7,23 +7,33 @@ table tr td:first-of-type {
7
7
 
8
8
  # Configuration and external commands
9
9
 
10
- All the configuration/settings are defined in a single json file. The layer
11
- information needed for the different power settings is extracted from the
12
- module's serial number. Examples are provided in
13
- `$(module-qc-tools --prefix)/configs/`:
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
- - `example_merged_vmux.json`
16
- - `example_merged_vmux_itkpixv2.json`
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
- the only difference between the normal config and the `_itkpixv2.json` lies in the paths for the chip-specific `lpm_digitalscan` and `read_ringosc_exe`. For more info see below.
21
+ There are 4 example hardware configs for the different combinations of V1 or V2 modules and a merged or separate VMUX:
22
+
23
+ - `hw_config_example_merged_vmux_itkpixv2.json`
24
+ - `hw_config_example_merged_vmux_v1.json`
25
+ - `hw_config_example_separate_vmux_itkpixv2.json`
26
+ - `hw_config_example_separate_vmux_v1.json`
27
+
28
+ 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
29
 
23
30
  ??? abstract "reference json configuration"
24
31
 
25
- ```json title="$(module-qc-tools --prefix)/configs/example_merged_vmux.json"
26
- --8<-- "example_merged_vmux.json"
32
+ ```json title="$(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux_itkpixv2.json"
33
+ --8<-- "hw_config_example_merged_vmux_itkpixv2.json"
34
+ ```
35
+ ```json title="$(module-qc-tools --prefix)/configs/meas_config.json"
36
+ --8<-- "meas_config.json"
27
37
  ```
28
38
 
29
39
  The major blocks (e.g. `yarr`, `power_supply`, `multimeter`, `ntc`) correspond
@@ -33,28 +43,31 @@ following sections. The `task` block specifies the settings of each scan
33
43
  performed by the scripts, and will be explained in
34
44
  [measurements](measurements.md).
35
45
 
36
- ## yarr
46
+ ## Hardware Configuration
47
+
48
+ ### yarr
37
49
 
38
50
  The `yarr` block specifies the path to the `YARR` repository as well as the
39
51
  corresponding YARR configuration files.
40
52
 
41
53
  **Configuration settings**
42
54
 
43
- | Name | Description |
44
- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
45
- | `run_dir` | path (relative or absolute) to the directory where `YARR` commands should be run |
46
- | `controller` | path (relative to `run_dir` or absolute) to the controller file |
47
- | `scanConsole_exe` | path (relative to `run_dir` or absolute) to the `scanConsole` executable |
48
- | `write_register_exe` | path (relative to `run_dir` or absolute) to the `write_register` executable |
49
- | `read_register_exe` | path (relative to `run_dir` or absolute) to the `read_register` executable |
50
- | `read_adc_exe` | path (relative to `run_dir` or absolute) to the `read_adc` executable |
51
- | `switchLPM_exe` | path (relative to `run_dir` or absolute) to the `switchLPM` executable |
52
- | `lpm_digitalscan` | path (relative to `run_dir` or absolute) to the low-power mode digital scan in YARR; for ITkPix v2, make sure that the path points to the correct scan config directory, e.g. `"configs/scans/itkpixv2/lpm_digitalscan.json"` |
53
- | `read_ringosc_exe` | path (relative to `run_dir` or absolute) to the `Rd53bReadRingosc` or `Itkpixv2ReadRingosc` executable in YARR; for ITkPix v2, make sure the path points to the executable for the correct chip, e.g. `"./bin/Itkpixv2ReadRingosc"` |
54
- | `eyeDiagram_exe` | path (relative to `run_dir` or absolute) to the `eyeDiagram` executable in YARR |
55
- | `success_code` | exit status that indicates success. The default is 0 besides `configure`, which has exit status 1 for success. The user do not need to set the `success_code` as the default in QC software is synchronized with YARR. |
56
-
57
- ## power_supply
55
+ | Name | Description |
56
+ | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
57
+ | `run_dir` | path (relative or absolute) to the directory where `YARR` commands should be run |
58
+ | `controller` | path (relative to `run_dir` or absolute) to the controller file |
59
+ | `scanConsole_exe` | path (relative to `run_dir` or absolute) to the `scanConsole` executable |
60
+ | `write_register_exe` | path (relative to `run_dir` or absolute) to the `write_register` executable |
61
+ | `read_register_exe` | path (relative to `run_dir` or absolute) to the `read_register` executable |
62
+ | `read_adc_exe` | path (relative to `run_dir` or absolute) to the `read_adc` executable |
63
+ | `switchLPM_exe` | path (relative to `run_dir` or absolute) to the `switchLPM` executable |
64
+ | `lpm_digitalscan` | path (relative to `run_dir` or absolute) to the low-power mode digital scan in YARR; for ITkPix v2, make sure that the path points to the correct scan config directory, e.g. `"configs/scans/itkpixv2/lpm_digitalscan.json"` |
65
+ | `read_ringosc_exe` | path (relative to `run_dir` or absolute) to the `Rd53bReadRingosc` or `Itkpixv2ReadRingosc` executable in YARR; for ITkPix v2, make sure the path points to the executable for the correct chip, e.g. `"./bin/Itkpixv2ReadRingosc"` |
66
+ | `eyeDiagram_exe` | path (relative to `run_dir` or absolute) to the `eyeDiagram` executable in YARR |
67
+ | `"dataMergingCheck_exe"` | path (relative to `run_dir` or absolute) to the `dataMergingCheck` executable in YARR |
68
+ | `success_code` | exit status that indicates success. The default is 0 besides `configure`, which has exit status 1 for success. The user do not need to set the `success_code` as the default in QC software is synchronized with YARR. |
69
+
70
+ ### power_supply
58
71
 
59
72
  The `power_supply` block specifies the path and the commands for handling the
60
73
  low voltage power supply
@@ -75,7 +88,7 @@ low voltage power supply
75
88
  | `checkTarget_timeout` | after each `set_cmd` call, `measI_cmd` is called to check if the target is reached, if not after `checkTarget_timeout` (in sec.), an exception is raised |
76
89
  | `success_code` | exit status that indicates success. The default is 0. |
77
90
 
78
- ## high_voltage
91
+ ### high_voltage
79
92
 
80
93
  Similar to the `power_supply` block, the `high_voltage` block specifies the path
81
94
  and the commands for handling the high voltage power supply needed for leakage
@@ -90,7 +103,7 @@ current vs. bias voltage (IV) measurements.
90
103
  | `polarity` | indicator if normal polarity (default 1) or reverse polarity (-1) is used. Can also take a command that returns a value, e.g. `"polarity": "echo 1"`. For power supplies that accept and output both positive and negative values of the bias voltage, the polarity is `1`. For power supplies that only accept and output a single polarity, this setting is `-1` and the wiring should be adapted accordingly. |
91
104
  | `checkTarget_timeout` | after each `set_cmd` call, `measV_cmd` is called to check if the target is reached, if not after `checkTarget_timeout` (in sec.), an exception is raised |
92
105
 
93
- ## multimeter
106
+ ### multimeter
94
107
 
95
108
  The `multimeter` block specifies the path and the commands for handling the
96
109
  multimeter
@@ -104,7 +117,7 @@ multimeter
104
117
  | `n_try` | number of re-tries in case the script fails to read from the multimeter |
105
118
  | `success_code` | exit status that indicates success. The default is 0. |
106
119
 
107
- ## ntc
120
+ ### ntc
108
121
 
109
122
  The `ntc` block specifies the path and the commands for handling the NTC
110
123
 
@@ -117,7 +130,9 @@ The `ntc` block specifies the path and the commands for handling the NTC
117
130
  | `n_try` | number of re-tries in case the script fails to read from the ntc |
118
131
  | `success_code` | exit status that indicates success. The default is 0. |
119
132
 
120
- ## tasks
133
+ ## Measurement Configuration
134
+
135
+ ### tasks
121
136
 
122
137
  The `tasks` block starts with the `GENERAL` section that specifies the
123
138
  layer-dependent power settings:
@@ -16,6 +16,52 @@ and this project adheres to
16
16
 
17
17
  **_Fixed:_**
18
18
 
19
+ ## [2.4.0](https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/tags/v2.4.0) - 2025-03-11 ## {: #mqt-v2.4.0 }
20
+
21
+ **_Changed:_**
22
+
23
+ - reduce number of steps in VCAL calibration (!215)
24
+ - increase voltage compliance during SLDO scan (!219)
25
+ - improve compatibility of mqt with Felix (!186)
26
+
27
+ **_Added:_**
28
+
29
+ - add BOM information to output of SLDO, LP and ADC calibration (!220)
30
+ - add ability to enable/disable LPM on targeted TX channels (!207)
31
+ - add data merging substest to data transmission test (!218)
32
+ - add Iref trim information to output of the AR test (!221)
33
+ - add protection when ramping HV down (!211)
34
+ - CLI to retrieve input current based on chip version (!210)
35
+
36
+ **_Fixed:_**
37
+
38
+ - fix write register issue when running with separate vmux (!208)
39
+ - fixed number of points in SLDO (!213)
40
+
41
+ ## [2.3.0](https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/tags/v2.3.0) - 2024-07-12 ## {: #mqt-v2.3.0 }
42
+
43
+ **_Changed:_**
44
+
45
+ **_Added:_**
46
+
47
+ **_Fixed:_**
48
+
49
+ ## [2.2.8](https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/tags/v2.2.8) - 2024-12-17 ## {: #mqt-v2.2.8 }
50
+
51
+ **_Changed:_**
52
+
53
+ **_Added:_**
54
+
55
+ **_Fixed:_**
56
+
57
+ ## [2.2.7](https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/tags/v2.2.7) - 2024-10-03 ## {: #mqt-v2.2.7 }
58
+
59
+ **_Changed:_**
60
+
61
+ **_Added:_**
62
+
63
+ **_Fixed:_**
64
+
19
65
  ## [2.2.6](https://gitlab.cern.ch/atlas-itk/pixel/module/module-qc-tools/-/tags/v2.2.6) - 2024-07-12 ## {: #mqt-v2.2.6 }
20
66
 
21
67
  **_Changed:_**
@@ -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.2.8
95
+ $ python -m pip install -U pip module-qc-tools==2.4.0
96
96
  ```
97
97
 
98
98
  ### via uv
@@ -101,7 +101,7 @@ $ python -m pip install -U pip module-qc-tools==2.2.8
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.2.8
104
+ $ uv pip install module-qc-tools==2.4.0
105
105
  ```
106
106
 
107
107
  # Usage
@@ -18,15 +18,16 @@ modules to be tested are already powered on.
18
18
 
19
19
  ### Time Estimates
20
20
 
21
- | Measurement | Duration |
22
- | --------------- | -------- |
23
- | ADC calib | 00:02:12 |
24
- | Analog Readback | 00:18:27 |
25
- | SLDO VI | 00:08:45 |
26
- | Vcal calib | 00:04:50 |
27
- | Injection Cap. | 00:00:50 |
28
- | LP Mode | 00:00:53 |
29
- | OVP | 00:00:27 |
21
+ | Measurement | Duration |
22
+ | ----------------- | -------- |
23
+ | ADC calib | 00:02:12 |
24
+ | Analog Readback | 00:18:27 |
25
+ | SLDO VI | 00:08:45 |
26
+ | Vcal calib | 00:04:50 |
27
+ | Injection Cap. | 00:00:50 |
28
+ | LP Mode | 00:00:53 |
29
+ | OVP | 00:00:27 |
30
+ | DATA_TRANSMISSION | 00:00:26 |
30
31
 
31
32
  ### Local Filesystem
32
33
 
@@ -50,7 +51,7 @@ Measurements/
50
51
     └── ...
51
52
  ```
52
53
 
53
- The test-type of each measurement is the corresponding test-code used in the
54
+ The test-type of each measurement is the corresponding test-mode used in the
54
55
  Production Data Base. The naming of each measurement script is chosen to be the
55
56
  same as the test-type. The timestamp is chosen to be the start time of the
56
57
  measurement.
@@ -95,7 +96,7 @@ Please use `mqdbt` to upload measurements to localDB.
95
96
 
96
97
  This script will test the sensor leakage current vs. reverse bias voltage
97
98
  (`task = IV_MEASURE`) as specified in the input configuration json file (i.e.
98
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
99
+ '$(module-qc-tools --prefix)/configs/meas_config.json').
99
100
 
100
101
  **Configuration settings**
101
102
 
@@ -110,13 +111,13 @@ This script will test the sensor leakage current vs. reverse bias voltage
110
111
  ??? example
111
112
 
112
113
  ```
113
- measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
114
+ measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
114
115
  ```
115
116
 
116
117
  ??? example "emulator"
117
118
 
118
119
  ```
119
- measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs
120
+ measurement-IV-MEASURE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
120
121
  ```
121
122
 
122
123
  ## Eye Diagram
@@ -144,8 +145,8 @@ For more information please refer to the
144
145
  - [`measurement-ADC-CALIBRATION`](reference/cli.md#mqt-measurement-adc-calibration)
145
146
 
146
147
  This script will run the ADC calibration (`task = ADC_CALIBRATION`) as specified
147
- in the input configuration json file (i.e.
148
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
148
+ in the input configuration json file (i.e. '$(module-qc-tools
149
+ --prefix)/configs/meas_config.json').
149
150
 
150
151
  **Configuration settings**
151
152
 
@@ -158,13 +159,13 @@ in the input configuration json file (i.e.
158
159
  ??? example
159
160
 
160
161
  ```
161
- measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
162
+ measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
162
163
  ```
163
164
 
164
165
  ??? example "emulator"
165
166
 
166
167
  ```
167
- measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs/
168
+ measurement-ADC-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
168
169
  ```
169
170
 
170
171
  ## Analog readback
@@ -176,9 +177,9 @@ in the input configuration json file (i.e.
176
177
  This script will measure all internal voltages available through VMUX and IMUX,
177
178
  measure the chip temperature, and measure VDDA/VDDD/ROSC vs Trim. channels. The
178
179
  scan settings are defined in the `task = ANALOG_READBACK` block of the input
179
- configuration file (i.e.
180
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`). The NTC needs
181
- to be set in order to run this script, so that the temperature can be read.
180
+ configuration file (i.e. '$(module-qc-tools
181
+ --prefix)/configs/meas_config.json'). The NTC needs to be set in order to run
182
+ this script, so that the temperature can be read.
182
183
 
183
184
  **Configuration settings**
184
185
 
@@ -201,13 +202,13 @@ to be set in order to run this script, so that the temperature can be read.
201
202
  ??? example
202
203
 
203
204
  ```
204
- measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
205
+ measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
205
206
  ```
206
207
 
207
208
  ??? example "emulator"
208
209
 
209
210
  ```
210
- measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs
211
+ measurement-ANALOG-READBACK -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
211
212
  ```
212
213
 
213
214
  ## SLDO VI
@@ -217,8 +218,8 @@ to be set in order to run this script, so that the temperature can be read.
217
218
  - [`measurement-SLDO`](reference/cli.md#mqt-measurement-sldo)
218
219
 
219
220
  This script will run the VI scans (`task = SLDO`) as specified in the input
220
- configuration json file (i.e.
221
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
221
+ configuration json file (i.e. '$(module-qc-tools
222
+ --prefix)/configs/meas_config.json').
222
223
 
223
224
  **Configuration settings**
224
225
 
@@ -234,13 +235,13 @@ configuration json file (i.e.
234
235
  ??? example
235
236
 
236
237
  ```
237
- measurement-SLDO -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
238
+ measurement-SLDO -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
238
239
  ```
239
240
 
240
241
  ??? example "emulator"
241
242
 
242
243
  ```
243
- measurement-SLDO -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs
244
+ measurement-SLDO -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
244
245
  ```
245
246
 
246
247
  ## VCal Calibration
@@ -250,8 +251,8 @@ configuration json file (i.e.
250
251
  - [`measurement-VCAL-CALIBRATION`](reference/cli.md#mqt-measurement-vcal-calibration)
251
252
 
252
253
  This script will run the VCal calibration (`task = VCAL_CALIBRATION`) as
253
- specified in the input configuration json file (i.e.
254
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
254
+ specified in the input configuration json file (i.e. '$(module-qc-tools
255
+ --prefix)/configs/meas_config.json').
255
256
 
256
257
  **Configuration settings**
257
258
 
@@ -266,13 +267,13 @@ specified in the input configuration json file (i.e.
266
267
  ??? example
267
268
 
268
269
  ```
269
- measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
270
+ measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
270
271
  ```
271
272
 
272
273
  ??? example "emulator"
273
274
 
274
275
  ```
275
- measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs/
276
+ measurement-VCAL-CALIBRATION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
276
277
  ```
277
278
 
278
279
  ## Injection Capacitance
@@ -283,7 +284,7 @@ specified in the input configuration json file (i.e.
283
284
 
284
285
  This script will run the injection capacitance measurement
285
286
  (`task = INJECTION_CAPACITANCE`) as specified in the input configuration json
286
- file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
287
+ file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
287
288
 
288
289
  **Configuration settings**
289
290
 
@@ -296,13 +297,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
296
297
  ??? example
297
298
 
298
299
  ```
299
- measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
300
+ measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
300
301
  ```
301
302
 
302
303
  ??? example "emulator"
303
304
 
304
305
  ```
305
- measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs/
306
+ measurement-INJECTION-CAPACITANCE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
306
307
  ```
307
308
 
308
309
  ## Low Power Mode
@@ -312,8 +313,8 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
312
313
  - [`measurement-LP-MODE`](reference/cli.md#mqt-measurement-lp-mode)
313
314
 
314
315
  This script will run the low power mode test (`task = LP_MODE`) as specified in
315
- the input configuration json file (i.e.
316
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
316
+ the input configuration json file (i.e. '$(module-qc-tools
317
+ --prefix)/configs/meas_config.json').
317
318
 
318
319
  **Configuration settings**
319
320
 
@@ -327,13 +328,13 @@ the input configuration json file (i.e.
327
328
  ??? example
328
329
 
329
330
  ```
330
- measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
331
+ measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
331
332
  ```
332
333
 
333
334
  ??? example "emulator"
334
335
 
335
336
  ```
336
- measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs/
337
+ measurement-LP-MODE -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
337
338
  ```
338
339
 
339
340
  ## Overvoltage Protection
@@ -344,7 +345,7 @@ the input configuration json file (i.e.
344
345
 
345
346
  This script will test the Overvoltage Protection (OVP)
346
347
  (`task = OVERVOLTAGE_PROTECTION`) as specified in the input configuration json
347
- file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
348
+ file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
348
349
 
349
350
  **Configuration settings**
350
351
 
@@ -358,13 +359,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
358
359
  ??? example
359
360
 
360
361
  ```
361
- measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
362
+ measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
362
363
  ```
363
364
 
364
365
  ??? example "emulator"
365
366
 
366
367
  ```
367
- measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs
368
+ measurement-OVERVOLTAGE-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
368
369
  ```
369
370
 
370
371
  ## Undershunt Protection
@@ -375,7 +376,7 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
375
376
 
376
377
  This script will test the Undershunt Protection (USP)
377
378
  (`task = UNDERSHUNT_PROTECTION`) as specified in the input configuration json
378
- file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
379
+ file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
379
380
 
380
381
  **Configuration settings**
381
382
 
@@ -389,13 +390,13 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
389
390
  ??? example
390
391
 
391
392
  ```
392
- measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
393
+ measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_LP.json
393
394
  ```
394
395
 
395
396
  ??? example "emulator"
396
397
 
397
398
  ```
398
- measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs
399
+ measurement-UNDERSHUNT-PROTECTION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs
399
400
  ```
400
401
 
401
402
  ## Data Transmission
@@ -405,25 +406,26 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
405
406
  - [`measurement-DATA-TRANSMISSION`](reference/cli.md#mqt-measurement-data-transmission)
406
407
 
407
408
  This script will run the data transmission (`task = DATA_TRANSMISSION`) as
408
- specified in the input configuration json file (i.e.
409
- `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
409
+ specified in the input configuration json file (i.e. '$(module-qc-tools
410
+ --prefix)/configs/meas_config.json').
410
411
 
411
412
  **Configuration settings**
412
413
 
413
- | Name | Description |
414
- | ---------- | ------------------------------- |
415
- | `MonitorV` | list of VMUX channels to be set |
414
+ | Name | Description |
415
+ | ------------- | --------------------------------------- |
416
+ | `MonitorV` | list of VMUX channels to be set |
417
+ | `DataMerging` | list of data merging modes to be tested |
416
418
 
417
419
  ??? example
418
420
 
419
421
  ```
420
- measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
422
+ measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/hw_config_example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
421
423
  ```
422
424
 
423
425
  ??? example "emulator"
424
426
 
425
427
  ```
426
- measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/emulator_merged_vmux.json -o emulator/outputs/
428
+ measurement-DATA-TRANSMISSION -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
427
429
  ```
428
430
 
429
431
  ## Long-term stability DCS
@@ -434,7 +436,7 @@ specified in the input configuration json file (i.e.
434
436
 
435
437
  This adds the ability to run the long-term stability dcs measurement
436
438
  (`task = LONG_TERM_STABILITY_DCS`) as specified in the input configuration json
437
- file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
439
+ file (i.e. '$(module-qc-tools --prefix)/configs/meas_config.json').
438
440
 
439
441
  **Configuration settings**
440
442
 
@@ -446,5 +448,11 @@ file (i.e. `$(module-qc-tools --prefix)/configs/example_merged_vmux.json`).
446
448
  ??? example
447
449
 
448
450
  ```
449
- measurement-LONG-TERM-STABILITY-DCS -c $(module-qc-tools --prefix)/configs/example_merged_vmux.json -m ~/module_data/20UPGR91301046/20UPGR91301046_L2_warm.json
451
+ 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
452
+ ```
453
+
454
+ ??? example "emulator"
455
+
456
+ ```
457
+ measurement-LONG-TERM-STABILITY-DCS -c $(module-qc-tools --prefix)/configs/hw_config_emulator_merged_vmux.json -o emulator/outputs/
450
458
  ```
@@ -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/example_merged_vmux.json
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,10 +20,11 @@ dependencies = [
20
20
  "tabulate",
21
21
  "pre-commit",
22
22
  "check-jsonschema",
23
- "module-qc-data-tools >= 1.0.22",
23
+ "module-qc-data-tools >= 1.0.23",
24
+ "module-qc-database-tools >= 2.5.0rc0",
24
25
  'importlib_resources; python_version < "3.9"',
25
26
  "requests",
26
- 'urllib3>=1.26.11,<2; "el7.x86_64" in platform_release',
27
+ 'urllib3>=1.26.20,<2; "el7.x86_64" in platform_release',
27
28
  "typer>=0.9.0",
28
29
  "rich",
29
30
  ]
@@ -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.2/"
41
+ "Documentation" = "https://atlas-itk-pixel-mqt.docs.cern.ch/2.4/"
41
42
 
42
43
  [project.scripts]
43
44
  module-qc-tools = "module_qc_tools.cli:app"
@@ -47,6 +48,7 @@ emulator-write-register = "module_qc_tools.cli.hardware_emulator:run_write_regis
47
48
  emulator-read-register = "module_qc_tools.cli.hardware_emulator:run_read_register"
48
49
  emulator-read-adc = "module_qc_tools.cli.hardware_emulator:run_read_adc"
49
50
  emulator-read-ringosc = "module_qc_tools.cli.hardware_emulator:run_read_ringosc"
51
+ emulator-data-merging-check = "module_qc_tools.cli.hardware_emulator:run_dataMergingCheck"
50
52
  emulator-eye-diagram = "module_qc_tools.cli.hardware_emulator:run_eyeDiagram"
51
53
  emulator-switch-lpm = "module_qc_tools.cli.hardware_emulator:run_switchLPM"
52
54
  emulator-control-ps = "module_qc_tools.cli.hardware_emulator:run_control_PS"
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '2.2.8'
16
- __version_tuple__ = version_tuple = (2, 2, 8)
20
+ __version__ = version = '2.4.0'
21
+ __version_tuple__ = version_tuple = (2, 4, 0)