imap-processing 0.7.0__py3-none-any.whl → 0.8.0__py3-none-any.whl

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.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (124) hide show
  1. imap_processing/__init__.py +1 -1
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/excel_to_xtce.py +34 -2
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +1 -1
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +145 -30
  6. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +36 -36
  7. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +36 -8
  8. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +9 -0
  9. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +7 -7
  10. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +32 -33
  11. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +24 -28
  12. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +1 -0
  13. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +133 -78
  14. imap_processing/cdf/config/imap_variable_schema.yaml +13 -0
  15. imap_processing/cdf/imap_cdf_manager.py +31 -27
  16. imap_processing/cli.py +12 -10
  17. imap_processing/codice/codice_l1a.py +151 -61
  18. imap_processing/codice/constants.py +1 -1
  19. imap_processing/codice/decompress.py +4 -9
  20. imap_processing/codice/utils.py +1 -0
  21. imap_processing/glows/l1b/glows_l1b.py +3 -3
  22. imap_processing/glows/l1b/glows_l1b_data.py +59 -37
  23. imap_processing/glows/l2/glows_l2_data.py +123 -0
  24. imap_processing/hi/l1a/histogram.py +1 -1
  25. imap_processing/hi/l1a/science_direct_event.py +1 -1
  26. imap_processing/hi/l1b/hi_l1b.py +85 -11
  27. imap_processing/hi/l1c/hi_l1c.py +23 -1
  28. imap_processing/hi/utils.py +1 -1
  29. imap_processing/hit/hit_utils.py +221 -0
  30. imap_processing/hit/l0/constants.py +118 -0
  31. imap_processing/hit/l0/decom_hit.py +186 -153
  32. imap_processing/hit/l1a/hit_l1a.py +20 -175
  33. imap_processing/hit/l1b/hit_l1b.py +33 -153
  34. imap_processing/idex/idex_l1a.py +10 -9
  35. imap_processing/lo/l0/decompression_tables/decompression_tables.py +1 -1
  36. imap_processing/lo/l0/lo_science.py +1 -1
  37. imap_processing/lo/packet_definitions/lo_xtce.xml +1 -3296
  38. imap_processing/mag/l0/decom_mag.py +4 -3
  39. imap_processing/mag/l1a/mag_l1a.py +11 -11
  40. imap_processing/mag/l1b/mag_l1b.py +89 -7
  41. imap_processing/spice/geometry.py +126 -4
  42. imap_processing/swapi/l1/swapi_l1.py +1 -1
  43. imap_processing/swapi/l2/swapi_l2.py +1 -1
  44. imap_processing/swe/l1b/swe_l1b_science.py +8 -8
  45. imap_processing/tests/ccsds/test_data/expected_output.xml +1 -0
  46. imap_processing/tests/ccsds/test_excel_to_xtce.py +4 -4
  47. imap_processing/tests/cdf/test_imap_cdf_manager.py +0 -10
  48. imap_processing/tests/codice/conftest.py +1 -17
  49. imap_processing/tests/codice/data/imap_codice_l0_raw_20241110_v001.pkts +0 -0
  50. imap_processing/tests/codice/test_codice_l0.py +8 -2
  51. imap_processing/tests/codice/test_codice_l1a.py +127 -107
  52. imap_processing/tests/codice/test_codice_l1b.py +1 -0
  53. imap_processing/tests/codice/test_decompress.py +7 -7
  54. imap_processing/tests/conftest.py +54 -15
  55. imap_processing/tests/glows/conftest.py +6 -0
  56. imap_processing/tests/glows/test_glows_l1b.py +9 -9
  57. imap_processing/tests/glows/test_glows_l1b_data.py +9 -9
  58. imap_processing/tests/glows/test_glows_l2_data.py +0 -0
  59. imap_processing/tests/hi/test_data/l1a/imap_hi_l1a_45sensor-de_20250415_v000.cdf +0 -0
  60. imap_processing/tests/hi/test_hi_l1b.py +71 -1
  61. imap_processing/tests/hi/test_hi_l1c.py +10 -2
  62. imap_processing/tests/hi/test_utils.py +4 -3
  63. imap_processing/tests/hit/{test_hit_decom.py → test_decom_hit.py} +84 -35
  64. imap_processing/tests/hit/test_hit_l1a.py +2 -197
  65. imap_processing/tests/hit/test_hit_l1b.py +156 -25
  66. imap_processing/tests/hit/test_hit_utils.py +218 -0
  67. imap_processing/tests/idex/conftest.py +1 -1
  68. imap_processing/tests/idex/imap_idex_l0_raw_20231214_v001.pkts +0 -0
  69. imap_processing/tests/idex/impact_14_tof_high_data.txt +4444 -4444
  70. imap_processing/tests/idex/test_idex_l0.py +3 -3
  71. imap_processing/tests/idex/test_idex_l1a.py +1 -1
  72. imap_processing/tests/lo/test_lo_science.py +2 -2
  73. imap_processing/tests/mag/imap_mag_l1a_norm-magi_20251017_v001.cdf +0 -0
  74. imap_processing/tests/mag/test_mag_l1b.py +59 -3
  75. imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +3 -1
  76. imap_processing/tests/spice/test_geometry.py +84 -4
  77. imap_processing/tests/swe/conftest.py +33 -0
  78. imap_processing/tests/swe/l1_validation/swe_l0_unpacked-data_20240510_v001_VALIDATION_L1B_v3.dat +4332 -0
  79. imap_processing/tests/swe/test_swe_l1b.py +29 -8
  80. imap_processing/tests/test_utils.py +1 -1
  81. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E12.cdf +0 -0
  82. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E24.cdf +0 -0
  83. imap_processing/tests/ultra/unit/test_de.py +108 -0
  84. imap_processing/tests/ultra/unit/test_ultra_l1b.py +27 -3
  85. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +31 -10
  86. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +21 -11
  87. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +9 -44
  88. imap_processing/ultra/constants.py +8 -3
  89. imap_processing/ultra/l1b/de.py +174 -30
  90. imap_processing/ultra/l1b/ultra_l1b_annotated.py +24 -10
  91. imap_processing/ultra/l1b/ultra_l1b_extended.py +21 -14
  92. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +70 -119
  93. {imap_processing-0.7.0.dist-info → imap_processing-0.8.0.dist-info}/METADATA +15 -14
  94. {imap_processing-0.7.0.dist-info → imap_processing-0.8.0.dist-info}/RECORD +98 -113
  95. imap_processing/cdf/cdf_attribute_manager.py +0 -322
  96. imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +0 -246
  97. imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  98. imap_processing/hit/l0/data_classes/housekeeping.py +0 -240
  99. imap_processing/hit/l0/data_classes/science_packet.py +0 -259
  100. imap_processing/hit/l0/utils/hit_base.py +0 -57
  101. imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +0 -246
  102. imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  103. imap_processing/tests/cdf/test_cdf_attribute_manager.py +0 -353
  104. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
  105. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
  106. imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
  107. imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
  108. imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
  109. imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
  110. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
  111. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
  112. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
  113. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
  114. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
  115. imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
  116. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
  117. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
  118. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
  119. imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
  120. imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
  121. /imap_processing/tests/hit/test_data/{imap_hit_l0_hk_20100105_v001.pkts → imap_hit_l0_raw_20100105_v001.pkts} +0 -0
  122. {imap_processing-0.7.0.dist-info → imap_processing-0.8.0.dist-info}/LICENSE +0 -0
  123. {imap_processing-0.7.0.dist-info → imap_processing-0.8.0.dist-info}/WHEEL +0 -0
  124. {imap_processing-0.7.0.dist-info → imap_processing-0.8.0.dist-info}/entry_points.txt +0 -0
@@ -24,2211 +24,6 @@
24
24
  <xtce:IntegerParameterType name="PKT_LEN" signed="false">
25
25
  <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
26
26
  </xtce:IntegerParameterType>
27
- <xtce:IntegerParameterType name="ILO_BOOT_HK.SHCOARSE" signed="false">
28
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
29
- </xtce:IntegerParameterType>
30
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BOOT_VER" signed="false">
31
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
32
- </xtce:IntegerParameterType>
33
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BOOT_CNT" signed="false">
34
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
35
- </xtce:IntegerParameterType>
36
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_STAT" signed="false">
37
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
38
- </xtce:IntegerParameterType>
39
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_ABUS" signed="false">
40
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
41
- </xtce:IntegerParameterType>
42
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_DBUS" signed="false">
43
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
44
- </xtce:IntegerParameterType>
45
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_MEM_FF" signed="false">
46
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
47
- </xtce:IntegerParameterType>
48
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_MEM_FL" signed="false">
49
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
50
- </xtce:IntegerParameterType>
51
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_MEM_MAP" signed="false">
52
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
53
- </xtce:IntegerParameterType>
54
- <xtce:IntegerParameterType name="ILO_BOOT_HK.BIST_MEM_CNT" signed="false">
55
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
56
- </xtce:IntegerParameterType>
57
- <xtce:IntegerParameterType name="ILO_BOOT_HK.IMG_1_STAT" signed="false">
58
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
59
- </xtce:IntegerParameterType>
60
- <xtce:IntegerParameterType name="ILO_BOOT_HK.IMG_2_STAT" signed="false">
61
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
62
- </xtce:IntegerParameterType>
63
- <xtce:IntegerParameterType name="ILO_BOOT_HK.SPARE_0" signed="false">
64
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
65
- </xtce:IntegerParameterType>
66
- <xtce:IntegerParameterType name="ILO_BOOT_HK.INSTR_ID" signed="false">
67
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
68
- </xtce:IntegerParameterType>
69
- <xtce:IntegerParameterType name="ILO_BOOT_HK.SPARE_1" signed="false">
70
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
71
- </xtce:IntegerParameterType>
72
- <xtce:IntegerParameterType name="ILO_BOOT_HK.FPGA_VER" signed="false">
73
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
74
- </xtce:IntegerParameterType>
75
- <xtce:IntegerParameterType name="ILO_BOOT_HK.HV_PLUG_STATE" signed="false">
76
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
77
- </xtce:IntegerParameterType>
78
- <xtce:IntegerParameterType name="ILO_BOOT_HK.DOOR_DIS" signed="false">
79
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
80
- </xtce:IntegerParameterType>
81
- <xtce:IntegerParameterType name="ILO_BOOT_HK.SPARE_2" signed="false">
82
- <xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
83
- </xtce:IntegerParameterType>
84
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_0" signed="false">
85
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
86
- </xtce:IntegerParameterType>
87
- <xtce:IntegerParameterType name="ILO_BOOT_HK.MDM25P_14_T" signed="false">
88
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
89
- <xtce:DefaultCalibrator>
90
- <xtce:PolynomialCalibrator>
91
- <xtce:Term coefficient="-273.2" exponent="0" />
92
- <xtce:Term coefficient="0.122070313" exponent="1" />
93
- </xtce:PolynomialCalibrator>
94
- </xtce:DefaultCalibrator>
95
- </xtce:IntegerDataEncoding>
96
- </xtce:IntegerParameterType>
97
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_1" signed="false">
98
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
99
- </xtce:IntegerParameterType>
100
- <xtce:IntegerParameterType name="ILO_BOOT_HK.MDM25P_15_T" signed="false">
101
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
102
- <xtce:DefaultCalibrator>
103
- <xtce:PolynomialCalibrator>
104
- <xtce:Term coefficient="-273.2" exponent="0" />
105
- <xtce:Term coefficient="0.122070313" exponent="1" />
106
- </xtce:PolynomialCalibrator>
107
- </xtce:DefaultCalibrator>
108
- </xtce:IntegerDataEncoding>
109
- </xtce:IntegerParameterType>
110
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_2" signed="false">
111
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
112
- </xtce:IntegerParameterType>
113
- <xtce:IntegerParameterType name="ILO_BOOT_HK.MDM25P_16_T" signed="false">
114
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
115
- <xtce:DefaultCalibrator>
116
- <xtce:PolynomialCalibrator>
117
- <xtce:Term coefficient="-273.2" exponent="0" />
118
- <xtce:Term coefficient="0.122070313" exponent="1" />
119
- </xtce:PolynomialCalibrator>
120
- </xtce:DefaultCalibrator>
121
- </xtce:IntegerDataEncoding>
122
- </xtce:IntegerParameterType>
123
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_3" signed="false">
124
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
125
- </xtce:IntegerParameterType>
126
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_12V_T" signed="false">
127
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
128
- <xtce:DefaultCalibrator>
129
- <xtce:PolynomialCalibrator>
130
- <xtce:Term coefficient="-274.41" exponent="0" />
131
- <xtce:Term coefficient="0.1448" exponent="1" />
132
- </xtce:PolynomialCalibrator>
133
- </xtce:DefaultCalibrator>
134
- </xtce:IntegerDataEncoding>
135
- </xtce:IntegerParameterType>
136
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_4" signed="false">
137
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
138
- </xtce:IntegerParameterType>
139
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_5V_T" signed="false">
140
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
141
- <xtce:DefaultCalibrator>
142
- <xtce:PolynomialCalibrator>
143
- <xtce:Term coefficient="-274.41" exponent="0" />
144
- <xtce:Term coefficient="0.1448" exponent="1" />
145
- </xtce:PolynomialCalibrator>
146
- </xtce:DefaultCalibrator>
147
- </xtce:IntegerDataEncoding>
148
- </xtce:IntegerParameterType>
149
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_5" signed="false">
150
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
151
- </xtce:IntegerParameterType>
152
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_3P3V_T" signed="false">
153
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
154
- <xtce:DefaultCalibrator>
155
- <xtce:PolynomialCalibrator>
156
- <xtce:Term coefficient="-274.41" exponent="0" />
157
- <xtce:Term coefficient="0.1448" exponent="1" />
158
- </xtce:PolynomialCalibrator>
159
- </xtce:DefaultCalibrator>
160
- </xtce:IntegerDataEncoding>
161
- </xtce:IntegerParameterType>
162
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_6" signed="false">
163
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
164
- </xtce:IntegerParameterType>
165
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_3P3V" signed="false">
166
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
167
- <xtce:DefaultCalibrator>
168
- <xtce:PolynomialCalibrator>
169
- <xtce:Term coefficient="0.001611" exponent="1" />
170
- </xtce:PolynomialCalibrator>
171
- </xtce:DefaultCalibrator>
172
- </xtce:IntegerDataEncoding>
173
- </xtce:IntegerParameterType>
174
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_7" signed="false">
175
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
176
- </xtce:IntegerParameterType>
177
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_5V" signed="false">
178
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
179
- <xtce:DefaultCalibrator>
180
- <xtce:PolynomialCalibrator>
181
- <xtce:Term coefficient="0.002441" exponent="1" />
182
- </xtce:PolynomialCalibrator>
183
- </xtce:DefaultCalibrator>
184
- </xtce:IntegerDataEncoding>
185
- </xtce:IntegerParameterType>
186
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_8" signed="false">
187
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
188
- </xtce:IntegerParameterType>
189
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_N5V" signed="false">
190
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
191
- <xtce:DefaultCalibrator>
192
- <xtce:PolynomialCalibrator>
193
- <xtce:Term coefficient="-0.002441" exponent="1" />
194
- </xtce:PolynomialCalibrator>
195
- </xtce:DefaultCalibrator>
196
- </xtce:IntegerDataEncoding>
197
- </xtce:IntegerParameterType>
198
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_9" signed="false">
199
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
200
- </xtce:IntegerParameterType>
201
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_12V" signed="false">
202
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
203
- <xtce:DefaultCalibrator>
204
- <xtce:PolynomialCalibrator>
205
- <xtce:Term coefficient="0.005859" exponent="1" />
206
- </xtce:PolynomialCalibrator>
207
- </xtce:DefaultCalibrator>
208
- </xtce:IntegerDataEncoding>
209
- </xtce:IntegerParameterType>
210
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_10" signed="false">
211
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
212
- </xtce:IntegerParameterType>
213
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_N12V" signed="false">
214
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
215
- <xtce:DefaultCalibrator>
216
- <xtce:PolynomialCalibrator>
217
- <xtce:Term coefficient="-0.005859" exponent="1" />
218
- </xtce:PolynomialCalibrator>
219
- </xtce:DefaultCalibrator>
220
- </xtce:IntegerDataEncoding>
221
- </xtce:IntegerParameterType>
222
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_11" signed="false">
223
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
224
- </xtce:IntegerParameterType>
225
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_3P3V_I" signed="false">
226
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
227
- <xtce:DefaultCalibrator>
228
- <xtce:PolynomialCalibrator>
229
- <xtce:Term coefficient="0.916" exponent="1" />
230
- </xtce:PolynomialCalibrator>
231
- </xtce:DefaultCalibrator>
232
- </xtce:IntegerDataEncoding>
233
- </xtce:IntegerParameterType>
234
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_12" signed="false">
235
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
236
- </xtce:IntegerParameterType>
237
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_5V_I" signed="false">
238
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
239
- <xtce:DefaultCalibrator>
240
- <xtce:PolynomialCalibrator>
241
- <xtce:Term coefficient="0.46099999999999997" exponent="1" />
242
- </xtce:PolynomialCalibrator>
243
- </xtce:DefaultCalibrator>
244
- </xtce:IntegerDataEncoding>
245
- </xtce:IntegerParameterType>
246
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_13" signed="false">
247
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
248
- </xtce:IntegerParameterType>
249
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_N5V_I" signed="false">
250
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
251
- <xtce:DefaultCalibrator>
252
- <xtce:PolynomialCalibrator>
253
- <xtce:Term coefficient="0.46099999999999997" exponent="1" />
254
- </xtce:PolynomialCalibrator>
255
- </xtce:DefaultCalibrator>
256
- </xtce:IntegerDataEncoding>
257
- </xtce:IntegerParameterType>
258
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_14" signed="false">
259
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
260
- </xtce:IntegerParameterType>
261
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_12V_I" signed="false">
262
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
263
- <xtce:DefaultCalibrator>
264
- <xtce:PolynomialCalibrator>
265
- <xtce:Term coefficient="0.704" exponent="1" />
266
- </xtce:PolynomialCalibrator>
267
- </xtce:DefaultCalibrator>
268
- </xtce:IntegerDataEncoding>
269
- </xtce:IntegerParameterType>
270
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_15" signed="false">
271
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
272
- </xtce:IntegerParameterType>
273
- <xtce:IntegerParameterType name="ILO_BOOT_HK.LVPS_N12V_I" signed="false">
274
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
275
- <xtce:DefaultCalibrator>
276
- <xtce:PolynomialCalibrator>
277
- <xtce:Term coefficient="0.704" exponent="1" />
278
- </xtce:PolynomialCalibrator>
279
- </xtce:DefaultCalibrator>
280
- </xtce:IntegerDataEncoding>
281
- </xtce:IntegerParameterType>
282
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_16" signed="false">
283
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
284
- </xtce:IntegerParameterType>
285
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_1P5V" signed="false">
286
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
287
- <xtce:DefaultCalibrator>
288
- <xtce:PolynomialCalibrator>
289
- <xtce:Term coefficient="0.001220703" exponent="1" />
290
- </xtce:PolynomialCalibrator>
291
- </xtce:DefaultCalibrator>
292
- </xtce:IntegerDataEncoding>
293
- </xtce:IntegerParameterType>
294
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_17" signed="false">
295
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
296
- </xtce:IntegerParameterType>
297
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_1P8V" signed="false">
298
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
299
- <xtce:DefaultCalibrator>
300
- <xtce:PolynomialCalibrator>
301
- <xtce:Term coefficient="0.001220703" exponent="1" />
302
- </xtce:PolynomialCalibrator>
303
- </xtce:DefaultCalibrator>
304
- </xtce:IntegerDataEncoding>
305
- </xtce:IntegerParameterType>
306
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_18" signed="false">
307
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
308
- </xtce:IntegerParameterType>
309
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_3P3V" signed="false">
310
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
311
- <xtce:DefaultCalibrator>
312
- <xtce:PolynomialCalibrator>
313
- <xtce:Term coefficient="0.001220703" exponent="1" />
314
- </xtce:PolynomialCalibrator>
315
- </xtce:DefaultCalibrator>
316
- </xtce:IntegerDataEncoding>
317
- </xtce:IntegerParameterType>
318
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_19" signed="false">
319
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
320
- </xtce:IntegerParameterType>
321
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_12V" signed="false">
322
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
323
- <xtce:DefaultCalibrator>
324
- <xtce:PolynomialCalibrator>
325
- <xtce:Term coefficient="0.005897117" exponent="1" />
326
- </xtce:PolynomialCalibrator>
327
- </xtce:DefaultCalibrator>
328
- </xtce:IntegerDataEncoding>
329
- </xtce:IntegerParameterType>
330
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_20" signed="false">
331
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
332
- </xtce:IntegerParameterType>
333
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_N12V" signed="false">
334
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
335
- <xtce:DefaultCalibrator>
336
- <xtce:PolynomialCalibrator>
337
- <xtce:Term coefficient="-0.005840685" exponent="1" />
338
- </xtce:PolynomialCalibrator>
339
- </xtce:DefaultCalibrator>
340
- </xtce:IntegerDataEncoding>
341
- </xtce:IntegerParameterType>
342
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_21" signed="false">
343
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
344
- </xtce:IntegerParameterType>
345
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_5V" signed="false">
346
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
347
- <xtce:DefaultCalibrator>
348
- <xtce:PolynomialCalibrator>
349
- <xtce:Term coefficient="0.002412457" exponent="1" />
350
- </xtce:PolynomialCalibrator>
351
- </xtce:DefaultCalibrator>
352
- </xtce:IntegerDataEncoding>
353
- </xtce:IntegerParameterType>
354
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_22" signed="false">
355
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
356
- </xtce:IntegerParameterType>
357
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_5V_ADC" signed="false">
358
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
359
- <xtce:DefaultCalibrator>
360
- <xtce:PolynomialCalibrator>
361
- <xtce:Term coefficient="0.002412457" exponent="1" />
362
- </xtce:PolynomialCalibrator>
363
- </xtce:DefaultCalibrator>
364
- </xtce:IntegerDataEncoding>
365
- </xtce:IntegerParameterType>
366
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_23" signed="false">
367
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
368
- </xtce:IntegerParameterType>
369
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_PROCESSOR_T" signed="false">
370
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
371
- <xtce:DefaultCalibrator>
372
- <xtce:PolynomialCalibrator>
373
- <xtce:Term coefficient="-273.2" exponent="0" />
374
- <xtce:Term coefficient="0.122070313" exponent="1" />
375
- </xtce:PolynomialCalibrator>
376
- </xtce:DefaultCalibrator>
377
- </xtce:IntegerDataEncoding>
378
- </xtce:IntegerParameterType>
379
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_24" signed="false">
380
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
381
- </xtce:IntegerParameterType>
382
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_1P8V_LDO_T" signed="false">
383
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
384
- <xtce:DefaultCalibrator>
385
- <xtce:PolynomialCalibrator>
386
- <xtce:Term coefficient="-273.2" exponent="0" />
387
- <xtce:Term coefficient="0.122070313" exponent="1" />
388
- </xtce:PolynomialCalibrator>
389
- </xtce:DefaultCalibrator>
390
- </xtce:IntegerDataEncoding>
391
- </xtce:IntegerParameterType>
392
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_25" signed="false">
393
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
394
- </xtce:IntegerParameterType>
395
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_1P5V_LDO_T" signed="false">
396
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
397
- <xtce:DefaultCalibrator>
398
- <xtce:PolynomialCalibrator>
399
- <xtce:Term coefficient="-273.2" exponent="0" />
400
- <xtce:Term coefficient="0.122070313" exponent="1" />
401
- </xtce:PolynomialCalibrator>
402
- </xtce:DefaultCalibrator>
403
- </xtce:IntegerDataEncoding>
404
- </xtce:IntegerParameterType>
405
- <xtce:IntegerParameterType name="ILO_BOOT_HK.PAD_26" signed="false">
406
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
407
- </xtce:IntegerParameterType>
408
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CDH_SDRAM_T" signed="false">
409
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
410
- <xtce:DefaultCalibrator>
411
- <xtce:PolynomialCalibrator>
412
- <xtce:Term coefficient="-273.2" exponent="0" />
413
- <xtce:Term coefficient="0.122070313" exponent="1" />
414
- </xtce:PolynomialCalibrator>
415
- </xtce:DefaultCalibrator>
416
- </xtce:IntegerDataEncoding>
417
- </xtce:IntegerParameterType>
418
- <xtce:IntegerParameterType name="ILO_BOOT_HK.OP_MODE" signed="false">
419
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
420
- </xtce:IntegerParameterType>
421
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CMD_ACC_CNT" signed="false">
422
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
423
- </xtce:IntegerParameterType>
424
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CMD_EXE_CNT" signed="false">
425
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
426
- </xtce:IntegerParameterType>
427
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CMD_REJ_CNT" signed="false">
428
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
429
- </xtce:IntegerParameterType>
430
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CMD_LAST_OPCODE" signed="false">
431
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
432
- </xtce:IntegerParameterType>
433
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CMD_RESULT" signed="false">
434
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
435
- </xtce:IntegerParameterType>
436
- <xtce:IntegerParameterType name="ILO_BOOT_HK.ITF_ERR_CNT" signed="false">
437
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
438
- </xtce:IntegerParameterType>
439
- <xtce:IntegerParameterType name="ILO_BOOT_HK.CHKSUM" signed="false">
440
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
441
- </xtce:IntegerParameterType>
442
- <xtce:IntegerParameterType name="ILO_APP_SHK.SHCOARSE" signed="false">
443
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
444
- </xtce:IntegerParameterType>
445
- <xtce:IntegerParameterType name="ILO_APP_SHK.BOARD_TYPE" signed="false">
446
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
447
- </xtce:IntegerParameterType>
448
- <xtce:IntegerParameterType name="ILO_APP_SHK.RESET_REASON_SOFT" signed="false">
449
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
450
- </xtce:IntegerParameterType>
451
- <xtce:IntegerParameterType name="ILO_APP_SHK.RESET_REASON_FPGA_WDOG" signed="false">
452
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
453
- </xtce:IntegerParameterType>
454
- <xtce:IntegerParameterType name="ILO_APP_SHK.RESET_REASON_CPU_WDOG" signed="false">
455
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
456
- </xtce:IntegerParameterType>
457
- <xtce:IntegerParameterType name="ILO_APP_SHK.RESET_REASON_PFO" signed="false">
458
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
459
- </xtce:IntegerParameterType>
460
- <xtce:IntegerParameterType name="ILO_APP_SHK.RESET_REASON_POR" signed="false">
461
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
462
- </xtce:IntegerParameterType>
463
- <xtce:IntegerParameterType name="ILO_APP_SHK.CPU_WDOG_STATE" signed="false">
464
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
465
- </xtce:IntegerParameterType>
466
- <xtce:IntegerParameterType name="ILO_APP_SHK.FPGA_WDOG_STATE" signed="false">
467
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
468
- </xtce:IntegerParameterType>
469
- <xtce:IntegerParameterType name="ILO_APP_SHK.WDOG_CNT" signed="false">
470
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
471
- </xtce:IntegerParameterType>
472
- <xtce:IntegerParameterType name="ILO_APP_SHK.INSTR_ID" signed="false">
473
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
474
- </xtce:IntegerParameterType>
475
- <xtce:IntegerParameterType name="ILO_APP_SHK.CDH_FPGA_VERSION" signed="false">
476
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
477
- </xtce:IntegerParameterType>
478
- <xtce:IntegerParameterType name="ILO_APP_SHK.IFB_FPGA_VERSION" signed="false">
479
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
480
- </xtce:IntegerParameterType>
481
- <xtce:IntegerParameterType name="ILO_APP_SHK.BULK_HVPS_VERSION" signed="false">
482
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
483
- </xtce:IntegerParameterType>
484
- <xtce:IntegerParameterType name="ILO_APP_SHK.FSW_VERSION" signed="false">
485
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
486
- </xtce:IntegerParameterType>
487
- <xtce:IntegerParameterType name="ILO_APP_SHK.SELECTED_IMG" signed="false">
488
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
489
- </xtce:IntegerParameterType>
490
- <xtce:BinaryParameterType name="ILO_APP_SHK.FSW_VERSION_STR">
491
- <xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
492
- <xtce:SizeInBits>
493
- <xtce:DynamicValue>
494
- <xtce:ParameterInstanceRef parameterRef="PKT_LEN" />
495
- <xtce:LinearAdjustment slope="8" intercept="-1016" />
496
- </xtce:DynamicValue>
497
- </xtce:SizeInBits>
498
- </xtce:BinaryDataEncoding>
499
- </xtce:BinaryParameterType>
500
- <xtce:BinaryParameterType name="ILO_APP_SHK.ENG_LUT_VERSION_STR">
501
- <xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
502
- <xtce:SizeInBits>
503
- <xtce:DynamicValue>
504
- <xtce:ParameterInstanceRef parameterRef="PKT_LEN" />
505
- <xtce:LinearAdjustment slope="8" intercept="-936" />
506
- </xtce:DynamicValue>
507
- </xtce:SizeInBits>
508
- </xtce:BinaryDataEncoding>
509
- </xtce:BinaryParameterType>
510
- <xtce:BinaryParameterType name="ILO_APP_SHK.SCI_LUT_VERSION_STR">
511
- <xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
512
- <xtce:SizeInBits>
513
- <xtce:DynamicValue>
514
- <xtce:ParameterInstanceRef parameterRef="PKT_LEN" />
515
- <xtce:LinearAdjustment slope="8" intercept="-936" />
516
- </xtce:DynamicValue>
517
- </xtce:SizeInBits>
518
- </xtce:BinaryDataEncoding>
519
- </xtce:BinaryParameterType>
520
- <xtce:IntegerParameterType name="ILO_APP_SHK.SCRATCH_BUFFER_ADDR" signed="false">
521
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
522
- </xtce:IntegerParameterType>
523
- <xtce:IntegerParameterType name="ILO_APP_SHK.SPARE" signed="false">
524
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
525
- </xtce:IntegerParameterType>
526
- <xtce:IntegerParameterType name="ILO_APP_SHK.CHKSUM" signed="false">
527
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
528
- </xtce:IntegerParameterType>
529
- <xtce:IntegerParameterType name="ILO_APP_NHK.SHCOARSE" signed="false">
530
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
531
- </xtce:IntegerParameterType>
532
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_MODE" signed="false">
533
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
534
- </xtce:IntegerParameterType>
535
- <xtce:IntegerParameterType name="ILO_APP_NHK.CMD_EXE_CNT" signed="false">
536
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
537
- </xtce:IntegerParameterType>
538
- <xtce:IntegerParameterType name="ILO_APP_NHK.CMD_REJ_CNT" signed="false">
539
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
540
- </xtce:IntegerParameterType>
541
- <xtce:IntegerParameterType name="ILO_APP_NHK.CMD_LAST_OPCODE" signed="false">
542
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
543
- </xtce:IntegerParameterType>
544
- <xtce:IntegerParameterType name="ILO_APP_NHK.ITF_ERR_CNT" signed="false">
545
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
546
- </xtce:IntegerParameterType>
547
- <xtce:IntegerParameterType name="ILO_APP_NHK.WATCHDOG_CNT" signed="false">
548
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
549
- </xtce:IntegerParameterType>
550
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_0" signed="false">
551
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
552
- </xtce:IntegerParameterType>
553
- <xtce:IntegerParameterType name="ILO_APP_NHK.MDM25P_14_T" signed="false">
554
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
555
- <xtce:DefaultCalibrator>
556
- <xtce:PolynomialCalibrator>
557
- <xtce:Term coefficient="-273.2" exponent="0" />
558
- <xtce:Term coefficient="0.122070313" exponent="1" />
559
- </xtce:PolynomialCalibrator>
560
- </xtce:DefaultCalibrator>
561
- </xtce:IntegerDataEncoding>
562
- </xtce:IntegerParameterType>
563
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_1" signed="false">
564
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
565
- </xtce:IntegerParameterType>
566
- <xtce:IntegerParameterType name="ILO_APP_NHK.MDM25P_15_T" signed="false">
567
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
568
- <xtce:DefaultCalibrator>
569
- <xtce:PolynomialCalibrator>
570
- <xtce:Term coefficient="-273.2" exponent="0" />
571
- <xtce:Term coefficient="0.122070313" exponent="1" />
572
- </xtce:PolynomialCalibrator>
573
- </xtce:DefaultCalibrator>
574
- </xtce:IntegerDataEncoding>
575
- </xtce:IntegerParameterType>
576
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_2" signed="false">
577
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
578
- </xtce:IntegerParameterType>
579
- <xtce:IntegerParameterType name="ILO_APP_NHK.MDM25P_16_T" signed="false">
580
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
581
- <xtce:DefaultCalibrator>
582
- <xtce:PolynomialCalibrator>
583
- <xtce:Term coefficient="-273.2" exponent="0" />
584
- <xtce:Term coefficient="0.122070313" exponent="1" />
585
- </xtce:PolynomialCalibrator>
586
- </xtce:DefaultCalibrator>
587
- </xtce:IntegerDataEncoding>
588
- </xtce:IntegerParameterType>
589
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_3" signed="false">
590
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
591
- </xtce:IntegerParameterType>
592
- <xtce:IntegerParameterType name="ILO_APP_NHK.LO_T" signed="false">
593
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
594
- <xtce:DefaultCalibrator>
595
- <xtce:PolynomialCalibrator>
596
- <xtce:Term coefficient="-273.2" exponent="0" />
597
- <xtce:Term coefficient="0.122070313" exponent="1" />
598
- </xtce:PolynomialCalibrator>
599
- </xtce:DefaultCalibrator>
600
- </xtce:IntegerDataEncoding>
601
- </xtce:IntegerParameterType>
602
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_4" signed="false">
603
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
604
- </xtce:IntegerParameterType>
605
- <xtce:IntegerParameterType name="ILO_APP_NHK.HVPS_T" signed="false">
606
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
607
- <xtce:DefaultCalibrator>
608
- <xtce:PolynomialCalibrator>
609
- <xtce:Term coefficient="-273.2" exponent="0" />
610
- <xtce:Term coefficient="0.122070313" exponent="1" />
611
- </xtce:PolynomialCalibrator>
612
- </xtce:DefaultCalibrator>
613
- </xtce:IntegerDataEncoding>
614
- </xtce:IntegerParameterType>
615
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_5" signed="false">
616
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
617
- </xtce:IntegerParameterType>
618
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_12V_T" signed="false">
619
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
620
- <xtce:DefaultCalibrator>
621
- <xtce:PolynomialCalibrator>
622
- <xtce:Term coefficient="-274.41" exponent="0" />
623
- <xtce:Term coefficient="0.1448" exponent="1" />
624
- </xtce:PolynomialCalibrator>
625
- </xtce:DefaultCalibrator>
626
- </xtce:IntegerDataEncoding>
627
- </xtce:IntegerParameterType>
628
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_6" signed="false">
629
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
630
- </xtce:IntegerParameterType>
631
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_5V_T" signed="false">
632
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
633
- <xtce:DefaultCalibrator>
634
- <xtce:PolynomialCalibrator>
635
- <xtce:Term coefficient="-274.41" exponent="0" />
636
- <xtce:Term coefficient="0.1448" exponent="1" />
637
- </xtce:PolynomialCalibrator>
638
- </xtce:DefaultCalibrator>
639
- </xtce:IntegerDataEncoding>
640
- </xtce:IntegerParameterType>
641
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_7" signed="false">
642
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
643
- </xtce:IntegerParameterType>
644
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_3P3V_T" signed="false">
645
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
646
- <xtce:DefaultCalibrator>
647
- <xtce:PolynomialCalibrator>
648
- <xtce:Term coefficient="-274.41" exponent="0" />
649
- <xtce:Term coefficient="0.1448" exponent="1" />
650
- </xtce:PolynomialCalibrator>
651
- </xtce:DefaultCalibrator>
652
- </xtce:IntegerDataEncoding>
653
- </xtce:IntegerParameterType>
654
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_8" signed="false">
655
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
656
- </xtce:IntegerParameterType>
657
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_3P3V" signed="false">
658
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
659
- <xtce:DefaultCalibrator>
660
- <xtce:PolynomialCalibrator>
661
- <xtce:Term coefficient="0.001611" exponent="1" />
662
- </xtce:PolynomialCalibrator>
663
- </xtce:DefaultCalibrator>
664
- </xtce:IntegerDataEncoding>
665
- </xtce:IntegerParameterType>
666
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_9" signed="false">
667
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
668
- </xtce:IntegerParameterType>
669
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_5V" signed="false">
670
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
671
- <xtce:DefaultCalibrator>
672
- <xtce:PolynomialCalibrator>
673
- <xtce:Term coefficient="0.002441" exponent="1" />
674
- </xtce:PolynomialCalibrator>
675
- </xtce:DefaultCalibrator>
676
- </xtce:IntegerDataEncoding>
677
- </xtce:IntegerParameterType>
678
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_10" signed="false">
679
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
680
- </xtce:IntegerParameterType>
681
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_N5V" signed="false">
682
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
683
- <xtce:DefaultCalibrator>
684
- <xtce:PolynomialCalibrator>
685
- <xtce:Term coefficient="-0.002441" exponent="1" />
686
- </xtce:PolynomialCalibrator>
687
- </xtce:DefaultCalibrator>
688
- </xtce:IntegerDataEncoding>
689
- </xtce:IntegerParameterType>
690
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_11" signed="false">
691
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
692
- </xtce:IntegerParameterType>
693
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_12V" signed="false">
694
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
695
- <xtce:DefaultCalibrator>
696
- <xtce:PolynomialCalibrator>
697
- <xtce:Term coefficient="0.005859" exponent="1" />
698
- </xtce:PolynomialCalibrator>
699
- </xtce:DefaultCalibrator>
700
- </xtce:IntegerDataEncoding>
701
- </xtce:IntegerParameterType>
702
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_12" signed="false">
703
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
704
- </xtce:IntegerParameterType>
705
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_N12V" signed="false">
706
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
707
- <xtce:DefaultCalibrator>
708
- <xtce:PolynomialCalibrator>
709
- <xtce:Term coefficient="-0.005859" exponent="1" />
710
- </xtce:PolynomialCalibrator>
711
- </xtce:DefaultCalibrator>
712
- </xtce:IntegerDataEncoding>
713
- </xtce:IntegerParameterType>
714
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_13" signed="false">
715
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
716
- </xtce:IntegerParameterType>
717
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_3P3V_I" signed="false">
718
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
719
- <xtce:DefaultCalibrator>
720
- <xtce:PolynomialCalibrator>
721
- <xtce:Term coefficient="0.916" exponent="1" />
722
- </xtce:PolynomialCalibrator>
723
- </xtce:DefaultCalibrator>
724
- </xtce:IntegerDataEncoding>
725
- </xtce:IntegerParameterType>
726
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_14" signed="false">
727
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
728
- </xtce:IntegerParameterType>
729
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_5V_I" signed="false">
730
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
731
- <xtce:DefaultCalibrator>
732
- <xtce:PolynomialCalibrator>
733
- <xtce:Term coefficient="0.46099999999999997" exponent="1" />
734
- </xtce:PolynomialCalibrator>
735
- </xtce:DefaultCalibrator>
736
- </xtce:IntegerDataEncoding>
737
- </xtce:IntegerParameterType>
738
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_15" signed="false">
739
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
740
- </xtce:IntegerParameterType>
741
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_N5V_I" signed="false">
742
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
743
- <xtce:DefaultCalibrator>
744
- <xtce:PolynomialCalibrator>
745
- <xtce:Term coefficient="0.46099999999999997" exponent="1" />
746
- </xtce:PolynomialCalibrator>
747
- </xtce:DefaultCalibrator>
748
- </xtce:IntegerDataEncoding>
749
- </xtce:IntegerParameterType>
750
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_16" signed="false">
751
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
752
- </xtce:IntegerParameterType>
753
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_12V_I" signed="false">
754
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
755
- <xtce:DefaultCalibrator>
756
- <xtce:PolynomialCalibrator>
757
- <xtce:Term coefficient="0.704" exponent="1" />
758
- </xtce:PolynomialCalibrator>
759
- </xtce:DefaultCalibrator>
760
- </xtce:IntegerDataEncoding>
761
- </xtce:IntegerParameterType>
762
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_17" signed="false">
763
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
764
- </xtce:IntegerParameterType>
765
- <xtce:IntegerParameterType name="ILO_APP_NHK.LVPS_N12V_I" signed="false">
766
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
767
- <xtce:DefaultCalibrator>
768
- <xtce:PolynomialCalibrator>
769
- <xtce:Term coefficient="0.704" exponent="1" />
770
- </xtce:PolynomialCalibrator>
771
- </xtce:DefaultCalibrator>
772
- </xtce:IntegerDataEncoding>
773
- </xtce:IntegerParameterType>
774
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_18" signed="false">
775
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
776
- </xtce:IntegerParameterType>
777
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_1P5V" signed="false">
778
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
779
- <xtce:DefaultCalibrator>
780
- <xtce:PolynomialCalibrator>
781
- <xtce:Term coefficient="0.001220703" exponent="1" />
782
- </xtce:PolynomialCalibrator>
783
- </xtce:DefaultCalibrator>
784
- </xtce:IntegerDataEncoding>
785
- </xtce:IntegerParameterType>
786
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_19" signed="false">
787
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
788
- </xtce:IntegerParameterType>
789
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_1P8V" signed="false">
790
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
791
- <xtce:DefaultCalibrator>
792
- <xtce:PolynomialCalibrator>
793
- <xtce:Term coefficient="0.001220703" exponent="1" />
794
- </xtce:PolynomialCalibrator>
795
- </xtce:DefaultCalibrator>
796
- </xtce:IntegerDataEncoding>
797
- </xtce:IntegerParameterType>
798
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_20" signed="false">
799
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
800
- </xtce:IntegerParameterType>
801
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_3P3V" signed="false">
802
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
803
- <xtce:DefaultCalibrator>
804
- <xtce:PolynomialCalibrator>
805
- <xtce:Term coefficient="0.001220703" exponent="1" />
806
- </xtce:PolynomialCalibrator>
807
- </xtce:DefaultCalibrator>
808
- </xtce:IntegerDataEncoding>
809
- </xtce:IntegerParameterType>
810
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_21" signed="false">
811
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
812
- </xtce:IntegerParameterType>
813
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_12V" signed="false">
814
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
815
- <xtce:DefaultCalibrator>
816
- <xtce:PolynomialCalibrator>
817
- <xtce:Term coefficient="0.005897117" exponent="1" />
818
- </xtce:PolynomialCalibrator>
819
- </xtce:DefaultCalibrator>
820
- </xtce:IntegerDataEncoding>
821
- </xtce:IntegerParameterType>
822
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_22" signed="false">
823
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
824
- </xtce:IntegerParameterType>
825
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_N12V" signed="false">
826
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
827
- <xtce:DefaultCalibrator>
828
- <xtce:PolynomialCalibrator>
829
- <xtce:Term coefficient="-0.005840685" exponent="1" />
830
- </xtce:PolynomialCalibrator>
831
- </xtce:DefaultCalibrator>
832
- </xtce:IntegerDataEncoding>
833
- </xtce:IntegerParameterType>
834
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_23" signed="false">
835
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
836
- </xtce:IntegerParameterType>
837
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_5V" signed="false">
838
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
839
- <xtce:DefaultCalibrator>
840
- <xtce:PolynomialCalibrator>
841
- <xtce:Term coefficient="0.002412457" exponent="1" />
842
- </xtce:PolynomialCalibrator>
843
- </xtce:DefaultCalibrator>
844
- </xtce:IntegerDataEncoding>
845
- </xtce:IntegerParameterType>
846
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_24" signed="false">
847
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
848
- </xtce:IntegerParameterType>
849
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_5V_ADC" signed="false">
850
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
851
- <xtce:DefaultCalibrator>
852
- <xtce:PolynomialCalibrator>
853
- <xtce:Term coefficient="0.002412457" exponent="1" />
854
- </xtce:PolynomialCalibrator>
855
- </xtce:DefaultCalibrator>
856
- </xtce:IntegerDataEncoding>
857
- </xtce:IntegerParameterType>
858
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_25" signed="false">
859
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
860
- </xtce:IntegerParameterType>
861
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_PROCESSOR_T" signed="false">
862
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
863
- <xtce:DefaultCalibrator>
864
- <xtce:PolynomialCalibrator>
865
- <xtce:Term coefficient="-273.2" exponent="0" />
866
- <xtce:Term coefficient="0.122070313" exponent="1" />
867
- </xtce:PolynomialCalibrator>
868
- </xtce:DefaultCalibrator>
869
- </xtce:IntegerDataEncoding>
870
- </xtce:IntegerParameterType>
871
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_26" signed="false">
872
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
873
- </xtce:IntegerParameterType>
874
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_1P8V_LDO_T" signed="false">
875
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
876
- <xtce:DefaultCalibrator>
877
- <xtce:PolynomialCalibrator>
878
- <xtce:Term coefficient="-273.2" exponent="0" />
879
- <xtce:Term coefficient="0.122070313" exponent="1" />
880
- </xtce:PolynomialCalibrator>
881
- </xtce:DefaultCalibrator>
882
- </xtce:IntegerDataEncoding>
883
- </xtce:IntegerParameterType>
884
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_27" signed="false">
885
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
886
- </xtce:IntegerParameterType>
887
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_1P5V_LDO_T" signed="false">
888
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
889
- <xtce:DefaultCalibrator>
890
- <xtce:PolynomialCalibrator>
891
- <xtce:Term coefficient="-273.2" exponent="0" />
892
- <xtce:Term coefficient="0.122070313" exponent="1" />
893
- </xtce:PolynomialCalibrator>
894
- </xtce:DefaultCalibrator>
895
- </xtce:IntegerDataEncoding>
896
- </xtce:IntegerParameterType>
897
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAD_28" signed="false">
898
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
899
- </xtce:IntegerParameterType>
900
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_SDRAM_T" signed="false">
901
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
902
- <xtce:DefaultCalibrator>
903
- <xtce:PolynomialCalibrator>
904
- <xtce:Term coefficient="-273.2" exponent="0" />
905
- <xtce:Term coefficient="0.122070313" exponent="1" />
906
- </xtce:PolynomialCalibrator>
907
- </xtce:DefaultCalibrator>
908
- </xtce:IntegerDataEncoding>
909
- </xtce:IntegerParameterType>
910
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_CTRL" signed="false">
911
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
912
- </xtce:IntegerParameterType>
913
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE15" signed="false">
914
- <xtce:IntegerDataEncoding sizeInBits="7" encoding="unsigned" />
915
- </xtce:IntegerParameterType>
916
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_CMD_TIMEOUT_ERR_CNT" signed="false">
917
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
918
- </xtce:IntegerParameterType>
919
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_DAC_UPDATE_ACK_ERR_CNT" signed="false">
920
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
921
- </xtce:IntegerParameterType>
922
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_READ_ERR_CNT" signed="false">
923
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
924
- </xtce:IntegerParameterType>
925
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_TLM_TIMEOUT_ERR_CNT" signed="false">
926
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
927
- </xtce:IntegerParameterType>
928
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_WRITE_ACK_ERR_CNT" signed="false">
929
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
930
- </xtce:IntegerParameterType>
931
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_CMD_PARITY_ERR_CNT" signed="false">
932
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
933
- </xtce:IntegerParameterType>
934
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_CMD_FRAME_ERR_CNT" signed="false">
935
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
936
- </xtce:IntegerParameterType>
937
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_TLM_PARITY_ERR_CNT" signed="false">
938
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
939
- </xtce:IntegerParameterType>
940
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_TLM_FRAME_ERR_CNT" signed="false">
941
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
942
- </xtce:IntegerParameterType>
943
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_TIMEOUT_ERR_CNT" signed="false">
944
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
945
- </xtce:IntegerParameterType>
946
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_CNT_ERR_CNT" signed="false">
947
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
948
- </xtce:IntegerParameterType>
949
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_CMD_CNT" signed="false">
950
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
951
- </xtce:IntegerParameterType>
952
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_MST_EN" signed="false">
953
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
954
- </xtce:IntegerParameterType>
955
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_HV_PLUG_STATE" signed="false">
956
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
957
- </xtce:IntegerParameterType>
958
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_POR_RST" signed="false">
959
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
960
- </xtce:IntegerParameterType>
961
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_PFO_RST" signed="false">
962
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
963
- </xtce:IntegerParameterType>
964
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_STAT_SOFT_RST" signed="false">
965
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
966
- </xtce:IntegerParameterType>
967
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_BULK_CTRL" signed="false">
968
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
969
- </xtce:IntegerParameterType>
970
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_POS_CTRL" signed="false">
971
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
972
- </xtce:IntegerParameterType>
973
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_NEG_CTRL" signed="false">
974
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
975
- </xtce:IntegerParameterType>
976
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE1" signed="false">
977
- <xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
978
- </xtce:IntegerParameterType>
979
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DAC_PAD0" signed="false">
980
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
981
- </xtce:IntegerParameterType>
982
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_NEG_DAC" signed="false">
983
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
984
- <xtce:DefaultCalibrator>
985
- <xtce:PolynomialCalibrator>
986
- <xtce:Term coefficient="2.2667" exponent="0" />
987
- <xtce:Term coefficient="0.41509" exponent="1" />
988
- </xtce:PolynomialCalibrator>
989
- </xtce:DefaultCalibrator>
990
- </xtce:IntegerDataEncoding>
991
- </xtce:IntegerParameterType>
992
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DAC_PAD1" signed="false">
993
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
994
- </xtce:IntegerParameterType>
995
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_POS_DAC" signed="false">
996
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
997
- <xtce:DefaultCalibrator>
998
- <xtce:PolynomialCalibrator>
999
- <xtce:Term coefficient="6.1821" exponent="0" />
1000
- <xtce:Term coefficient="0.84395" exponent="1" />
1001
- </xtce:PolynomialCalibrator>
1002
- </xtce:DefaultCalibrator>
1003
- </xtce:IntegerDataEncoding>
1004
- </xtce:IntegerParameterType>
1005
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DAC_PAD2" signed="false">
1006
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1007
- </xtce:IntegerParameterType>
1008
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_NEG_DAC" signed="false">
1009
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1010
- <xtce:DefaultCalibrator>
1011
- <xtce:PolynomialCalibrator>
1012
- <xtce:Term coefficient="0.48889" exponent="0" />
1013
- <xtce:Term coefficient="0.97806" exponent="1" />
1014
- </xtce:PolynomialCalibrator>
1015
- </xtce:DefaultCalibrator>
1016
- </xtce:IntegerDataEncoding>
1017
- </xtce:IntegerParameterType>
1018
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DAC_PAD3" signed="false">
1019
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1020
- </xtce:IntegerParameterType>
1021
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_POS_DAC" signed="false">
1022
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1023
- <xtce:DefaultCalibrator>
1024
- <xtce:PolynomialCalibrator>
1025
- <xtce:Term coefficient="5.0253" exponent="0" />
1026
- <xtce:Term coefficient="1.2213" exponent="1" />
1027
- </xtce:PolynomialCalibrator>
1028
- </xtce:DefaultCalibrator>
1029
- </xtce:IntegerDataEncoding>
1030
- </xtce:IntegerParameterType>
1031
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DAC_PAD4" signed="false">
1032
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1033
- </xtce:IntegerParameterType>
1034
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PMT_DAC" signed="false">
1035
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1036
- <xtce:DefaultCalibrator>
1037
- <xtce:PolynomialCalibrator>
1038
- <xtce:Term coefficient="0.99418" exponent="0" />
1039
- <xtce:Term coefficient="0.24414" exponent="1" />
1040
- </xtce:PolynomialCalibrator>
1041
- </xtce:DefaultCalibrator>
1042
- </xtce:IntegerDataEncoding>
1043
- </xtce:IntegerParameterType>
1044
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC1_CTRL" signed="false">
1045
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1046
- </xtce:IntegerParameterType>
1047
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC1_MODE" signed="false">
1048
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1049
- </xtce:IntegerParameterType>
1050
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC1_CH_SEL" signed="false">
1051
- <xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
1052
- </xtce:IntegerParameterType>
1053
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC2_CTRL" signed="false">
1054
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1055
- </xtce:IntegerParameterType>
1056
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC2_MODE" signed="false">
1057
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1058
- </xtce:IntegerParameterType>
1059
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE2" signed="false">
1060
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1061
- </xtce:IntegerParameterType>
1062
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC2_CH_SEL" signed="false">
1063
- <xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
1064
- </xtce:IntegerParameterType>
1065
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE3" signed="false">
1066
- <xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
1067
- </xtce:IntegerParameterType>
1068
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC1_WAIT_CNT" signed="false">
1069
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1070
- </xtce:IntegerParameterType>
1071
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC2_WAIT_CNT" signed="false">
1072
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1073
- </xtce:IntegerParameterType>
1074
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD2" signed="false">
1075
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1076
- </xtce:IntegerParameterType>
1077
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_BULK_V" signed="false">
1078
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1079
- <xtce:DefaultCalibrator>
1080
- <xtce:PolynomialCalibrator>
1081
- <xtce:Term coefficient="1.5214501510574" exponent="1" />
1082
- </xtce:PolynomialCalibrator>
1083
- </xtce:DefaultCalibrator>
1084
- </xtce:IntegerDataEncoding>
1085
- </xtce:IntegerParameterType>
1086
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD3" signed="false">
1087
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1088
- </xtce:IntegerParameterType>
1089
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_NEG_V" signed="false">
1090
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1091
- <xtce:DefaultCalibrator>
1092
- <xtce:PolynomialCalibrator>
1093
- <xtce:Term coefficient="-12.338" exponent="0" />
1094
- <xtce:Term coefficient="0.5216" exponent="1" />
1095
- </xtce:PolynomialCalibrator>
1096
- </xtce:DefaultCalibrator>
1097
- </xtce:IntegerDataEncoding>
1098
- </xtce:IntegerParameterType>
1099
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD4" signed="false">
1100
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1101
- </xtce:IntegerParameterType>
1102
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ESA_POS_V" signed="false">
1103
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1104
- <xtce:DefaultCalibrator>
1105
- <xtce:PolynomialCalibrator>
1106
- <xtce:Term coefficient="3.8245" exponent="0" />
1107
- <xtce:Term coefficient="1.0605" exponent="1" />
1108
- </xtce:PolynomialCalibrator>
1109
- </xtce:DefaultCalibrator>
1110
- </xtce:IntegerDataEncoding>
1111
- </xtce:IntegerParameterType>
1112
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD5" signed="false">
1113
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1114
- </xtce:IntegerParameterType>
1115
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_NEG_V" signed="false">
1116
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1117
- <xtce:DefaultCalibrator>
1118
- <xtce:PolynomialCalibrator>
1119
- <xtce:Term coefficient="2.2375" exponent="0" />
1120
- <xtce:Term coefficient="1.2292" exponent="1" />
1121
- </xtce:PolynomialCalibrator>
1122
- </xtce:DefaultCalibrator>
1123
- </xtce:IntegerDataEncoding>
1124
- </xtce:IntegerParameterType>
1125
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD6" signed="false">
1126
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1127
- </xtce:IntegerParameterType>
1128
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_POS_V" signed="false">
1129
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1130
- <xtce:DefaultCalibrator>
1131
- <xtce:PolynomialCalibrator>
1132
- <xtce:Term coefficient="3.7393" exponent="0" />
1133
- <xtce:Term coefficient="1.5376" exponent="1" />
1134
- </xtce:PolynomialCalibrator>
1135
- </xtce:DefaultCalibrator>
1136
- </xtce:IntegerDataEncoding>
1137
- </xtce:IntegerParameterType>
1138
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD7" signed="false">
1139
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1140
- </xtce:IntegerParameterType>
1141
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PMT_V" signed="false">
1142
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1143
- <xtce:DefaultCalibrator>
1144
- <xtce:PolynomialCalibrator>
1145
- <xtce:Term coefficient="0.46017" exponent="0" />
1146
- <xtce:Term coefficient="0.30798" exponent="1" />
1147
- </xtce:PolynomialCalibrator>
1148
- </xtce:DefaultCalibrator>
1149
- </xtce:IntegerDataEncoding>
1150
- </xtce:IntegerParameterType>
1151
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD8" signed="false">
1152
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1153
- </xtce:IntegerParameterType>
1154
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PMT_I" signed="false">
1155
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1156
- <xtce:DefaultCalibrator>
1157
- <xtce:PolynomialCalibrator>
1158
- <xtce:Term coefficient="-0.0048701" exponent="0" />
1159
- <xtce:Term coefficient="0.00076029" exponent="1" />
1160
- <xtce:Term coefficient="4.2416e-07" exponent="2" />
1161
- <xtce:Term coefficient="-1.3077e-10" exponent="3" />
1162
- </xtce:PolynomialCalibrator>
1163
- </xtce:DefaultCalibrator>
1164
- </xtce:IntegerDataEncoding>
1165
- </xtce:IntegerParameterType>
1166
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD9" signed="false">
1167
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1168
- </xtce:IntegerParameterType>
1169
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_BULK_I" signed="false">
1170
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1171
- <xtce:DefaultCalibrator>
1172
- <xtce:PolynomialCalibrator>
1173
- <xtce:Term coefficient="0.030517578125" exponent="1" />
1174
- </xtce:PolynomialCalibrator>
1175
- </xtce:DefaultCalibrator>
1176
- </xtce:IntegerDataEncoding>
1177
- </xtce:IntegerParameterType>
1178
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD10" signed="false">
1179
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1180
- </xtce:IntegerParameterType>
1181
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_NEG_I" signed="false">
1182
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1183
- <xtce:DefaultCalibrator>
1184
- <xtce:PolynomialCalibrator>
1185
- <xtce:Term coefficient="-0.0169754359" exponent="0" />
1186
- <xtce:Term coefficient="0.000923349552" exponent="1" />
1187
- <xtce:Term coefficient="4.60095316e-07" exponent="2" />
1188
- <xtce:Term coefficient="-1.98291712e-10" exponent="3" />
1189
- </xtce:PolynomialCalibrator>
1190
- </xtce:DefaultCalibrator>
1191
- </xtce:IntegerDataEncoding>
1192
- </xtce:IntegerParameterType>
1193
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD11" signed="false">
1194
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1195
- </xtce:IntegerParameterType>
1196
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_DEF_POS_I" signed="false">
1197
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1198
- <xtce:DefaultCalibrator>
1199
- <xtce:PolynomialCalibrator>
1200
- <xtce:Term coefficient="-0.01804517" exponent="0" />
1201
- <xtce:Term coefficient="0.00118384412" exponent="1" />
1202
- <xtce:Term coefficient="3.47486267e-07" exponent="2" />
1203
- <xtce:Term coefficient="-2.15827108e-10" exponent="3" />
1204
- </xtce:PolynomialCalibrator>
1205
- </xtce:DefaultCalibrator>
1206
- </xtce:IntegerDataEncoding>
1207
- </xtce:IntegerParameterType>
1208
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD12" signed="false">
1209
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1210
- </xtce:IntegerParameterType>
1211
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC_REF1_V" signed="false">
1212
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1213
- <xtce:DefaultCalibrator>
1214
- <xtce:PolynomialCalibrator>
1215
- <xtce:Term coefficient="0.002440214738897023" exponent="1" />
1216
- </xtce:PolynomialCalibrator>
1217
- </xtce:DefaultCalibrator>
1218
- </xtce:IntegerDataEncoding>
1219
- </xtce:IntegerParameterType>
1220
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD13" signed="false">
1221
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1222
- </xtce:IntegerParameterType>
1223
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_ADC_REF2_V" signed="false">
1224
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1225
- <xtce:DefaultCalibrator>
1226
- <xtce:PolynomialCalibrator>
1227
- <xtce:Term coefficient="0.0024386907669760624" exponent="1" />
1228
- </xtce:PolynomialCalibrator>
1229
- </xtce:DefaultCalibrator>
1230
- </xtce:IntegerDataEncoding>
1231
- </xtce:IntegerParameterType>
1232
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD14" signed="false">
1233
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1234
- </xtce:IntegerParameterType>
1235
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_12P0_V" signed="false">
1236
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1237
- <xtce:DefaultCalibrator>
1238
- <xtce:PolynomialCalibrator>
1239
- <xtce:Term coefficient="0.006122833814913541" exponent="1" />
1240
- </xtce:PolynomialCalibrator>
1241
- </xtce:DefaultCalibrator>
1242
- </xtce:IntegerDataEncoding>
1243
- </xtce:IntegerParameterType>
1244
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD15" signed="false">
1245
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1246
- </xtce:IntegerParameterType>
1247
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_N12P0_V" signed="false">
1248
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1249
- <xtce:DefaultCalibrator>
1250
- <xtce:PolynomialCalibrator>
1251
- <xtce:Term coefficient="-17.267" exponent="0" />
1252
- <xtce:Term coefficient="0.0054229" exponent="1" />
1253
- </xtce:PolynomialCalibrator>
1254
- </xtce:DefaultCalibrator>
1255
- </xtce:IntegerDataEncoding>
1256
- </xtce:IntegerParameterType>
1257
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD16" signed="false">
1258
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1259
- </xtce:IntegerParameterType>
1260
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_3P3_V" signed="false">
1261
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1262
- <xtce:DefaultCalibrator>
1263
- <xtce:PolynomialCalibrator>
1264
- <xtce:Term coefficient="0.0012259383128948346" exponent="1" />
1265
- </xtce:PolynomialCalibrator>
1266
- </xtce:DefaultCalibrator>
1267
- </xtce:IntegerDataEncoding>
1268
- </xtce:IntegerParameterType>
1269
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_PAD17" signed="false">
1270
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1271
- </xtce:IntegerParameterType>
1272
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_1P5_V" signed="false">
1273
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1274
- <xtce:DefaultCalibrator>
1275
- <xtce:PolynomialCalibrator>
1276
- <xtce:Term coefficient="0.0012097902097902098" exponent="1" />
1277
- </xtce:PolynomialCalibrator>
1278
- </xtce:DefaultCalibrator>
1279
- </xtce:IntegerDataEncoding>
1280
- </xtce:IntegerParameterType>
1281
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE4" signed="false">
1282
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1283
- </xtce:IntegerParameterType>
1284
- <xtce:IntegerParameterType name="ILO_APP_NHK.MEM_OP_STATE" signed="false">
1285
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1286
- </xtce:IntegerParameterType>
1287
- <xtce:IntegerParameterType name="ILO_APP_NHK.MEM_DUMP_STATE" signed="false">
1288
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1289
- </xtce:IntegerParameterType>
1290
- <xtce:IntegerParameterType name="ILO_APP_NHK.SPIN_CNT" signed="false">
1291
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
1292
- </xtce:IntegerParameterType>
1293
- <xtce:IntegerParameterType name="ILO_APP_NHK.MISSED_PPS_CNT" signed="false">
1294
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1295
- </xtce:IntegerParameterType>
1296
- <xtce:IntegerParameterType name="ILO_APP_NHK.CPU_IDLE" signed="false">
1297
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
1298
- <xtce:DefaultCalibrator>
1299
- <xtce:PolynomialCalibrator>
1300
- <xtce:Term coefficient="0.256" exponent="1" />
1301
- </xtce:PolynomialCalibrator>
1302
- </xtce:DefaultCalibrator>
1303
- </xtce:IntegerDataEncoding>
1304
- </xtce:IntegerParameterType>
1305
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE5" signed="false">
1306
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1307
- </xtce:IntegerParameterType>
1308
- <xtce:IntegerParameterType name="ILO_APP_NHK.SPIN_BIN_IDX" signed="false">
1309
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1310
- </xtce:IntegerParameterType>
1311
- <xtce:IntegerParameterType name="ILO_APP_NHK.SPIN_PERIOD" signed="false">
1312
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1313
- </xtce:IntegerParameterType>
1314
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_HEATER_1" signed="false">
1315
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1316
- </xtce:IntegerParameterType>
1317
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_HEATER_2" signed="false">
1318
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1319
- </xtce:IntegerParameterType>
1320
- <xtce:IntegerParameterType name="ILO_APP_NHK.INSTR_PWR_12V" signed="false">
1321
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1322
- </xtce:IntegerParameterType>
1323
- <xtce:IntegerParameterType name="ILO_APP_NHK.INSTR_PWR_ANALOG_5V" signed="false">
1324
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1325
- </xtce:IntegerParameterType>
1326
- <xtce:IntegerParameterType name="ILO_APP_NHK.INSTR_PWR_DIGITAL_5V_3P3V" signed="false">
1327
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1328
- </xtce:IntegerParameterType>
1329
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CMD_ERROR" signed="false">
1330
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1331
- </xtce:IntegerParameterType>
1332
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_INTERFACE" signed="false">
1333
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1334
- </xtce:IntegerParameterType>
1335
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_ADC_TLM_PKT_RCVD" signed="false">
1336
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1337
- </xtce:IntegerParameterType>
1338
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_ADC_TLM_TIMEOUT_ERROR" signed="false">
1339
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1340
- </xtce:IntegerParameterType>
1341
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_ADC_TLM_ID_ERROR" signed="false">
1342
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1343
- </xtce:IntegerParameterType>
1344
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_ADC_TLM_FRAME_ERROR" signed="false">
1345
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1346
- </xtce:IntegerParameterType>
1347
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_TLM_PKT_RCVD" signed="false">
1348
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1349
- </xtce:IntegerParameterType>
1350
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_TLM_TIMEOUT_ERROR" signed="false">
1351
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1352
- </xtce:IntegerParameterType>
1353
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_TLM_ID_ERROR" signed="false">
1354
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1355
- </xtce:IntegerParameterType>
1356
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_TLM_FRAME_ERROR" signed="false">
1357
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1358
- </xtce:IntegerParameterType>
1359
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_TLM_PKT_RCVD" signed="false">
1360
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1361
- </xtce:IntegerParameterType>
1362
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_ADC_TLM_PKT_RCVD" signed="false">
1363
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1364
- </xtce:IntegerParameterType>
1365
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_REG_TLM_PKT_RCVD" signed="false">
1366
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1367
- </xtce:IntegerParameterType>
1368
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CNT_TLM_PKT_RCVD" signed="false">
1369
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1370
- </xtce:IntegerParameterType>
1371
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_DE_TLM_PKT_RCVD" signed="false">
1372
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1373
- </xtce:IntegerParameterType>
1374
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_TLM_TIMEOUT_ERROR" signed="false">
1375
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1376
- </xtce:IntegerParameterType>
1377
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_TLM_ID_ERROR" signed="false">
1378
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1379
- </xtce:IntegerParameterType>
1380
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_TLM_FRAME_ERROR" signed="false">
1381
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1382
- </xtce:IntegerParameterType>
1383
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE7" signed="false">
1384
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1385
- </xtce:IntegerParameterType>
1386
- <xtce:IntegerParameterType name="ILO_APP_NHK.DIRECT_EVENT_TIME_TAG_CNT" signed="false">
1387
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1388
- </xtce:IntegerParameterType>
1389
- <xtce:IntegerParameterType name="ILO_APP_NHK.DIRECT_EVENT_FIFO_CNT" signed="false">
1390
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
1391
- </xtce:IntegerParameterType>
1392
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_INTERFACE" signed="false">
1393
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1394
- </xtce:IntegerParameterType>
1395
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPC_TLM_TIMEOUT_ERROR" signed="false">
1396
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1397
- </xtce:IntegerParameterType>
1398
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPC_TLM_PARITY_ERROR" signed="false">
1399
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1400
- </xtce:IntegerParameterType>
1401
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPC_TLM_PKT_RCVD" signed="false">
1402
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1403
- </xtce:IntegerParameterType>
1404
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_HV_PLUG_STATE" signed="false">
1405
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
1406
- </xtce:IntegerParameterType>
1407
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE10" signed="false">
1408
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
1409
- </xtce:IntegerParameterType>
1410
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CMD_COUNT" signed="false">
1411
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1412
- </xtce:IntegerParameterType>
1413
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CTRL_INT_MUX" signed="false">
1414
- <xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
1415
- </xtce:IntegerParameterType>
1416
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CTRL_ADC_CLK_DS" signed="false">
1417
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1418
- </xtce:IntegerParameterType>
1419
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CTRL_OSCOPE" signed="false">
1420
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1421
- </xtce:IntegerParameterType>
1422
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CTRL_STAR_SYNC" signed="false">
1423
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1424
- </xtce:IntegerParameterType>
1425
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_CTRL_DATA" signed="false">
1426
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1427
- </xtce:IntegerParameterType>
1428
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE11" signed="false">
1429
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1430
- </xtce:IntegerParameterType>
1431
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_DATA_INTERVAL" signed="false">
1432
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1433
- <xtce:DefaultCalibrator>
1434
- <xtce:PolynomialCalibrator>
1435
- <xtce:Term coefficient="13.3344" exponent="0" />
1436
- <xtce:Term coefficient="0.06945" exponent="1" />
1437
- </xtce:PolynomialCalibrator>
1438
- </xtce:DefaultCalibrator>
1439
- </xtce:IntegerDataEncoding>
1440
- </xtce:IntegerParameterType>
1441
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_HVPS_CTRL_SYNC_CLK" signed="false">
1442
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1443
- </xtce:IntegerParameterType>
1444
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_HVPS_CTRL_PAC" signed="false">
1445
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1446
- </xtce:IntegerParameterType>
1447
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_HVPS_CTRL_MCP" signed="false">
1448
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1449
- </xtce:IntegerParameterType>
1450
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_HVPS_CTRL_LV" signed="false">
1451
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1452
- </xtce:IntegerParameterType>
1453
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE12" signed="false">
1454
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1455
- </xtce:IntegerParameterType>
1456
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAC_VSET" signed="false">
1457
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1458
- <xtce:DefaultCalibrator>
1459
- <xtce:PolynomialCalibrator>
1460
- <xtce:Term coefficient="-17.348051" exponent="0" />
1461
- <xtce:Term coefficient="97.307885" exponent="1" />
1462
- </xtce:PolynomialCalibrator>
1463
- </xtce:DefaultCalibrator>
1464
- </xtce:IntegerDataEncoding>
1465
- </xtce:IntegerParameterType>
1466
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAC_OCP" signed="false">
1467
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1468
- <xtce:DefaultCalibrator>
1469
- <xtce:PolynomialCalibrator>
1470
- <xtce:Term coefficient="0.01933594" exponent="1" />
1471
- </xtce:PolynomialCalibrator>
1472
- </xtce:DefaultCalibrator>
1473
- </xtce:IntegerDataEncoding>
1474
- </xtce:IntegerParameterType>
1475
- <xtce:IntegerParameterType name="ILO_APP_NHK.MCP_VSET" signed="false">
1476
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1477
- <xtce:DefaultCalibrator>
1478
- <xtce:PolynomialCalibrator>
1479
- <xtce:Term coefficient="543.439706" exponent="0" />
1480
- <xtce:Term coefficient="33.730585" exponent="1" />
1481
- </xtce:PolynomialCalibrator>
1482
- </xtce:DefaultCalibrator>
1483
- </xtce:IntegerDataEncoding>
1484
- </xtce:IntegerParameterType>
1485
- <xtce:IntegerParameterType name="ILO_APP_NHK.MCP_OCP" signed="false">
1486
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1487
- <xtce:DefaultCalibrator>
1488
- <xtce:PolynomialCalibrator>
1489
- <xtce:Term coefficient="0.01933594" exponent="1" />
1490
- </xtce:PolynomialCalibrator>
1491
- </xtce:DefaultCalibrator>
1492
- </xtce:IntegerDataEncoding>
1493
- </xtce:IntegerParameterType>
1494
- <xtce:IntegerParameterType name="ILO_APP_NHK.STAR_OFFSET_ADJUST" signed="false">
1495
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1496
- <xtce:DefaultCalibrator>
1497
- <xtce:PolynomialCalibrator>
1498
- <xtce:Term coefficient="-1.0" exponent="0" />
1499
- <xtce:Term coefficient="0.01933594" exponent="1" />
1500
- </xtce:PolynomialCalibrator>
1501
- </xtce:DefaultCalibrator>
1502
- </xtce:IntegerDataEncoding>
1503
- </xtce:IntegerParameterType>
1504
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_OSCOPE_CH1" signed="false">
1505
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1506
- </xtce:IntegerParameterType>
1507
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_OSCOPE_CH0" signed="false">
1508
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1509
- </xtce:IntegerParameterType>
1510
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD0" signed="false">
1511
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1512
- </xtce:IntegerParameterType>
1513
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_HOT_SPOT_T" signed="false">
1514
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1515
- <xtce:DefaultCalibrator>
1516
- <xtce:PolynomialCalibrator>
1517
- <xtce:Term coefficient="-273.4502" exponent="0" />
1518
- <xtce:Term coefficient="0.1201366" exponent="1" />
1519
- </xtce:PolynomialCalibrator>
1520
- </xtce:DefaultCalibrator>
1521
- </xtce:IntegerDataEncoding>
1522
- </xtce:IntegerParameterType>
1523
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD1" signed="false">
1524
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1525
- </xtce:IntegerParameterType>
1526
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_COLD_SPOT_T" signed="false">
1527
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1528
- <xtce:DefaultCalibrator>
1529
- <xtce:PolynomialCalibrator>
1530
- <xtce:Term coefficient="-276.0724" exponent="0" />
1531
- <xtce:Term coefficient="0.121021" exponent="1" />
1532
- </xtce:PolynomialCalibrator>
1533
- </xtce:DefaultCalibrator>
1534
- </xtce:IntegerDataEncoding>
1535
- </xtce:IntegerParameterType>
1536
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD2" signed="false">
1537
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1538
- </xtce:IntegerParameterType>
1539
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_5P0_V" signed="false">
1540
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1541
- <xtce:DefaultCalibrator>
1542
- <xtce:PolynomialCalibrator>
1543
- <xtce:Term coefficient="0.002416992" exponent="1" />
1544
- </xtce:PolynomialCalibrator>
1545
- </xtce:DefaultCalibrator>
1546
- </xtce:IntegerDataEncoding>
1547
- </xtce:IntegerParameterType>
1548
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD3" signed="false">
1549
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1550
- </xtce:IntegerParameterType>
1551
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_3P3_V" signed="false">
1552
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1553
- <xtce:DefaultCalibrator>
1554
- <xtce:PolynomialCalibrator>
1555
- <xtce:Term coefficient="0.001208496" exponent="1" />
1556
- </xtce:PolynomialCalibrator>
1557
- </xtce:DefaultCalibrator>
1558
- </xtce:IntegerDataEncoding>
1559
- </xtce:IntegerParameterType>
1560
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD4" signed="false">
1561
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1562
- </xtce:IntegerParameterType>
1563
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_12P0_V" signed="false">
1564
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1565
- <xtce:DefaultCalibrator>
1566
- <xtce:PolynomialCalibrator>
1567
- <xtce:Term coefficient="0.007250977" exponent="1" />
1568
- </xtce:PolynomialCalibrator>
1569
- </xtce:DefaultCalibrator>
1570
- </xtce:IntegerDataEncoding>
1571
- </xtce:IntegerParameterType>
1572
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD5" signed="false">
1573
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1574
- </xtce:IntegerParameterType>
1575
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_N12P0_V" signed="false">
1576
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1577
- <xtce:DefaultCalibrator>
1578
- <xtce:PolynomialCalibrator>
1579
- <xtce:Term coefficient="-16.434" exponent="0" />
1580
- <xtce:Term coefficient="0.005220703" exponent="1" />
1581
- </xtce:PolynomialCalibrator>
1582
- </xtce:DefaultCalibrator>
1583
- </xtce:IntegerDataEncoding>
1584
- </xtce:IntegerParameterType>
1585
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD6" signed="false">
1586
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1587
- </xtce:IntegerParameterType>
1588
- <xtce:IntegerParameterType name="ILO_APP_NHK.LV_I" signed="false">
1589
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1590
- <xtce:DefaultCalibrator>
1591
- <xtce:PolynomialCalibrator>
1592
- <xtce:Term coefficient="0.001208496" exponent="1" />
1593
- </xtce:PolynomialCalibrator>
1594
- </xtce:DefaultCalibrator>
1595
- </xtce:IntegerDataEncoding>
1596
- </xtce:IntegerParameterType>
1597
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD7" signed="false">
1598
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1599
- </xtce:IntegerParameterType>
1600
- <xtce:IntegerParameterType name="ILO_APP_NHK.LV_V" signed="false">
1601
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1602
- <xtce:DefaultCalibrator>
1603
- <xtce:PolynomialCalibrator>
1604
- <xtce:Term coefficient="0.00109836" exponent="1" />
1605
- </xtce:PolynomialCalibrator>
1606
- </xtce:DefaultCalibrator>
1607
- </xtce:IntegerDataEncoding>
1608
- </xtce:IntegerParameterType>
1609
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD8" signed="false">
1610
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1611
- </xtce:IntegerParameterType>
1612
- <xtce:IntegerParameterType name="ILO_APP_NHK.LV_T" signed="false">
1613
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1614
- <xtce:DefaultCalibrator>
1615
- <xtce:PolynomialCalibrator>
1616
- <xtce:Term coefficient="-272.5289" exponent="0" />
1617
- <xtce:Term coefficient="0.2386227" exponent="1" />
1618
- </xtce:PolynomialCalibrator>
1619
- </xtce:DefaultCalibrator>
1620
- </xtce:IntegerDataEncoding>
1621
- </xtce:IntegerParameterType>
1622
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD9" signed="false">
1623
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1624
- </xtce:IntegerParameterType>
1625
- <xtce:IntegerParameterType name="ILO_APP_NHK.MCP_I" signed="false">
1626
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1627
- <xtce:DefaultCalibrator>
1628
- <xtce:PolynomialCalibrator>
1629
- <xtce:Term coefficient="-0.1548" exponent="0" />
1630
- <xtce:Term coefficient="0.043607" exponent="1" />
1631
- </xtce:PolynomialCalibrator>
1632
- </xtce:DefaultCalibrator>
1633
- </xtce:IntegerDataEncoding>
1634
- </xtce:IntegerParameterType>
1635
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD10" signed="false">
1636
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1637
- </xtce:IntegerParameterType>
1638
- <xtce:IntegerParameterType name="ILO_APP_NHK.MCP_V" signed="false">
1639
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1640
- <xtce:DefaultCalibrator>
1641
- <xtce:PolynomialCalibrator>
1642
- <xtce:Term coefficient="-347.660309" exponent="0" />
1643
- <xtce:Term coefficient="9.050641" exponent="1" />
1644
- </xtce:PolynomialCalibrator>
1645
- </xtce:DefaultCalibrator>
1646
- </xtce:IntegerDataEncoding>
1647
- </xtce:IntegerParameterType>
1648
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD11" signed="false">
1649
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1650
- </xtce:IntegerParameterType>
1651
- <xtce:IntegerParameterType name="ILO_APP_NHK.MCP_T" signed="false">
1652
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1653
- <xtce:DefaultCalibrator>
1654
- <xtce:PolynomialCalibrator>
1655
- <xtce:Term coefficient="-274.9114" exponent="0" />
1656
- <xtce:Term coefficient="0.2405863" exponent="1" />
1657
- </xtce:PolynomialCalibrator>
1658
- </xtce:DefaultCalibrator>
1659
- </xtce:IntegerDataEncoding>
1660
- </xtce:IntegerParameterType>
1661
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD12" signed="false">
1662
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1663
- </xtce:IntegerParameterType>
1664
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAC_I" signed="false">
1665
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1666
- <xtce:DefaultCalibrator>
1667
- <xtce:PolynomialCalibrator>
1668
- <xtce:Term coefficient="-2.1874" exponent="0" />
1669
- <xtce:Term coefficient="0.056193" exponent="1" />
1670
- </xtce:PolynomialCalibrator>
1671
- </xtce:DefaultCalibrator>
1672
- </xtce:IntegerDataEncoding>
1673
- </xtce:IntegerParameterType>
1674
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD13" signed="false">
1675
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1676
- </xtce:IntegerParameterType>
1677
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAC_V" signed="false">
1678
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1679
- <xtce:DefaultCalibrator>
1680
- <xtce:PolynomialCalibrator>
1681
- <xtce:Term coefficient="-23.226667" exponent="0" />
1682
- <xtce:Term coefficient="12.384764" exponent="1" />
1683
- </xtce:PolynomialCalibrator>
1684
- </xtce:DefaultCalibrator>
1685
- </xtce:IntegerDataEncoding>
1686
- </xtce:IntegerParameterType>
1687
- <xtce:IntegerParameterType name="ILO_APP_NHK.IFB_PAD14" signed="false">
1688
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1689
- </xtce:IntegerParameterType>
1690
- <xtce:IntegerParameterType name="ILO_APP_NHK.PAC_T" signed="false">
1691
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1692
- <xtce:DefaultCalibrator>
1693
- <xtce:PolynomialCalibrator>
1694
- <xtce:Term coefficient="-271.1174" exponent="0" />
1695
- <xtce:Term coefficient="0.2373942" exponent="1" />
1696
- </xtce:PolynomialCalibrator>
1697
- </xtce:DefaultCalibrator>
1698
- </xtce:IntegerDataEncoding>
1699
- </xtce:IntegerParameterType>
1700
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_CMD_ERROR" signed="false">
1701
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1702
- </xtce:IntegerParameterType>
1703
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD0" signed="false">
1704
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1705
- </xtce:IntegerParameterType>
1706
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_CFD_V" signed="false">
1707
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1708
- <xtce:DefaultCalibrator>
1709
- <xtce:PolynomialCalibrator>
1710
- <xtce:Term coefficient="0.00991867816091954" exponent="1" />
1711
- </xtce:PolynomialCalibrator>
1712
- </xtce:DefaultCalibrator>
1713
- </xtce:IntegerDataEncoding>
1714
- </xtce:IntegerParameterType>
1715
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD1" signed="false">
1716
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1717
- </xtce:IntegerParameterType>
1718
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PRE_T" signed="false">
1719
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1720
- <xtce:DefaultCalibrator>
1721
- <xtce:PolynomialCalibrator>
1722
- <xtce:Term coefficient="-267.76137705513673" exponent="0" />
1723
- <xtce:Term coefficient="0.5663548006176765" exponent="1" />
1724
- </xtce:PolynomialCalibrator>
1725
- </xtce:DefaultCalibrator>
1726
- </xtce:IntegerDataEncoding>
1727
- </xtce:IntegerParameterType>
1728
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD2" signed="false">
1729
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1730
- </xtce:IntegerParameterType>
1731
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_REG_T" signed="false">
1732
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1733
- <xtce:DefaultCalibrator>
1734
- <xtce:PolynomialCalibrator>
1735
- <xtce:Term coefficient="-266.92886348747373" exponent="0" />
1736
- <xtce:Term coefficient="0.5648677344297106" exponent="1" />
1737
- </xtce:PolynomialCalibrator>
1738
- </xtce:DefaultCalibrator>
1739
- </xtce:IntegerDataEncoding>
1740
- </xtce:IntegerParameterType>
1741
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD3" signed="false">
1742
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1743
- </xtce:IntegerParameterType>
1744
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_MCP_I" signed="false">
1745
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1746
- <xtce:DefaultCalibrator>
1747
- <xtce:PolynomialCalibrator>
1748
- <xtce:Term coefficient="-0.3033433595481494" exponent="0" />
1749
- <xtce:Term coefficient="0.02445388053548595" exponent="1" />
1750
- </xtce:PolynomialCalibrator>
1751
- </xtce:DefaultCalibrator>
1752
- </xtce:IntegerDataEncoding>
1753
- </xtce:IntegerParameterType>
1754
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD4" signed="false">
1755
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1756
- </xtce:IntegerParameterType>
1757
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_MCP_V" signed="false">
1758
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1759
- <xtce:DefaultCalibrator>
1760
- <xtce:PolynomialCalibrator>
1761
- <xtce:Term coefficient="-53.778188656019665" exponent="0" />
1762
- <xtce:Term coefficient="5.716337129296956" exponent="1" />
1763
- </xtce:PolynomialCalibrator>
1764
- </xtce:DefaultCalibrator>
1765
- </xtce:IntegerDataEncoding>
1766
- </xtce:IntegerParameterType>
1767
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD5" signed="false">
1768
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1769
- </xtce:IntegerParameterType>
1770
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_I" signed="false">
1771
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1772
- <xtce:DefaultCalibrator>
1773
- <xtce:PolynomialCalibrator>
1774
- <xtce:Term coefficient="2.525483578148183" exponent="0" />
1775
- <xtce:Term coefficient="0.3050864416570392" exponent="1" />
1776
- </xtce:PolynomialCalibrator>
1777
- </xtce:DefaultCalibrator>
1778
- </xtce:IntegerDataEncoding>
1779
- </xtce:IntegerParameterType>
1780
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD6" signed="false">
1781
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1782
- </xtce:IntegerParameterType>
1783
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_P5_V" signed="false">
1784
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1785
- <xtce:DefaultCalibrator>
1786
- <xtce:PolynomialCalibrator>
1787
- <xtce:Term coefficient="0.009937854710556186" exponent="1" />
1788
- </xtce:PolynomialCalibrator>
1789
- </xtce:DefaultCalibrator>
1790
- </xtce:IntegerDataEncoding>
1791
- </xtce:IntegerParameterType>
1792
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_PAD7" signed="false">
1793
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
1794
- </xtce:IntegerParameterType>
1795
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_P6_V" signed="false">
1796
- <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
1797
- <xtce:DefaultCalibrator>
1798
- <xtce:PolynomialCalibrator>
1799
- <xtce:Term coefficient="-0.027111787964010148" exponent="0" />
1800
- <xtce:Term coefficient="0.009926214962484822" exponent="1" />
1801
- </xtce:PolynomialCalibrator>
1802
- </xtce:DefaultCalibrator>
1803
- </xtce:IntegerDataEncoding>
1804
- </xtce:IntegerParameterType>
1805
- <xtce:IntegerParameterType name="ILO_APP_NHK.AN_A_THR" signed="false">
1806
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1807
- </xtce:IntegerParameterType>
1808
- <xtce:IntegerParameterType name="ILO_APP_NHK.AN_B0_THR" signed="false">
1809
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1810
- </xtce:IntegerParameterType>
1811
- <xtce:IntegerParameterType name="ILO_APP_NHK.AN_B3_THR" signed="false">
1812
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1813
- </xtce:IntegerParameterType>
1814
- <xtce:IntegerParameterType name="ILO_APP_NHK.AN_C_THR" signed="false">
1815
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
1816
- </xtce:IntegerParameterType>
1817
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_TLM" signed="false">
1818
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1819
- </xtce:IntegerParameterType>
1820
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_DE_TLM" signed="false">
1821
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1822
- </xtce:IntegerParameterType>
1823
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_TOF3_REQ" signed="false">
1824
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1825
- </xtce:IntegerParameterType>
1826
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_TOF2_REQ" signed="false">
1827
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1828
- </xtce:IntegerParameterType>
1829
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_TOF1_REQ" signed="false">
1830
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1831
- </xtce:IntegerParameterType>
1832
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF_BD_CTRL_TOF0_REQ" signed="false">
1833
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1834
- </xtce:IntegerParameterType>
1835
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_C_STATE" signed="false">
1836
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1837
- </xtce:IntegerParameterType>
1838
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_C_SRC" signed="false">
1839
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1840
- </xtce:IntegerParameterType>
1841
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_B3_STATE" signed="false">
1842
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1843
- </xtce:IntegerParameterType>
1844
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_B3_SRC" signed="false">
1845
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1846
- </xtce:IntegerParameterType>
1847
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_B0_STATE" signed="false">
1848
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1849
- </xtce:IntegerParameterType>
1850
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_B0_SRC" signed="false">
1851
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1852
- </xtce:IntegerParameterType>
1853
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_A_STATE" signed="false">
1854
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1855
- </xtce:IntegerParameterType>
1856
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CTRL_AN_A_SRC" signed="false">
1857
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1858
- </xtce:IntegerParameterType>
1859
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE13" signed="false">
1860
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
1861
- </xtce:IntegerParameterType>
1862
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CNFG_FREQ" signed="false">
1863
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned">
1864
- <xtce:DefaultCalibrator>
1865
- <xtce:PolynomialCalibrator>
1866
- <xtce:Term coefficient="1.0" exponent="0" />
1867
- <xtce:Term coefficient="1.0" exponent="1" />
1868
- </xtce:PolynomialCalibrator>
1869
- </xtce:DefaultCalibrator>
1870
- </xtce:IntegerDataEncoding>
1871
- </xtce:IntegerParameterType>
1872
- <xtce:IntegerParameterType name="ILO_APP_NHK.STIM_CNFG_DELAY" signed="false">
1873
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned">
1874
- <xtce:DefaultCalibrator>
1875
- <xtce:PolynomialCalibrator>
1876
- <xtce:Term coefficient="20.833333333333336" exponent="1" />
1877
- </xtce:PolynomialCalibrator>
1878
- </xtce:DefaultCalibrator>
1879
- </xtce:IntegerDataEncoding>
1880
- </xtce:IntegerParameterType>
1881
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF3_THR" signed="false">
1882
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1883
- <xtce:DefaultCalibrator>
1884
- <xtce:PolynomialCalibrator>
1885
- <xtce:Term coefficient="0.46726299520543435" exponent="0" />
1886
- <xtce:Term coefficient="1.3715585136889914" exponent="1" />
1887
- </xtce:PolynomialCalibrator>
1888
- </xtce:DefaultCalibrator>
1889
- </xtce:IntegerDataEncoding>
1890
- </xtce:IntegerParameterType>
1891
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF2_THR" signed="false">
1892
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1893
- <xtce:DefaultCalibrator>
1894
- <xtce:PolynomialCalibrator>
1895
- <xtce:Term coefficient="0.3744222712503813" exponent="0" />
1896
- <xtce:Term coefficient="1.3312687906975365" exponent="1" />
1897
- </xtce:PolynomialCalibrator>
1898
- </xtce:DefaultCalibrator>
1899
- </xtce:IntegerDataEncoding>
1900
- </xtce:IntegerParameterType>
1901
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF1_THR" signed="false">
1902
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1903
- <xtce:DefaultCalibrator>
1904
- <xtce:PolynomialCalibrator>
1905
- <xtce:Term coefficient="-0.7201813051183734" exponent="0" />
1906
- <xtce:Term coefficient="1.3209957435920419" exponent="1" />
1907
- </xtce:PolynomialCalibrator>
1908
- </xtce:DefaultCalibrator>
1909
- </xtce:IntegerDataEncoding>
1910
- </xtce:IntegerParameterType>
1911
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF0_THR" signed="false">
1912
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned">
1913
- <xtce:DefaultCalibrator>
1914
- <xtce:PolynomialCalibrator>
1915
- <xtce:Term coefficient="0.5525235549626046" exponent="0" />
1916
- <xtce:Term coefficient="1.3469946516059763" exponent="1" />
1917
- </xtce:PolynomialCalibrator>
1918
- </xtce:DefaultCalibrator>
1919
- </xtce:IntegerDataEncoding>
1920
- </xtce:IntegerParameterType>
1921
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF3_VETO" signed="false">
1922
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1923
- </xtce:IntegerParameterType>
1924
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF2_VETO" signed="false">
1925
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1926
- </xtce:IntegerParameterType>
1927
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF1_VETO" signed="false">
1928
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1929
- </xtce:IntegerParameterType>
1930
- <xtce:IntegerParameterType name="ILO_APP_NHK.TOF0_VETO" signed="false">
1931
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
1932
- </xtce:IntegerParameterType>
1933
- <xtce:IntegerParameterType name="ILO_APP_NHK.BHV_SPARE14" signed="false">
1934
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1935
- </xtce:IntegerParameterType>
1936
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD0" signed="false">
1937
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1938
- </xtce:IntegerParameterType>
1939
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_COARSE_POT_PRI" signed="false">
1940
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1941
- <xtce:DefaultCalibrator>
1942
- <xtce:PolynomialCalibrator>
1943
- <xtce:Term coefficient="0.085693" exponent="1" />
1944
- </xtce:PolynomialCalibrator>
1945
- </xtce:DefaultCalibrator>
1946
- </xtce:IntegerDataEncoding>
1947
- </xtce:IntegerParameterType>
1948
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD1" signed="false">
1949
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1950
- </xtce:IntegerParameterType>
1951
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_FINE_POT_PRI" signed="false">
1952
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1953
- <xtce:DefaultCalibrator>
1954
- <xtce:PolynomialCalibrator>
1955
- <xtce:Term coefficient="0.0001406" exponent="1" />
1956
- </xtce:PolynomialCalibrator>
1957
- </xtce:DefaultCalibrator>
1958
- </xtce:IntegerDataEncoding>
1959
- </xtce:IntegerParameterType>
1960
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD2" signed="false">
1961
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1962
- </xtce:IntegerParameterType>
1963
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_COARSE_POT_RED" signed="false">
1964
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1965
- <xtce:DefaultCalibrator>
1966
- <xtce:PolynomialCalibrator>
1967
- <xtce:Term coefficient="0.085693" exponent="1" />
1968
- </xtce:PolynomialCalibrator>
1969
- </xtce:DefaultCalibrator>
1970
- </xtce:IntegerDataEncoding>
1971
- </xtce:IntegerParameterType>
1972
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD3" signed="false">
1973
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1974
- </xtce:IntegerParameterType>
1975
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_FINE_POT_RED" signed="false">
1976
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1977
- <xtce:DefaultCalibrator>
1978
- <xtce:PolynomialCalibrator>
1979
- <xtce:Term coefficient="0.0001406" exponent="1" />
1980
- </xtce:PolynomialCalibrator>
1981
- </xtce:DefaultCalibrator>
1982
- </xtce:IntegerDataEncoding>
1983
- </xtce:IntegerParameterType>
1984
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD4" signed="false">
1985
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
1986
- </xtce:IntegerParameterType>
1987
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_ACTUATOR_T" signed="false">
1988
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
1989
- <xtce:DefaultCalibrator>
1990
- <xtce:PolynomialCalibrator>
1991
- <xtce:Term coefficient="139.298" exponent="0" />
1992
- <xtce:Term coefficient="-0.144176" exponent="1" />
1993
- <xtce:Term coefficient="8.17274e-05" exponent="2" />
1994
- <xtce:Term coefficient="-1.89867e-08" exponent="3" />
1995
- <xtce:Term coefficient="-3.35732e-12" exponent="4" />
1996
- <xtce:Term coefficient="2.2614e-15" exponent="5" />
1997
- <xtce:Term coefficient="-2.83182e-19" exponent="6" />
1998
- </xtce:PolynomialCalibrator>
1999
- </xtce:DefaultCalibrator>
2000
- </xtce:IntegerDataEncoding>
2001
- </xtce:IntegerParameterType>
2002
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD5" signed="false">
2003
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
2004
- </xtce:IntegerParameterType>
2005
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_BOARD_T" signed="false">
2006
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
2007
- <xtce:DefaultCalibrator>
2008
- <xtce:PolynomialCalibrator>
2009
- <xtce:Term coefficient="139.298" exponent="0" />
2010
- <xtce:Term coefficient="-0.144176" exponent="1" />
2011
- <xtce:Term coefficient="8.17274e-05" exponent="2" />
2012
- <xtce:Term coefficient="-1.89867e-08" exponent="3" />
2013
- <xtce:Term coefficient="-3.35732e-12" exponent="4" />
2014
- <xtce:Term coefficient="2.2614e-15" exponent="5" />
2015
- <xtce:Term coefficient="-2.83182e-19" exponent="6" />
2016
- </xtce:PolynomialCalibrator>
2017
- </xtce:DefaultCalibrator>
2018
- </xtce:IntegerDataEncoding>
2019
- </xtce:IntegerParameterType>
2020
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD6" signed="false">
2021
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
2022
- </xtce:IntegerParameterType>
2023
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_MOTOR_CURRENT_PRI" signed="false">
2024
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
2025
- <xtce:DefaultCalibrator>
2026
- <xtce:PolynomialCalibrator>
2027
- <xtce:Term coefficient="0.57" exponent="1" />
2028
- </xtce:PolynomialCalibrator>
2029
- </xtce:DefaultCalibrator>
2030
- </xtce:IntegerDataEncoding>
2031
- </xtce:IntegerParameterType>
2032
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PAD7" signed="false">
2033
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
2034
- </xtce:IntegerParameterType>
2035
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_MOTOR_CURRENT_RED" signed="false">
2036
- <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
2037
- <xtce:DefaultCalibrator>
2038
- <xtce:PolynomialCalibrator>
2039
- <xtce:Term coefficient="0.57" exponent="1" />
2040
- </xtce:PolynomialCalibrator>
2041
- </xtce:DefaultCalibrator>
2042
- </xtce:IntegerDataEncoding>
2043
- </xtce:IntegerParameterType>
2044
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_PRI" signed="false">
2045
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2046
- <xtce:DefaultCalibrator>
2047
- <xtce:PolynomialCalibrator>
2048
- <xtce:Term coefficient="0.002460266692909511" exponent="1" />
2049
- </xtce:PolynomialCalibrator>
2050
- </xtce:DefaultCalibrator>
2051
- </xtce:IntegerDataEncoding>
2052
- </xtce:IntegerParameterType>
2053
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_PRI" signed="false">
2054
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2055
- </xtce:IntegerParameterType>
2056
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_RED" signed="false">
2057
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2058
- <xtce:DefaultCalibrator>
2059
- <xtce:PolynomialCalibrator>
2060
- <xtce:Term coefficient="0.002460266692909511" exponent="1" />
2061
- </xtce:PolynomialCalibrator>
2062
- </xtce:DefaultCalibrator>
2063
- </xtce:IntegerDataEncoding>
2064
- </xtce:IntegerParameterType>
2065
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_RED" signed="false">
2066
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2067
- </xtce:IntegerParameterType>
2068
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_PRI" signed="false">
2069
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2070
- <xtce:DefaultCalibrator>
2071
- <xtce:PolynomialCalibrator>
2072
- <xtce:Term coefficient="0.002460266692909511" exponent="1" />
2073
- </xtce:PolynomialCalibrator>
2074
- </xtce:DefaultCalibrator>
2075
- </xtce:IntegerDataEncoding>
2076
- </xtce:IntegerParameterType>
2077
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_RED" signed="false">
2078
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2079
- <xtce:DefaultCalibrator>
2080
- <xtce:PolynomialCalibrator>
2081
- <xtce:Term coefficient="0.002460266692909511" exponent="1" />
2082
- </xtce:PolynomialCalibrator>
2083
- </xtce:DefaultCalibrator>
2084
- </xtce:IntegerDataEncoding>
2085
- </xtce:IntegerParameterType>
2086
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CURRENT_SETPT_PRI" signed="false">
2087
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2088
- </xtce:IntegerParameterType>
2089
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_CURRENT_SETPT_RED" signed="false">
2090
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2091
- </xtce:IntegerParameterType>
2092
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PRI_ACTIVE" signed="false">
2093
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2094
- </xtce:IntegerParameterType>
2095
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PRI_POWERED" signed="false">
2096
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2097
- </xtce:IntegerParameterType>
2098
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PRI_USTEP" signed="false">
2099
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2100
- </xtce:IntegerParameterType>
2101
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_PRI_ACCEL" signed="false">
2102
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2103
- </xtce:IntegerParameterType>
2104
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_RED_ACTIVE" signed="false">
2105
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2106
- </xtce:IntegerParameterType>
2107
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_RED_POWERED" signed="false">
2108
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2109
- </xtce:IntegerParameterType>
2110
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_RED_USTEP" signed="false">
2111
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2112
- </xtce:IntegerParameterType>
2113
- <xtce:IntegerParameterType name="ILO_APP_NHK.PCC_RED_ACCEL" signed="false">
2114
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2115
- </xtce:IntegerParameterType>
2116
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_ID" signed="false">
2117
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2118
- </xtce:IntegerParameterType>
2119
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_STATE" signed="false">
2120
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2121
- </xtce:IntegerParameterType>
2122
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_NUM_CMDS" signed="false">
2123
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2124
- </xtce:IntegerParameterType>
2125
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_NUM_CMDS_EXE" signed="false">
2126
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2127
- </xtce:IntegerParameterType>
2128
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_INDEX" signed="false">
2129
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2130
- </xtce:IntegerParameterType>
2131
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_NEXT_OPCODE" signed="false">
2132
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2133
- </xtce:IntegerParameterType>
2134
- <xtce:IntegerParameterType name="ILO_APP_NHK.RTS_TIME_REMAINING" signed="false">
2135
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2136
- </xtce:IntegerParameterType>
2137
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_HTR_SELECT" signed="false">
2138
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2139
- </xtce:IntegerParameterType>
2140
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_HTR_MODE" signed="false">
2141
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2142
- </xtce:IntegerParameterType>
2143
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_HTR_CYCLE_TIME" signed="false">
2144
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2145
- </xtce:IntegerParameterType>
2146
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_HTR_LO_SETPOINT" signed="false">
2147
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2148
- <xtce:DefaultCalibrator>
2149
- <xtce:PolynomialCalibrator>
2150
- <xtce:Term coefficient="-273.2" exponent="0" />
2151
- <xtce:Term coefficient="0.1220703125" exponent="1" />
2152
- </xtce:PolynomialCalibrator>
2153
- </xtce:DefaultCalibrator>
2154
- </xtce:IntegerDataEncoding>
2155
- </xtce:IntegerParameterType>
2156
- <xtce:IntegerParameterType name="ILO_APP_NHK.OP_HTR_HI_SETPOINT" signed="false">
2157
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2158
- <xtce:DefaultCalibrator>
2159
- <xtce:PolynomialCalibrator>
2160
- <xtce:Term coefficient="-273.2" exponent="0" />
2161
- <xtce:Term coefficient="0.1220703125" exponent="1" />
2162
- </xtce:PolynomialCalibrator>
2163
- </xtce:DefaultCalibrator>
2164
- </xtce:IntegerDataEncoding>
2165
- </xtce:IntegerParameterType>
2166
- <xtce:IntegerParameterType name="ILO_APP_NHK.CDH_HV_PLUG_STATE" signed="false">
2167
- <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
2168
- </xtce:IntegerParameterType>
2169
- <xtce:IntegerParameterType name="ILO_APP_NHK.SPARE16" signed="false">
2170
- <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
2171
- </xtce:IntegerParameterType>
2172
- <xtce:IntegerParameterType name="ILO_APP_NHK.SCI_CYCLE" signed="false">
2173
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2174
- </xtce:IntegerParameterType>
2175
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_STATE" signed="false">
2176
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2177
- </xtce:IntegerParameterType>
2178
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_MOTOR" signed="false">
2179
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2180
- </xtce:IntegerParameterType>
2181
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_DIRECTION" signed="false">
2182
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2183
- </xtce:IntegerParameterType>
2184
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_STEP_PERIOD" signed="false">
2185
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2186
- </xtce:IntegerParameterType>
2187
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_MICROSTEP" signed="false">
2188
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2189
- </xtce:IntegerParameterType>
2190
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_CURRENT_THRESHOLD" signed="false">
2191
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
2192
- <xtce:DefaultCalibrator>
2193
- <xtce:PolynomialCalibrator>
2194
- <xtce:Term coefficient="0.57" exponent="1" />
2195
- </xtce:PolynomialCalibrator>
2196
- </xtce:DefaultCalibrator>
2197
- </xtce:IntegerDataEncoding>
2198
- </xtce:IntegerParameterType>
2199
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_STALL_THRESHOLD" signed="false">
2200
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2201
- </xtce:IntegerParameterType>
2202
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_STALL_PERIOD" signed="false">
2203
- <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
2204
- </xtce:IntegerParameterType>
2205
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_LOWER_BOUND" signed="false">
2206
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2207
- </xtce:IntegerParameterType>
2208
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_UPPER_BOUND" signed="false">
2209
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2210
- </xtce:IntegerParameterType>
2211
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_USE_CONFLICT" signed="false">
2212
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2213
- </xtce:IntegerParameterType>
2214
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_STALLED" signed="false">
2215
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2216
- </xtce:IntegerParameterType>
2217
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_OUT_OF_RANGE" signed="false">
2218
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2219
- </xtce:IntegerParameterType>
2220
- <xtce:IntegerParameterType name="ILO_APP_NHK.PPM_POWER_PROBLEM" signed="false">
2221
- <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
2222
- </xtce:IntegerParameterType>
2223
- <xtce:IntegerParameterType name="ILO_APP_NHK.MARKER" signed="false">
2224
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2225
- </xtce:IntegerParameterType>
2226
- <xtce:IntegerParameterType name="ILO_APP_NHK.SPARE" signed="false">
2227
- <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
2228
- </xtce:IntegerParameterType>
2229
- <xtce:IntegerParameterType name="ILO_APP_NHK.CHKSUM" signed="false">
2230
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2231
- </xtce:IntegerParameterType>
2232
27
  <xtce:IntegerParameterType name="ILO_SCI_CNT.SHCOARSE" signed="false">
2233
28
  <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2234
29
  </xtce:IntegerParameterType>
@@ -2248,25 +43,16 @@
2248
43
  <xtce:IntegerParameterType name="ILO_SCI_DE.SHCOARSE" signed="false">
2249
44
  <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2250
45
  </xtce:IntegerParameterType>
2251
- <xtce:IntegerParameterType name="ILO_SCI_DE.COUNT" signed="false">
2252
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2253
- </xtce:IntegerParameterType>
2254
- <xtce:IntegerParameterType name="ILO_SCI_DE.PASSES" signed="false">
2255
- <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2256
- </xtce:IntegerParameterType>
2257
46
  <xtce:BinaryParameterType name="ILO_SCI_DE.DATA">
2258
47
  <xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
2259
48
  <xtce:SizeInBits>
2260
49
  <xtce:DynamicValue>
2261
50
  <xtce:ParameterInstanceRef parameterRef="PKT_LEN" />
2262
- <xtce:LinearAdjustment slope="8" intercept="-88" />
51
+ <xtce:LinearAdjustment slope="8" intercept="-24" />
2263
52
  </xtce:DynamicValue>
2264
53
  </xtce:SizeInBits>
2265
54
  </xtce:BinaryDataEncoding>
2266
55
  </xtce:BinaryParameterType>
2267
- <xtce:IntegerParameterType name="ILO_SCI_DE.CHKSUM" signed="false">
2268
- <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
2269
- </xtce:IntegerParameterType>
2270
56
  <xtce:IntegerParameterType name="ILO_STAR.SHCOARSE" signed="false">
2271
57
  <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
2272
58
  </xtce:IntegerParameterType>
@@ -2340,603 +126,6 @@
2340
126
  <xtce:Parameter name="PKT_LEN" parameterTypeRef="PKT_LEN">
2341
127
  <xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
2342
128
  </xtce:Parameter>
2343
- <xtce:Parameter name="ILO_BOOT_HK.SHCOARSE" parameterTypeRef="ILO_BOOT_HK.SHCOARSE" shortDescription="CCSDS Secondary header, mission elapsed time">
2344
- <xtce:LongDescription>CCSDS Secondary header, mission elapsed time</xtce:LongDescription>
2345
- </xtce:Parameter>
2346
- <xtce:Parameter name="ILO_BOOT_HK.BOOT_VER" parameterTypeRef="ILO_BOOT_HK.BOOT_VER" shortDescription="Boot FSW version">
2347
- <xtce:LongDescription>Boot FSW version</xtce:LongDescription>
2348
- </xtce:Parameter>
2349
- <xtce:Parameter name="ILO_BOOT_HK.BOOT_CNT" parameterTypeRef="ILO_BOOT_HK.BOOT_CNT" shortDescription="Number of boot attempts">
2350
- <xtce:LongDescription>Number of boot attempts</xtce:LongDescription>
2351
- </xtce:Parameter>
2352
- <xtce:Parameter name="ILO_BOOT_HK.BIST_STAT" parameterTypeRef="ILO_BOOT_HK.BIST_STAT" shortDescription="Built-In-Self-Test status">
2353
- <xtce:LongDescription>Built-In-Self-Test status</xtce:LongDescription>
2354
- </xtce:Parameter>
2355
- <xtce:Parameter name="ILO_BOOT_HK.BIST_ABUS" parameterTypeRef="ILO_BOOT_HK.BIST_ABUS" shortDescription="Built-In-Self-Test Address bus fail mask">
2356
- <xtce:LongDescription>Built-In-Self-Test Address bus fail mask</xtce:LongDescription>
2357
- </xtce:Parameter>
2358
- <xtce:Parameter name="ILO_BOOT_HK.BIST_DBUS" parameterTypeRef="ILO_BOOT_HK.BIST_DBUS" shortDescription="Built-In-Self-Test Data bus fail mask">
2359
- <xtce:LongDescription>Built-In-Self-Test Data bus fail mask</xtce:LongDescription>
2360
- </xtce:Parameter>
2361
- <xtce:Parameter name="ILO_BOOT_HK.BIST_MEM_FF" parameterTypeRef="ILO_BOOT_HK.BIST_MEM_FF" shortDescription="Built-In-Self-Test memory fail first location">
2362
- <xtce:LongDescription>Built-In-Self-Test memory fail first location</xtce:LongDescription>
2363
- </xtce:Parameter>
2364
- <xtce:Parameter name="ILO_BOOT_HK.BIST_MEM_FL" parameterTypeRef="ILO_BOOT_HK.BIST_MEM_FL" shortDescription="Built-In-Self-Test memory fail last location">
2365
- <xtce:LongDescription>Built-In-Self-Test memory fail last location</xtce:LongDescription>
2366
- </xtce:Parameter>
2367
- <xtce:Parameter name="ILO_BOOT_HK.BIST_MEM_MAP" parameterTypeRef="ILO_BOOT_HK.BIST_MEM_MAP" shortDescription="Built-In-Self-Test memory map">
2368
- <xtce:LongDescription>Built-In-Self-Test memory map</xtce:LongDescription>
2369
- </xtce:Parameter>
2370
- <xtce:Parameter name="ILO_BOOT_HK.BIST_MEM_CNT" parameterTypeRef="ILO_BOOT_HK.BIST_MEM_CNT" shortDescription="Built-In-Self-Test memory error count">
2371
- <xtce:LongDescription>Built-In-Self-Test memory error count</xtce:LongDescription>
2372
- </xtce:Parameter>
2373
- <xtce:Parameter name="ILO_BOOT_HK.IMG_1_STAT" parameterTypeRef="ILO_BOOT_HK.IMG_1_STAT" shortDescription="App FSW image 1 checksum status">
2374
- <xtce:LongDescription>App FSW image 1 checksum status</xtce:LongDescription>
2375
- </xtce:Parameter>
2376
- <xtce:Parameter name="ILO_BOOT_HK.IMG_2_STAT" parameterTypeRef="ILO_BOOT_HK.IMG_2_STAT" shortDescription="App FSW image 2 checksum status">
2377
- <xtce:LongDescription>App FSW image 2 checksum status</xtce:LongDescription>
2378
- </xtce:Parameter>
2379
- <xtce:Parameter name="ILO_BOOT_HK.SPARE_0" parameterTypeRef="ILO_BOOT_HK.SPARE_0" shortDescription="Spare for alignment">
2380
- <xtce:LongDescription>Spare for alignment</xtce:LongDescription>
2381
- </xtce:Parameter>
2382
- <xtce:Parameter name="ILO_BOOT_HK.INSTR_ID" parameterTypeRef="ILO_BOOT_HK.INSTR_ID" shortDescription="Instrument ID">
2383
- <xtce:LongDescription>Instrument ID</xtce:LongDescription>
2384
- </xtce:Parameter>
2385
- <xtce:Parameter name="ILO_BOOT_HK.SPARE_1" parameterTypeRef="ILO_BOOT_HK.SPARE_1" shortDescription="Spare for alignment">
2386
- <xtce:LongDescription>Spare for alignment</xtce:LongDescription>
2387
- </xtce:Parameter>
2388
- <xtce:Parameter name="ILO_BOOT_HK.FPGA_VER" parameterTypeRef="ILO_BOOT_HK.FPGA_VER" shortDescription="CDH FPGA version">
2389
- <xtce:LongDescription>CDH FPGA version</xtce:LongDescription>
2390
- </xtce:Parameter>
2391
- <xtce:Parameter name="ILO_BOOT_HK.HV_PLUG_STATE" parameterTypeRef="ILO_BOOT_HK.HV_PLUG_STATE" shortDescription="High voltage plug status">
2392
- <xtce:LongDescription>High voltage plug status</xtce:LongDescription>
2393
- </xtce:Parameter>
2394
- <xtce:Parameter name="ILO_BOOT_HK.DOOR_DIS" parameterTypeRef="ILO_BOOT_HK.DOOR_DIS" shortDescription="Front panel door disable plug status">
2395
- <xtce:LongDescription>Front panel door disable plug status</xtce:LongDescription>
2396
- </xtce:Parameter>
2397
- <xtce:Parameter name="ILO_BOOT_HK.SPARE_2" parameterTypeRef="ILO_BOOT_HK.SPARE_2" shortDescription="Spare for alignment">
2398
- <xtce:LongDescription>Spare for alignment</xtce:LongDescription>
2399
- </xtce:Parameter>
2400
- <xtce:Parameter name="ILO_BOOT_HK.PAD_0" parameterTypeRef="ILO_BOOT_HK.PAD_0" />
2401
- <xtce:Parameter name="ILO_BOOT_HK.MDM25P_14_T" parameterTypeRef="ILO_BOOT_HK.MDM25P_14_T" shortDescription="System temperature monitor 1">
2402
- <xtce:LongDescription>System temperature monitor 1</xtce:LongDescription>
2403
- </xtce:Parameter>
2404
- <xtce:Parameter name="ILO_BOOT_HK.PAD_1" parameterTypeRef="ILO_BOOT_HK.PAD_1" />
2405
- <xtce:Parameter name="ILO_BOOT_HK.MDM25P_15_T" parameterTypeRef="ILO_BOOT_HK.MDM25P_15_T" shortDescription="System temperature monitor 2">
2406
- <xtce:LongDescription>System temperature monitor 2</xtce:LongDescription>
2407
- </xtce:Parameter>
2408
- <xtce:Parameter name="ILO_BOOT_HK.PAD_2" parameterTypeRef="ILO_BOOT_HK.PAD_2" />
2409
- <xtce:Parameter name="ILO_BOOT_HK.MDM25P_16_T" parameterTypeRef="ILO_BOOT_HK.MDM25P_16_T" shortDescription="System temperature monitor 3">
2410
- <xtce:LongDescription>System temperature monitor 3</xtce:LongDescription>
2411
- </xtce:Parameter>
2412
- <xtce:Parameter name="ILO_BOOT_HK.PAD_3" parameterTypeRef="ILO_BOOT_HK.PAD_3" />
2413
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_12V_T" parameterTypeRef="ILO_BOOT_HK.LVPS_12V_T" shortDescription="LVPS temperature monitor 1">
2414
- <xtce:LongDescription>LVPS temperature monitor 1</xtce:LongDescription>
2415
- </xtce:Parameter>
2416
- <xtce:Parameter name="ILO_BOOT_HK.PAD_4" parameterTypeRef="ILO_BOOT_HK.PAD_4" />
2417
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_5V_T" parameterTypeRef="ILO_BOOT_HK.LVPS_5V_T" shortDescription="LVPS temperature monitor 2">
2418
- <xtce:LongDescription>LVPS temperature monitor 2</xtce:LongDescription>
2419
- </xtce:Parameter>
2420
- <xtce:Parameter name="ILO_BOOT_HK.PAD_5" parameterTypeRef="ILO_BOOT_HK.PAD_5" />
2421
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_3P3V_T" parameterTypeRef="ILO_BOOT_HK.LVPS_3P3V_T" shortDescription="LVPS temperature monitor 3">
2422
- <xtce:LongDescription>LVPS temperature monitor 3</xtce:LongDescription>
2423
- </xtce:Parameter>
2424
- <xtce:Parameter name="ILO_BOOT_HK.PAD_6" parameterTypeRef="ILO_BOOT_HK.PAD_6" />
2425
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_3P3V" parameterTypeRef="ILO_BOOT_HK.LVPS_3P3V" shortDescription="LVPS voltage monitor 1">
2426
- <xtce:LongDescription>LVPS voltage monitor 1</xtce:LongDescription>
2427
- </xtce:Parameter>
2428
- <xtce:Parameter name="ILO_BOOT_HK.PAD_7" parameterTypeRef="ILO_BOOT_HK.PAD_7" />
2429
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_5V" parameterTypeRef="ILO_BOOT_HK.LVPS_5V" shortDescription="LVPS voltage monitor 2">
2430
- <xtce:LongDescription>LVPS voltage monitor 2</xtce:LongDescription>
2431
- </xtce:Parameter>
2432
- <xtce:Parameter name="ILO_BOOT_HK.PAD_8" parameterTypeRef="ILO_BOOT_HK.PAD_8" />
2433
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_N5V" parameterTypeRef="ILO_BOOT_HK.LVPS_N5V" shortDescription="LVPS voltage monitor 3">
2434
- <xtce:LongDescription>LVPS voltage monitor 3</xtce:LongDescription>
2435
- </xtce:Parameter>
2436
- <xtce:Parameter name="ILO_BOOT_HK.PAD_9" parameterTypeRef="ILO_BOOT_HK.PAD_9" />
2437
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_12V" parameterTypeRef="ILO_BOOT_HK.LVPS_12V" shortDescription="LVPS voltage monitor 4">
2438
- <xtce:LongDescription>LVPS voltage monitor 4</xtce:LongDescription>
2439
- </xtce:Parameter>
2440
- <xtce:Parameter name="ILO_BOOT_HK.PAD_10" parameterTypeRef="ILO_BOOT_HK.PAD_10" />
2441
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_N12V" parameterTypeRef="ILO_BOOT_HK.LVPS_N12V" shortDescription="LVPS voltage monitor 5">
2442
- <xtce:LongDescription>LVPS voltage monitor 5</xtce:LongDescription>
2443
- </xtce:Parameter>
2444
- <xtce:Parameter name="ILO_BOOT_HK.PAD_11" parameterTypeRef="ILO_BOOT_HK.PAD_11" />
2445
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_3P3V_I" parameterTypeRef="ILO_BOOT_HK.LVPS_3P3V_I" shortDescription="LVPS current monitor 1">
2446
- <xtce:LongDescription>LVPS current monitor 1</xtce:LongDescription>
2447
- </xtce:Parameter>
2448
- <xtce:Parameter name="ILO_BOOT_HK.PAD_12" parameterTypeRef="ILO_BOOT_HK.PAD_12" />
2449
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_5V_I" parameterTypeRef="ILO_BOOT_HK.LVPS_5V_I" shortDescription="LVPS current monitor 2">
2450
- <xtce:LongDescription>LVPS current monitor 2</xtce:LongDescription>
2451
- </xtce:Parameter>
2452
- <xtce:Parameter name="ILO_BOOT_HK.PAD_13" parameterTypeRef="ILO_BOOT_HK.PAD_13" />
2453
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_N5V_I" parameterTypeRef="ILO_BOOT_HK.LVPS_N5V_I" shortDescription="LVPS current monitor 3">
2454
- <xtce:LongDescription>LVPS current monitor 3</xtce:LongDescription>
2455
- </xtce:Parameter>
2456
- <xtce:Parameter name="ILO_BOOT_HK.PAD_14" parameterTypeRef="ILO_BOOT_HK.PAD_14" />
2457
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_12V_I" parameterTypeRef="ILO_BOOT_HK.LVPS_12V_I" shortDescription="LVPS current monitor 4">
2458
- <xtce:LongDescription>LVPS current monitor 4</xtce:LongDescription>
2459
- </xtce:Parameter>
2460
- <xtce:Parameter name="ILO_BOOT_HK.PAD_15" parameterTypeRef="ILO_BOOT_HK.PAD_15" />
2461
- <xtce:Parameter name="ILO_BOOT_HK.LVPS_N12V_I" parameterTypeRef="ILO_BOOT_HK.LVPS_N12V_I" shortDescription="LVPS current monitor 5">
2462
- <xtce:LongDescription>LVPS current monitor 5</xtce:LongDescription>
2463
- </xtce:Parameter>
2464
- <xtce:Parameter name="ILO_BOOT_HK.PAD_16" parameterTypeRef="ILO_BOOT_HK.PAD_16" />
2465
- <xtce:Parameter name="ILO_BOOT_HK.CDH_1P5V" parameterTypeRef="ILO_BOOT_HK.CDH_1P5V" shortDescription="CDH 1.5V voltage monitor">
2466
- <xtce:LongDescription>CDH 1.5V voltage monitor</xtce:LongDescription>
2467
- </xtce:Parameter>
2468
- <xtce:Parameter name="ILO_BOOT_HK.PAD_17" parameterTypeRef="ILO_BOOT_HK.PAD_17" />
2469
- <xtce:Parameter name="ILO_BOOT_HK.CDH_1P8V" parameterTypeRef="ILO_BOOT_HK.CDH_1P8V" shortDescription="CDH 1.8V voltage monitor">
2470
- <xtce:LongDescription>CDH 1.8V voltage monitor</xtce:LongDescription>
2471
- </xtce:Parameter>
2472
- <xtce:Parameter name="ILO_BOOT_HK.PAD_18" parameterTypeRef="ILO_BOOT_HK.PAD_18" />
2473
- <xtce:Parameter name="ILO_BOOT_HK.CDH_3P3V" parameterTypeRef="ILO_BOOT_HK.CDH_3P3V" shortDescription="CDH 3.3V voltage monitor">
2474
- <xtce:LongDescription>CDH 3.3V voltage monitor</xtce:LongDescription>
2475
- </xtce:Parameter>
2476
- <xtce:Parameter name="ILO_BOOT_HK.PAD_19" parameterTypeRef="ILO_BOOT_HK.PAD_19" />
2477
- <xtce:Parameter name="ILO_BOOT_HK.CDH_12V" parameterTypeRef="ILO_BOOT_HK.CDH_12V" shortDescription="CDH +12V voltage monitor">
2478
- <xtce:LongDescription>CDH +12V voltage monitor</xtce:LongDescription>
2479
- </xtce:Parameter>
2480
- <xtce:Parameter name="ILO_BOOT_HK.PAD_20" parameterTypeRef="ILO_BOOT_HK.PAD_20" />
2481
- <xtce:Parameter name="ILO_BOOT_HK.CDH_N12V" parameterTypeRef="ILO_BOOT_HK.CDH_N12V" shortDescription="CDH -12V voltage monitor">
2482
- <xtce:LongDescription>CDH -12V voltage monitor</xtce:LongDescription>
2483
- </xtce:Parameter>
2484
- <xtce:Parameter name="ILO_BOOT_HK.PAD_21" parameterTypeRef="ILO_BOOT_HK.PAD_21" />
2485
- <xtce:Parameter name="ILO_BOOT_HK.CDH_5V" parameterTypeRef="ILO_BOOT_HK.CDH_5V" shortDescription="CDH 5V voltage monitor">
2486
- <xtce:LongDescription>CDH 5V voltage monitor</xtce:LongDescription>
2487
- </xtce:Parameter>
2488
- <xtce:Parameter name="ILO_BOOT_HK.PAD_22" parameterTypeRef="ILO_BOOT_HK.PAD_22" />
2489
- <xtce:Parameter name="ILO_BOOT_HK.CDH_5V_ADC" parameterTypeRef="ILO_BOOT_HK.CDH_5V_ADC" shortDescription="CDH analog ref voltage monitor">
2490
- <xtce:LongDescription>CDH analog ref voltage monitor</xtce:LongDescription>
2491
- </xtce:Parameter>
2492
- <xtce:Parameter name="ILO_BOOT_HK.PAD_23" parameterTypeRef="ILO_BOOT_HK.PAD_23" />
2493
- <xtce:Parameter name="ILO_BOOT_HK.CDH_PROCESSOR_T" parameterTypeRef="ILO_BOOT_HK.CDH_PROCESSOR_T" shortDescription="CDH temperature 1 monitor">
2494
- <xtce:LongDescription>CDH temperature 1 monitor</xtce:LongDescription>
2495
- </xtce:Parameter>
2496
- <xtce:Parameter name="ILO_BOOT_HK.PAD_24" parameterTypeRef="ILO_BOOT_HK.PAD_24" />
2497
- <xtce:Parameter name="ILO_BOOT_HK.CDH_1P8V_LDO_T" parameterTypeRef="ILO_BOOT_HK.CDH_1P8V_LDO_T" shortDescription="CDH temperature 2 monitor">
2498
- <xtce:LongDescription>CDH temperature 2 monitor</xtce:LongDescription>
2499
- </xtce:Parameter>
2500
- <xtce:Parameter name="ILO_BOOT_HK.PAD_25" parameterTypeRef="ILO_BOOT_HK.PAD_25" />
2501
- <xtce:Parameter name="ILO_BOOT_HK.CDH_1P5V_LDO_T" parameterTypeRef="ILO_BOOT_HK.CDH_1P5V_LDO_T" shortDescription="CDH temperature 3 monitor">
2502
- <xtce:LongDescription>CDH temperature 3 monitor</xtce:LongDescription>
2503
- </xtce:Parameter>
2504
- <xtce:Parameter name="ILO_BOOT_HK.PAD_26" parameterTypeRef="ILO_BOOT_HK.PAD_26" />
2505
- <xtce:Parameter name="ILO_BOOT_HK.CDH_SDRAM_T" parameterTypeRef="ILO_BOOT_HK.CDH_SDRAM_T" shortDescription="CDH temperature 4 monitor">
2506
- <xtce:LongDescription>CDH temperature 4 monitor</xtce:LongDescription>
2507
- </xtce:Parameter>
2508
- <xtce:Parameter name="ILO_BOOT_HK.OP_MODE" parameterTypeRef="ILO_BOOT_HK.OP_MODE" shortDescription="Current operating mode">
2509
- <xtce:LongDescription>Current operating mode</xtce:LongDescription>
2510
- </xtce:Parameter>
2511
- <xtce:Parameter name="ILO_BOOT_HK.CMD_ACC_CNT" parameterTypeRef="ILO_BOOT_HK.CMD_ACC_CNT" shortDescription="Accepted commands count">
2512
- <xtce:LongDescription>Accepted commands count</xtce:LongDescription>
2513
- </xtce:Parameter>
2514
- <xtce:Parameter name="ILO_BOOT_HK.CMD_EXE_CNT" parameterTypeRef="ILO_BOOT_HK.CMD_EXE_CNT" shortDescription="Executed commands count">
2515
- <xtce:LongDescription>Executed commands count</xtce:LongDescription>
2516
- </xtce:Parameter>
2517
- <xtce:Parameter name="ILO_BOOT_HK.CMD_REJ_CNT" parameterTypeRef="ILO_BOOT_HK.CMD_REJ_CNT" shortDescription="Rejected commands count">
2518
- <xtce:LongDescription>Rejected commands count</xtce:LongDescription>
2519
- </xtce:Parameter>
2520
- <xtce:Parameter name="ILO_BOOT_HK.CMD_LAST_OPCODE" parameterTypeRef="ILO_BOOT_HK.CMD_LAST_OPCODE" shortDescription="Accepted command opcode">
2521
- <xtce:LongDescription>Accepted command opcode</xtce:LongDescription>
2522
- </xtce:Parameter>
2523
- <xtce:Parameter name="ILO_BOOT_HK.CMD_RESULT" parameterTypeRef="ILO_BOOT_HK.CMD_RESULT" shortDescription="Command result">
2524
- <xtce:LongDescription>Command result</xtce:LongDescription>
2525
- </xtce:Parameter>
2526
- <xtce:Parameter name="ILO_BOOT_HK.ITF_ERR_CNT" parameterTypeRef="ILO_BOOT_HK.ITF_ERR_CNT" shortDescription="ITF error counter">
2527
- <xtce:LongDescription>ITF error counter</xtce:LongDescription>
2528
- </xtce:Parameter>
2529
- <xtce:Parameter name="ILO_BOOT_HK.CHKSUM" parameterTypeRef="ILO_BOOT_HK.CHKSUM" shortDescription="16-bit CRC checksum">
2530
- <xtce:LongDescription>16-bit CRC checksum</xtce:LongDescription>
2531
- </xtce:Parameter>
2532
- <xtce:Parameter name="ILO_APP_SHK.SHCOARSE" parameterTypeRef="ILO_APP_SHK.SHCOARSE" shortDescription="CCSDS Secondary Header MET">
2533
- <xtce:LongDescription>CCSDS Secondary Header MET</xtce:LongDescription>
2534
- </xtce:Parameter>
2535
- <xtce:Parameter name="ILO_APP_SHK.BOARD_TYPE" parameterTypeRef="ILO_APP_SHK.BOARD_TYPE" shortDescription="ILO_APP_SHK.BOARD_TYPE">
2536
- <xtce:LongDescription>ILO_APP_SHK.CDH_JUMPER_REG</xtce:LongDescription>
2537
- </xtce:Parameter>
2538
- <xtce:Parameter name="ILO_APP_SHK.RESET_REASON_SOFT" parameterTypeRef="ILO_APP_SHK.RESET_REASON_SOFT" shortDescription="ILO_APP_SHK.RESET_REASON_SOFT">
2539
- <xtce:LongDescription>ILO_APP_SHK.RESET_REASON_SOFT</xtce:LongDescription>
2540
- </xtce:Parameter>
2541
- <xtce:Parameter name="ILO_APP_SHK.RESET_REASON_FPGA_WDOG" parameterTypeRef="ILO_APP_SHK.RESET_REASON_FPGA_WDOG" shortDescription="ILO_APP_SHK.RESET_REASON_FPGA_WDOG">
2542
- <xtce:LongDescription>ILO_APP_SHK.RESET_REASON_FPGA_WDOG</xtce:LongDescription>
2543
- </xtce:Parameter>
2544
- <xtce:Parameter name="ILO_APP_SHK.RESET_REASON_CPU_WDOG" parameterTypeRef="ILO_APP_SHK.RESET_REASON_CPU_WDOG" shortDescription="ILO_APP_SHK.RESET_REASON_CPU_WDOG">
2545
- <xtce:LongDescription>ILO_APP_SHK.RESET_REASON_CPU_WDOG</xtce:LongDescription>
2546
- </xtce:Parameter>
2547
- <xtce:Parameter name="ILO_APP_SHK.RESET_REASON_PFO" parameterTypeRef="ILO_APP_SHK.RESET_REASON_PFO" shortDescription="ILO_APP_SHK.RESET_REASON_PFO">
2548
- <xtce:LongDescription>ILO_APP_SHK.RESET_REASON_PFO</xtce:LongDescription>
2549
- </xtce:Parameter>
2550
- <xtce:Parameter name="ILO_APP_SHK.RESET_REASON_POR" parameterTypeRef="ILO_APP_SHK.RESET_REASON_POR" shortDescription="ILO_APP_SHK.RESET_REASON_PFO">
2551
- <xtce:LongDescription>ILO_APP_SHK.RESET_REASON_PFO</xtce:LongDescription>
2552
- </xtce:Parameter>
2553
- <xtce:Parameter name="ILO_APP_SHK.CPU_WDOG_STATE" parameterTypeRef="ILO_APP_SHK.CPU_WDOG_STATE" shortDescription="ILO_APP_SHK.CPU_WDOG_STATE">
2554
- <xtce:LongDescription>ILO_APP_SHK.CPU_WDOG_STATE</xtce:LongDescription>
2555
- </xtce:Parameter>
2556
- <xtce:Parameter name="ILO_APP_SHK.FPGA_WDOG_STATE" parameterTypeRef="ILO_APP_SHK.FPGA_WDOG_STATE" shortDescription="ILO_APP_SHK.FPGA_WDOG_STATE">
2557
- <xtce:LongDescription>ILO_APP_SHK.FPGA_WDOG_STATE</xtce:LongDescription>
2558
- </xtce:Parameter>
2559
- <xtce:Parameter name="ILO_APP_SHK.WDOG_CNT" parameterTypeRef="ILO_APP_SHK.WDOG_CNT" shortDescription="ILO_APP_SHK.WDOG_CNT">
2560
- <xtce:LongDescription>ILO_APP_SHK.WDOG_CNT</xtce:LongDescription>
2561
- </xtce:Parameter>
2562
- <xtce:Parameter name="ILO_APP_SHK.INSTR_ID" parameterTypeRef="ILO_APP_SHK.INSTR_ID" shortDescription="ILO_APP_SHK.INSTR_ID">
2563
- <xtce:LongDescription>ILO_APP_SHK.INSTR_ID</xtce:LongDescription>
2564
- </xtce:Parameter>
2565
- <xtce:Parameter name="ILO_APP_SHK.CDH_FPGA_VERSION" parameterTypeRef="ILO_APP_SHK.CDH_FPGA_VERSION" shortDescription="ILO_APP_SHK.CDH_FPGA_VERSION">
2566
- <xtce:LongDescription>ILO_APP_SHK.CDH_FPGA_VERSION</xtce:LongDescription>
2567
- </xtce:Parameter>
2568
- <xtce:Parameter name="ILO_APP_SHK.IFB_FPGA_VERSION" parameterTypeRef="ILO_APP_SHK.IFB_FPGA_VERSION" shortDescription="ILO_APP_SHK.IFB_FPGA_VERSION">
2569
- <xtce:LongDescription>ILO_APP_SHK.IFB_FPGA_VERSION</xtce:LongDescription>
2570
- </xtce:Parameter>
2571
- <xtce:Parameter name="ILO_APP_SHK.BULK_HVPS_VERSION" parameterTypeRef="ILO_APP_SHK.BULK_HVPS_VERSION" shortDescription="ILO_APP_SHK.BULK_HVPS_VERSION">
2572
- <xtce:LongDescription>ILO_APP_SHK.BULK_HVPS_VERSION</xtce:LongDescription>
2573
- </xtce:Parameter>
2574
- <xtce:Parameter name="ILO_APP_SHK.FSW_VERSION" parameterTypeRef="ILO_APP_SHK.FSW_VERSION" shortDescription="ILO_APP_SHK.FSW_VERSION">
2575
- <xtce:LongDescription>ILO_APP_SHK.FSW_VERSION</xtce:LongDescription>
2576
- </xtce:Parameter>
2577
- <xtce:Parameter name="ILO_APP_SHK.SELECTED_IMG" parameterTypeRef="ILO_APP_SHK.SELECTED_IMG" shortDescription="ILO_APP_SHK.SELECTED_IMG">
2578
- <xtce:LongDescription>ILO_APP_SHK.SELECTED_IMG</xtce:LongDescription>
2579
- </xtce:Parameter>
2580
- <xtce:Parameter name="ILO_APP_SHK.FSW_VERSION_STR" parameterTypeRef="ILO_APP_SHK.FSW_VERSION_STR" shortDescription="ILO_APP_SHK.FSW_VERSION_STR">
2581
- <xtce:LongDescription>ILO_APP_SHK.FSW_VERSION_STR</xtce:LongDescription>
2582
- </xtce:Parameter>
2583
- <xtce:Parameter name="ILO_APP_SHK.ENG_LUT_VERSION_STR" parameterTypeRef="ILO_APP_SHK.ENG_LUT_VERSION_STR" shortDescription="ILO_APP_SHK.ENG_LUT_VERSION_STR">
2584
- <xtce:LongDescription>ILO_APP_SHK.ENG_LUT_VERSION_STR</xtce:LongDescription>
2585
- </xtce:Parameter>
2586
- <xtce:Parameter name="ILO_APP_SHK.SCI_LUT_VERSION_STR" parameterTypeRef="ILO_APP_SHK.SCI_LUT_VERSION_STR" shortDescription="ILO_APP_SHK.SCI_LUT_VERSION_STR">
2587
- <xtce:LongDescription>ILO_APP_SHK.SCI_LUT_VERSION_STR</xtce:LongDescription>
2588
- </xtce:Parameter>
2589
- <xtce:Parameter name="ILO_APP_SHK.SCRATCH_BUFFER_ADDR" parameterTypeRef="ILO_APP_SHK.SCRATCH_BUFFER_ADDR" shortDescription="SDRAM address of scratch buffer address">
2590
- <xtce:LongDescription>SDRAM address of scratch buffer address</xtce:LongDescription>
2591
- </xtce:Parameter>
2592
- <xtce:Parameter name="ILO_APP_SHK.SPARE" parameterTypeRef="ILO_APP_SHK.SPARE" shortDescription="ILO_APP_SHK.SPARE">
2593
- <xtce:LongDescription>ILO_APP_SHK.SPARE</xtce:LongDescription>
2594
- </xtce:Parameter>
2595
- <xtce:Parameter name="ILO_APP_SHK.CHKSUM" parameterTypeRef="ILO_APP_SHK.CHKSUM" shortDescription="ILO_APP_SHK.CHKSUM">
2596
- <xtce:LongDescription>ILO_APP_SHK.CHKSUM</xtce:LongDescription>
2597
- </xtce:Parameter>
2598
- <xtce:Parameter name="ILO_APP_NHK.SHCOARSE" parameterTypeRef="ILO_APP_NHK.SHCOARSE" shortDescription="CCSDS Secondary Header MET" />
2599
- <xtce:Parameter name="ILO_APP_NHK.OP_MODE" parameterTypeRef="ILO_APP_NHK.OP_MODE" shortDescription="Current operating mode" />
2600
- <xtce:Parameter name="ILO_APP_NHK.CMD_EXE_CNT" parameterTypeRef="ILO_APP_NHK.CMD_EXE_CNT" shortDescription="Accepted commands count" />
2601
- <xtce:Parameter name="ILO_APP_NHK.CMD_REJ_CNT" parameterTypeRef="ILO_APP_NHK.CMD_REJ_CNT" shortDescription="Rejected commands count" />
2602
- <xtce:Parameter name="ILO_APP_NHK.CMD_LAST_OPCODE" parameterTypeRef="ILO_APP_NHK.CMD_LAST_OPCODE" shortDescription="Last accepted command opcode" />
2603
- <xtce:Parameter name="ILO_APP_NHK.ITF_ERR_CNT" parameterTypeRef="ILO_APP_NHK.ITF_ERR_CNT" shortDescription="ITF Error count" />
2604
- <xtce:Parameter name="ILO_APP_NHK.WATCHDOG_CNT" parameterTypeRef="ILO_APP_NHK.WATCHDOG_CNT" shortDescription="Watchdog reset count" />
2605
- <xtce:Parameter name="ILO_APP_NHK.PAD_0" parameterTypeRef="ILO_APP_NHK.PAD_0" />
2606
- <xtce:Parameter name="ILO_APP_NHK.MDM25P_14_T" parameterTypeRef="ILO_APP_NHK.MDM25P_14_T" shortDescription="System Temperature 1: MDM25P – 14 Temperature" />
2607
- <xtce:Parameter name="ILO_APP_NHK.PAD_1" parameterTypeRef="ILO_APP_NHK.PAD_1" />
2608
- <xtce:Parameter name="ILO_APP_NHK.MDM25P_15_T" parameterTypeRef="ILO_APP_NHK.MDM25P_15_T" shortDescription="System Temperature 2: MDM25P – 15 Temperature" />
2609
- <xtce:Parameter name="ILO_APP_NHK.PAD_2" parameterTypeRef="ILO_APP_NHK.PAD_2" />
2610
- <xtce:Parameter name="ILO_APP_NHK.MDM25P_16_T" parameterTypeRef="ILO_APP_NHK.MDM25P_16_T" shortDescription="System Temperature 3: MDM25P – 16 Temperature" />
2611
- <xtce:Parameter name="ILO_APP_NHK.PAD_3" parameterTypeRef="ILO_APP_NHK.PAD_3" />
2612
- <xtce:Parameter name="ILO_APP_NHK.LO_T" parameterTypeRef="ILO_APP_NHK.LO_T" shortDescription="LO temperature monitor" />
2613
- <xtce:Parameter name="ILO_APP_NHK.PAD_4" parameterTypeRef="ILO_APP_NHK.PAD_4" />
2614
- <xtce:Parameter name="ILO_APP_NHK.HVPS_T" parameterTypeRef="ILO_APP_NHK.HVPS_T" shortDescription="HVPS temperature monitor" />
2615
- <xtce:Parameter name="ILO_APP_NHK.PAD_5" parameterTypeRef="ILO_APP_NHK.PAD_5" />
2616
- <xtce:Parameter name="ILO_APP_NHK.LVPS_12V_T" parameterTypeRef="ILO_APP_NHK.LVPS_12V_T" shortDescription="LVPS Temperature 1: LVPS – 12V Temperature" />
2617
- <xtce:Parameter name="ILO_APP_NHK.PAD_6" parameterTypeRef="ILO_APP_NHK.PAD_6" />
2618
- <xtce:Parameter name="ILO_APP_NHK.LVPS_5V_T" parameterTypeRef="ILO_APP_NHK.LVPS_5V_T" shortDescription="LVPS Temperature 2: LVPS – 5V Temperature" />
2619
- <xtce:Parameter name="ILO_APP_NHK.PAD_7" parameterTypeRef="ILO_APP_NHK.PAD_7" />
2620
- <xtce:Parameter name="ILO_APP_NHK.LVPS_3P3V_T" parameterTypeRef="ILO_APP_NHK.LVPS_3P3V_T" shortDescription="LVPS Temperature 3: LVPS – +3.3V Temperature" />
2621
- <xtce:Parameter name="ILO_APP_NHK.PAD_8" parameterTypeRef="ILO_APP_NHK.PAD_8" />
2622
- <xtce:Parameter name="ILO_APP_NHK.LVPS_3P3V" parameterTypeRef="ILO_APP_NHK.LVPS_3P3V" shortDescription="LVPS – Digital V1: LVPS – +3.3V" />
2623
- <xtce:Parameter name="ILO_APP_NHK.PAD_9" parameterTypeRef="ILO_APP_NHK.PAD_9" />
2624
- <xtce:Parameter name="ILO_APP_NHK.LVPS_5V" parameterTypeRef="ILO_APP_NHK.LVPS_5V" shortDescription="LVPS – Digital V2: LVPS – +5V" />
2625
- <xtce:Parameter name="ILO_APP_NHK.PAD_10" parameterTypeRef="ILO_APP_NHK.PAD_10" />
2626
- <xtce:Parameter name="ILO_APP_NHK.LVPS_N5V" parameterTypeRef="ILO_APP_NHK.LVPS_N5V" shortDescription="LVPS – Digital V3: LVPS – -5V" />
2627
- <xtce:Parameter name="ILO_APP_NHK.PAD_11" parameterTypeRef="ILO_APP_NHK.PAD_11" />
2628
- <xtce:Parameter name="ILO_APP_NHK.LVPS_12V" parameterTypeRef="ILO_APP_NHK.LVPS_12V" shortDescription="LVPS – Digital V4: LVPS – +12V" />
2629
- <xtce:Parameter name="ILO_APP_NHK.PAD_12" parameterTypeRef="ILO_APP_NHK.PAD_12" />
2630
- <xtce:Parameter name="ILO_APP_NHK.LVPS_N12V" parameterTypeRef="ILO_APP_NHK.LVPS_N12V" shortDescription="LVPS – Digital V5: LVPS – -12V" />
2631
- <xtce:Parameter name="ILO_APP_NHK.PAD_13" parameterTypeRef="ILO_APP_NHK.PAD_13" />
2632
- <xtce:Parameter name="ILO_APP_NHK.LVPS_3P3V_I" parameterTypeRef="ILO_APP_NHK.LVPS_3P3V_I" shortDescription="LVPS – Digital I1: LVPS – +3.3V Current" />
2633
- <xtce:Parameter name="ILO_APP_NHK.PAD_14" parameterTypeRef="ILO_APP_NHK.PAD_14" />
2634
- <xtce:Parameter name="ILO_APP_NHK.LVPS_5V_I" parameterTypeRef="ILO_APP_NHK.LVPS_5V_I" shortDescription="LVPS – Digital I2: LVPS – +5V Current" />
2635
- <xtce:Parameter name="ILO_APP_NHK.PAD_15" parameterTypeRef="ILO_APP_NHK.PAD_15" />
2636
- <xtce:Parameter name="ILO_APP_NHK.LVPS_N5V_I" parameterTypeRef="ILO_APP_NHK.LVPS_N5V_I" shortDescription="LVPS – Digital I3: LVPS – -5V Current" />
2637
- <xtce:Parameter name="ILO_APP_NHK.PAD_16" parameterTypeRef="ILO_APP_NHK.PAD_16" />
2638
- <xtce:Parameter name="ILO_APP_NHK.LVPS_12V_I" parameterTypeRef="ILO_APP_NHK.LVPS_12V_I" shortDescription="LVPS – Digital I4: LVPS – +12V Current" />
2639
- <xtce:Parameter name="ILO_APP_NHK.PAD_17" parameterTypeRef="ILO_APP_NHK.PAD_17" />
2640
- <xtce:Parameter name="ILO_APP_NHK.LVPS_N12V_I" parameterTypeRef="ILO_APP_NHK.LVPS_N12V_I" shortDescription="LVPS – Digital I5: LVPS – -12V Current" />
2641
- <xtce:Parameter name="ILO_APP_NHK.PAD_18" parameterTypeRef="ILO_APP_NHK.PAD_18" />
2642
- <xtce:Parameter name="ILO_APP_NHK.CDH_1P5V" parameterTypeRef="ILO_APP_NHK.CDH_1P5V" shortDescription="CDH – + 1.5V" />
2643
- <xtce:Parameter name="ILO_APP_NHK.PAD_19" parameterTypeRef="ILO_APP_NHK.PAD_19" />
2644
- <xtce:Parameter name="ILO_APP_NHK.CDH_1P8V" parameterTypeRef="ILO_APP_NHK.CDH_1P8V" shortDescription="CDH – +1.8V" />
2645
- <xtce:Parameter name="ILO_APP_NHK.PAD_20" parameterTypeRef="ILO_APP_NHK.PAD_20" />
2646
- <xtce:Parameter name="ILO_APP_NHK.CDH_3P3V" parameterTypeRef="ILO_APP_NHK.CDH_3P3V" shortDescription="CDH – +3.3V" />
2647
- <xtce:Parameter name="ILO_APP_NHK.PAD_21" parameterTypeRef="ILO_APP_NHK.PAD_21" />
2648
- <xtce:Parameter name="ILO_APP_NHK.CDH_12V" parameterTypeRef="ILO_APP_NHK.CDH_12V" shortDescription="CDH – +12V" />
2649
- <xtce:Parameter name="ILO_APP_NHK.PAD_22" parameterTypeRef="ILO_APP_NHK.PAD_22" />
2650
- <xtce:Parameter name="ILO_APP_NHK.CDH_N12V" parameterTypeRef="ILO_APP_NHK.CDH_N12V" shortDescription="CDH – -12V" />
2651
- <xtce:Parameter name="ILO_APP_NHK.PAD_23" parameterTypeRef="ILO_APP_NHK.PAD_23" />
2652
- <xtce:Parameter name="ILO_APP_NHK.CDH_5V" parameterTypeRef="ILO_APP_NHK.CDH_5V" shortDescription="CDH – +5V" />
2653
- <xtce:Parameter name="ILO_APP_NHK.PAD_24" parameterTypeRef="ILO_APP_NHK.PAD_24" />
2654
- <xtce:Parameter name="ILO_APP_NHK.CDH_5V_ADC" parameterTypeRef="ILO_APP_NHK.CDH_5V_ADC" shortDescription="CDH – Analog Ref: CDH – +5V ADC" />
2655
- <xtce:Parameter name="ILO_APP_NHK.PAD_25" parameterTypeRef="ILO_APP_NHK.PAD_25" />
2656
- <xtce:Parameter name="ILO_APP_NHK.CDH_PROCESSOR_T" parameterTypeRef="ILO_APP_NHK.CDH_PROCESSOR_T" shortDescription="CDH temperature 1 monitor" />
2657
- <xtce:Parameter name="ILO_APP_NHK.PAD_26" parameterTypeRef="ILO_APP_NHK.PAD_26" />
2658
- <xtce:Parameter name="ILO_APP_NHK.CDH_1P8V_LDO_T" parameterTypeRef="ILO_APP_NHK.CDH_1P8V_LDO_T" shortDescription="CDH temperature 2 monitor" />
2659
- <xtce:Parameter name="ILO_APP_NHK.PAD_27" parameterTypeRef="ILO_APP_NHK.PAD_27" />
2660
- <xtce:Parameter name="ILO_APP_NHK.CDH_1P5V_LDO_T" parameterTypeRef="ILO_APP_NHK.CDH_1P5V_LDO_T" shortDescription="CDH temperature 3 monitor" />
2661
- <xtce:Parameter name="ILO_APP_NHK.PAD_28" parameterTypeRef="ILO_APP_NHK.PAD_28" />
2662
- <xtce:Parameter name="ILO_APP_NHK.CDH_SDRAM_T" parameterTypeRef="ILO_APP_NHK.CDH_SDRAM_T" shortDescription="CDH temperature 4 monitor" />
2663
- <xtce:Parameter name="ILO_APP_NHK.BHV_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_CTRL" shortDescription="Bulk HVPS Control Enable status" />
2664
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE15" parameterTypeRef="ILO_APP_NHK.BHV_SPARE15" />
2665
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_CMD_TIMEOUT_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_CMD_TIMEOUT_ERR_CNT" shortDescription="BHV_STATUS_CMD_TIMEOUT_ERR_CNT" />
2666
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_DAC_UPDATE_ACK_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_DAC_UPDATE_ACK_ERR_CNT" shortDescription="BHV_STATUS_DAC_UPDATE_ACK_ERR_CNT" />
2667
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_READ_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_READ_ERR_CNT" shortDescription="BHV_STATUS_READ_ERR_CNT" />
2668
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_TLM_TIMEOUT_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_TLM_TIMEOUT_ERR_CNT" shortDescription="BHV_STATUS_TLM_TIMEOUT_ERR_CNT" />
2669
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_WRITE_ACK_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_WRITE_ACK_ERR_CNT" shortDescription="BHV_STATUS_WRITE_ACK_ERR_CNT" />
2670
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_CMD_PARITY_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_CMD_PARITY_ERR_CNT" shortDescription="Bulk HVPS Status command parity error status" />
2671
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_CMD_FRAME_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_CMD_FRAME_ERR_CNT" shortDescription="Bulk HVPS Status command frame error status" />
2672
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_TLM_PARITY_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_TLM_PARITY_ERR_CNT" shortDescription="Bulk HVPS Status telemetry parity error status" />
2673
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_TLM_FRAME_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_TLM_FRAME_ERR_CNT" shortDescription="Bulk HVPS Status telemetry frame error status" />
2674
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_TIMEOUT_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_TIMEOUT_ERR_CNT" shortDescription="Bulk HVPS Status timeout error status" />
2675
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_CNT_ERR_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_CNT_ERR_CNT" shortDescription="Bulk HVPS Status count error status" />
2676
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_CMD_CNT" parameterTypeRef="ILO_APP_NHK.BHV_STAT_CMD_CNT" shortDescription="Bulk HVPS Status command count" />
2677
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_MST_EN" parameterTypeRef="ILO_APP_NHK.BHV_STAT_MST_EN" shortDescription="Bulk HVPS Status master enable status" />
2678
- <xtce:Parameter name="ILO_APP_NHK.BHV_HV_PLUG_STATE" parameterTypeRef="ILO_APP_NHK.BHV_HV_PLUG_STATE" shortDescription="Bulk High Voltage plug status" />
2679
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_POR_RST" parameterTypeRef="ILO_APP_NHK.BHV_STAT_POR_RST" shortDescription="Bulk HVPS Status Power On Reset status" />
2680
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_PFO_RST" parameterTypeRef="ILO_APP_NHK.BHV_STAT_PFO_RST" shortDescription="Bulk HVPS Status Power Failure Reset status" />
2681
- <xtce:Parameter name="ILO_APP_NHK.BHV_STAT_SOFT_RST" parameterTypeRef="ILO_APP_NHK.BHV_STAT_SOFT_RST" shortDescription="Bulk HVPS Status Software Reset status" />
2682
- <xtce:Parameter name="ILO_APP_NHK.BHV_BULK_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_BULK_CTRL" shortDescription="Bulk HVPS Bulk enable status, includes DEF_NEG, DEF_POS, and PMT_BIAS" />
2683
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_POS_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_ESA_POS_CTRL" shortDescription="Bulk HVPS ESA_POS enable status" />
2684
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_NEG_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_ESA_NEG_CTRL" shortDescription="Bulk HVPS ESA_NEG disable status" />
2685
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE1" parameterTypeRef="ILO_APP_NHK.BHV_SPARE1" shortDescription="Spare for alignment" />
2686
- <xtce:Parameter name="ILO_APP_NHK.BHV_DAC_PAD0" parameterTypeRef="ILO_APP_NHK.BHV_DAC_PAD0" shortDescription="pad for alignment" />
2687
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_NEG_DAC" parameterTypeRef="ILO_APP_NHK.BHV_ESA_NEG_DAC" shortDescription="Bulk HVPS raw DAC value, ESA_NEG" />
2688
- <xtce:Parameter name="ILO_APP_NHK.BHV_DAC_PAD1" parameterTypeRef="ILO_APP_NHK.BHV_DAC_PAD1" shortDescription="pad for alignment" />
2689
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_POS_DAC" parameterTypeRef="ILO_APP_NHK.BHV_ESA_POS_DAC" shortDescription="Bulk HVPS raw DAC value, ESA_POS" />
2690
- <xtce:Parameter name="ILO_APP_NHK.BHV_DAC_PAD2" parameterTypeRef="ILO_APP_NHK.BHV_DAC_PAD2" shortDescription="pad for alignment" />
2691
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_NEG_DAC" parameterTypeRef="ILO_APP_NHK.BHV_DEF_NEG_DAC" shortDescription="Bulk HVPS raw DAC value, DEF_NEG" />
2692
- <xtce:Parameter name="ILO_APP_NHK.BHV_DAC_PAD3" parameterTypeRef="ILO_APP_NHK.BHV_DAC_PAD3" shortDescription="pad for alignment" />
2693
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_POS_DAC" parameterTypeRef="ILO_APP_NHK.BHV_DEF_POS_DAC" shortDescription="Bulk HVPS raw DAC value, DEF_POS" />
2694
- <xtce:Parameter name="ILO_APP_NHK.BHV_DAC_PAD4" parameterTypeRef="ILO_APP_NHK.BHV_DAC_PAD4" shortDescription="pad for alignment" />
2695
- <xtce:Parameter name="ILO_APP_NHK.BHV_PMT_DAC" parameterTypeRef="ILO_APP_NHK.BHV_PMT_DAC" shortDescription="Bulk HVPS raw DAC value, PMT_BIAS" />
2696
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC1_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_ADC1_CTRL" shortDescription="Bulk HVPS ADC1 enable status" />
2697
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC1_MODE" parameterTypeRef="ILO_APP_NHK.BHV_ADC1_MODE" shortDescription="Bulk HVPS ADC1 mode" />
2698
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC1_CH_SEL" parameterTypeRef="ILO_APP_NHK.BHV_ADC1_CH_SEL" shortDescription="Bulk HVPS ADC1 channel select" />
2699
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC2_CTRL" parameterTypeRef="ILO_APP_NHK.BHV_ADC2_CTRL" shortDescription="Bulk HVPS ADC2 enable status" />
2700
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC2_MODE" parameterTypeRef="ILO_APP_NHK.BHV_ADC2_MODE" shortDescription="Bulk HVPS ADC2 mode" />
2701
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE2" parameterTypeRef="ILO_APP_NHK.BHV_SPARE2" shortDescription="Spare for alignment" />
2702
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC2_CH_SEL" parameterTypeRef="ILO_APP_NHK.BHV_ADC2_CH_SEL" shortDescription="Bulk HVPS ADC2 channel select" />
2703
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE3" parameterTypeRef="ILO_APP_NHK.BHV_SPARE3" shortDescription="Spare for alignment" />
2704
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC1_WAIT_CNT" parameterTypeRef="ILO_APP_NHK.BHV_ADC1_WAIT_CNT" shortDescription="Bulk HVPS ADC1 wait count" />
2705
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC2_WAIT_CNT" parameterTypeRef="ILO_APP_NHK.BHV_ADC2_WAIT_CNT" shortDescription="Bulk HVPS ADC2 wait count" />
2706
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD2" parameterTypeRef="ILO_APP_NHK.BHV_PAD2" shortDescription="pad for alignment" />
2707
- <xtce:Parameter name="ILO_APP_NHK.BHV_BULK_V" parameterTypeRef="ILO_APP_NHK.BHV_BULK_V" shortDescription="Bulk HVPS Bulk voltage" />
2708
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD3" parameterTypeRef="ILO_APP_NHK.BHV_PAD3" shortDescription="pad for alignment" />
2709
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_NEG_V" parameterTypeRef="ILO_APP_NHK.BHV_ESA_NEG_V" shortDescription="Bulk HVPS ESA_NEG voltage" />
2710
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD4" parameterTypeRef="ILO_APP_NHK.BHV_PAD4" shortDescription="pad for alignment" />
2711
- <xtce:Parameter name="ILO_APP_NHK.BHV_ESA_POS_V" parameterTypeRef="ILO_APP_NHK.BHV_ESA_POS_V" shortDescription="Bulk HVPS ESA_POS voltage" />
2712
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD5" parameterTypeRef="ILO_APP_NHK.BHV_PAD5" shortDescription="pad for alignment" />
2713
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_NEG_V" parameterTypeRef="ILO_APP_NHK.BHV_DEF_NEG_V" shortDescription="Bulk HVPS DEF_NEG voltage" />
2714
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD6" parameterTypeRef="ILO_APP_NHK.BHV_PAD6" shortDescription="pad for alignment" />
2715
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_POS_V" parameterTypeRef="ILO_APP_NHK.BHV_DEF_POS_V" shortDescription="Bulk HVPS DEF_POS voltage" />
2716
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD7" parameterTypeRef="ILO_APP_NHK.BHV_PAD7" shortDescription="pad for alignment" />
2717
- <xtce:Parameter name="ILO_APP_NHK.BHV_PMT_V" parameterTypeRef="ILO_APP_NHK.BHV_PMT_V" shortDescription="Bulk HVPS PMT voltage" />
2718
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD8" parameterTypeRef="ILO_APP_NHK.BHV_PAD8" shortDescription="pad for alignment" />
2719
- <xtce:Parameter name="ILO_APP_NHK.BHV_PMT_I" parameterTypeRef="ILO_APP_NHK.BHV_PMT_I" shortDescription="Bulk HVPS PMT current" />
2720
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD9" parameterTypeRef="ILO_APP_NHK.BHV_PAD9" shortDescription="pad for alignment" />
2721
- <xtce:Parameter name="ILO_APP_NHK.BHV_BULK_I" parameterTypeRef="ILO_APP_NHK.BHV_BULK_I" shortDescription="Bulk HVPS Bulk current" />
2722
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD10" parameterTypeRef="ILO_APP_NHK.BHV_PAD10" shortDescription="pad for alignment" />
2723
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_NEG_I" parameterTypeRef="ILO_APP_NHK.BHV_DEF_NEG_I" shortDescription="Bulk HVPS DEF_NEG current" />
2724
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD11" parameterTypeRef="ILO_APP_NHK.BHV_PAD11" shortDescription="pad for alignment" />
2725
- <xtce:Parameter name="ILO_APP_NHK.BHV_DEF_POS_I" parameterTypeRef="ILO_APP_NHK.BHV_DEF_POS_I" shortDescription="Bulk HVPS DEF_POS current" />
2726
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD12" parameterTypeRef="ILO_APP_NHK.BHV_PAD12" shortDescription="pad for alignment" />
2727
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC_REF1_V" parameterTypeRef="ILO_APP_NHK.BHV_ADC_REF1_V" shortDescription="Bulk HVPS ADC Reference 1 voltage" />
2728
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD13" parameterTypeRef="ILO_APP_NHK.BHV_PAD13" shortDescription="pad for alignment" />
2729
- <xtce:Parameter name="ILO_APP_NHK.BHV_ADC_REF2_V" parameterTypeRef="ILO_APP_NHK.BHV_ADC_REF2_V" shortDescription="Bulk HVPS ADC Reference 2 voltage" />
2730
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD14" parameterTypeRef="ILO_APP_NHK.BHV_PAD14" shortDescription="pad for alignment" />
2731
- <xtce:Parameter name="ILO_APP_NHK.BHV_12P0_V" parameterTypeRef="ILO_APP_NHK.BHV_12P0_V" shortDescription="Bulk HVPS positive 12V rail voltage" />
2732
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD15" parameterTypeRef="ILO_APP_NHK.BHV_PAD15" shortDescription="pad for alignment" />
2733
- <xtce:Parameter name="ILO_APP_NHK.BHV_N12P0_V" parameterTypeRef="ILO_APP_NHK.BHV_N12P0_V" shortDescription="Bulk HVPS negative 12V rail voltage" />
2734
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD16" parameterTypeRef="ILO_APP_NHK.BHV_PAD16" shortDescription="pad for alignment" />
2735
- <xtce:Parameter name="ILO_APP_NHK.BHV_3P3_V" parameterTypeRef="ILO_APP_NHK.BHV_3P3_V" shortDescription="Bulk HVPS 3p3 rail voltage" />
2736
- <xtce:Parameter name="ILO_APP_NHK.BHV_PAD17" parameterTypeRef="ILO_APP_NHK.BHV_PAD17" shortDescription="pad for alignment" />
2737
- <xtce:Parameter name="ILO_APP_NHK.BHV_1P5_V" parameterTypeRef="ILO_APP_NHK.BHV_1P5_V" shortDescription="Bulk HVPS 1p5 rail voltage" />
2738
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE4" parameterTypeRef="ILO_APP_NHK.BHV_SPARE4" shortDescription="Spare for alignment" />
2739
- <xtce:Parameter name="ILO_APP_NHK.MEM_OP_STATE" parameterTypeRef="ILO_APP_NHK.MEM_OP_STATE" shortDescription="Memory operation state" />
2740
- <xtce:Parameter name="ILO_APP_NHK.MEM_DUMP_STATE" parameterTypeRef="ILO_APP_NHK.MEM_DUMP_STATE" shortDescription="Memory dump state" />
2741
- <xtce:Parameter name="ILO_APP_NHK.SPIN_CNT" parameterTypeRef="ILO_APP_NHK.SPIN_CNT" shortDescription="Spin count" />
2742
- <xtce:Parameter name="ILO_APP_NHK.MISSED_PPS_CNT" parameterTypeRef="ILO_APP_NHK.MISSED_PPS_CNT" shortDescription="Missed PPS from Spacecraft count" />
2743
- <xtce:Parameter name="ILO_APP_NHK.CPU_IDLE" parameterTypeRef="ILO_APP_NHK.CPU_IDLE" shortDescription="CPU idle percentage" />
2744
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE5" parameterTypeRef="ILO_APP_NHK.BHV_SPARE5" shortDescription="Spare for alignment" />
2745
- <xtce:Parameter name="ILO_APP_NHK.SPIN_BIN_IDX" parameterTypeRef="ILO_APP_NHK.SPIN_BIN_IDX" shortDescription="Spin bin index" />
2746
- <xtce:Parameter name="ILO_APP_NHK.SPIN_PERIOD" parameterTypeRef="ILO_APP_NHK.SPIN_PERIOD" shortDescription="Spin period" />
2747
- <xtce:Parameter name="ILO_APP_NHK.CDH_HEATER_1" parameterTypeRef="ILO_APP_NHK.CDH_HEATER_1" shortDescription="Heater 1 status" />
2748
- <xtce:Parameter name="ILO_APP_NHK.CDH_HEATER_2" parameterTypeRef="ILO_APP_NHK.CDH_HEATER_2" shortDescription="Heater 2 status" />
2749
- <xtce:Parameter name="ILO_APP_NHK.INSTR_PWR_12V" parameterTypeRef="ILO_APP_NHK.INSTR_PWR_12V" shortDescription="Instrument switched power output +/- 12V status" />
2750
- <xtce:Parameter name="ILO_APP_NHK.INSTR_PWR_ANALOG_5V" parameterTypeRef="ILO_APP_NHK.INSTR_PWR_ANALOG_5V" shortDescription="Instrument switched power output analog 5V status" />
2751
- <xtce:Parameter name="ILO_APP_NHK.INSTR_PWR_DIGITAL_5V_3P3V" parameterTypeRef="ILO_APP_NHK.INSTR_PWR_DIGITAL_5V_3P3V" shortDescription="Instrument switched power output digital 5V and 3P3V status" />
2752
- <xtce:Parameter name="ILO_APP_NHK.IFB_CMD_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_CMD_ERROR" shortDescription="Error status if an IFB an attempt to write a command before interface was ready" />
2753
- <xtce:Parameter name="ILO_APP_NHK.IFB_INTERFACE" parameterTypeRef="ILO_APP_NHK.IFB_INTERFACE" shortDescription="CDH IFB interface status" />
2754
- <xtce:Parameter name="ILO_APP_NHK.IFB_ADC_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.IFB_ADC_TLM_PKT_RCVD" shortDescription="Star sensor FIFO underflow" />
2755
- <xtce:Parameter name="ILO_APP_NHK.IFB_ADC_TLM_TIMEOUT_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_ADC_TLM_TIMEOUT_ERROR" shortDescription="Star sensor FIFO overflow" />
2756
- <xtce:Parameter name="ILO_APP_NHK.IFB_ADC_TLM_ID_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_ADC_TLM_ID_ERROR" shortDescription="Star sensor FIFO full" />
2757
- <xtce:Parameter name="ILO_APP_NHK.IFB_ADC_TLM_FRAME_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_ADC_TLM_FRAME_ERROR" shortDescription="Star sensor FIFO half full" />
2758
- <xtce:Parameter name="ILO_APP_NHK.IFB_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.IFB_TLM_PKT_RCVD" shortDescription="Star sensor FIFO empty" />
2759
- <xtce:Parameter name="ILO_APP_NHK.IFB_TLM_TIMEOUT_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_TLM_TIMEOUT_ERROR" shortDescription="IFB ADC telemetry packet received" />
2760
- <xtce:Parameter name="ILO_APP_NHK.IFB_TLM_ID_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_TLM_ID_ERROR" shortDescription="IFB ADC telemetry timeout error" />
2761
- <xtce:Parameter name="ILO_APP_NHK.IFB_TLM_FRAME_ERROR" parameterTypeRef="ILO_APP_NHK.IFB_TLM_FRAME_ERROR" shortDescription="IFB ADC telemetry ID error" />
2762
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.TOF_BD_TLM_PKT_RCVD" shortDescription="IFB ADC telemetry frame error" />
2763
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_ADC_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.TOF_BD_ADC_TLM_PKT_RCVD" shortDescription="IFB telemetry packet received" />
2764
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_REG_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.TOF_BD_REG_TLM_PKT_RCVD" shortDescription="IFB telemetry timeout error" />
2765
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CNT_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.TOF_BD_CNT_TLM_PKT_RCVD" shortDescription="IFB telemetry ID error" />
2766
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_DE_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.TOF_BD_DE_TLM_PKT_RCVD" shortDescription="IFB telemetry frame error" />
2767
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_TLM_TIMEOUT_ERROR" parameterTypeRef="ILO_APP_NHK.TOF_BD_TLM_TIMEOUT_ERROR" shortDescription="Any TOF Board telemetry packet received" />
2768
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_TLM_ID_ERROR" parameterTypeRef="ILO_APP_NHK.TOF_BD_TLM_ID_ERROR" shortDescription="TOF Board ADC telemetry packet recevied" />
2769
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_TLM_FRAME_ERROR" parameterTypeRef="ILO_APP_NHK.TOF_BD_TLM_FRAME_ERROR" shortDescription="TOF Board register telemetry packet recevied" />
2770
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE7" parameterTypeRef="ILO_APP_NHK.BHV_SPARE7" shortDescription="Spare for alignment" />
2771
- <xtce:Parameter name="ILO_APP_NHK.DIRECT_EVENT_TIME_TAG_CNT" parameterTypeRef="ILO_APP_NHK.DIRECT_EVENT_TIME_TAG_CNT" shortDescription="Direct event time tag counter" />
2772
- <xtce:Parameter name="ILO_APP_NHK.DIRECT_EVENT_FIFO_CNT" parameterTypeRef="ILO_APP_NHK.DIRECT_EVENT_FIFO_CNT" shortDescription="Direct event FIFO count" />
2773
- <xtce:Parameter name="ILO_APP_NHK.PCC_INTERFACE" parameterTypeRef="ILO_APP_NHK.PCC_INTERFACE" shortDescription="Pivot platform interface status" />
2774
- <xtce:Parameter name="ILO_APP_NHK.PPC_TLM_TIMEOUT_ERROR" parameterTypeRef="ILO_APP_NHK.PPC_TLM_TIMEOUT_ERROR" shortDescription="Pivot platform interface telemetry timeout error" />
2775
- <xtce:Parameter name="ILO_APP_NHK.PPC_TLM_PARITY_ERROR" parameterTypeRef="ILO_APP_NHK.PPC_TLM_PARITY_ERROR" shortDescription="Pivot platform interface telemetry parity error" />
2776
- <xtce:Parameter name="ILO_APP_NHK.PPC_TLM_PKT_RCVD" parameterTypeRef="ILO_APP_NHK.PPC_TLM_PKT_RCVD" shortDescription="Pivot platform interface telemetry packet received" />
2777
- <xtce:Parameter name="ILO_APP_NHK.IFB_HV_PLUG_STATE" parameterTypeRef="ILO_APP_NHK.IFB_HV_PLUG_STATE" shortDescription="IFB High Voltage plug status" />
2778
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE10" parameterTypeRef="ILO_APP_NHK.BHV_SPARE10" shortDescription="Spare for alignment" />
2779
- <xtce:Parameter name="ILO_APP_NHK.IFB_CMD_COUNT" parameterTypeRef="ILO_APP_NHK.IFB_CMD_COUNT" shortDescription="IFB command counter" />
2780
- <xtce:Parameter name="ILO_APP_NHK.IFB_CTRL_INT_MUX" parameterTypeRef="ILO_APP_NHK.IFB_CTRL_INT_MUX" shortDescription="IFB internal mux selection" />
2781
- <xtce:Parameter name="ILO_APP_NHK.IFB_CTRL_ADC_CLK_DS" parameterTypeRef="ILO_APP_NHK.IFB_CTRL_ADC_CLK_DS" shortDescription="IFB AC clock de-assert status" />
2782
- <xtce:Parameter name="ILO_APP_NHK.IFB_CTRL_OSCOPE" parameterTypeRef="ILO_APP_NHK.IFB_CTRL_OSCOPE" shortDescription="IFB oscope mode status" />
2783
- <xtce:Parameter name="ILO_APP_NHK.IFB_CTRL_STAR_SYNC" parameterTypeRef="ILO_APP_NHK.IFB_CTRL_STAR_SYNC" shortDescription="IFB star sync status" />
2784
- <xtce:Parameter name="ILO_APP_NHK.IFB_CTRL_DATA" parameterTypeRef="ILO_APP_NHK.IFB_CTRL_DATA" shortDescription="IFB telmetry state" />
2785
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE11" parameterTypeRef="ILO_APP_NHK.BHV_SPARE11" shortDescription="Spare for alignment" />
2786
- <xtce:Parameter name="ILO_APP_NHK.IFB_DATA_INTERVAL" parameterTypeRef="ILO_APP_NHK.IFB_DATA_INTERVAL" shortDescription="IFB Data Interval" />
2787
- <xtce:Parameter name="ILO_APP_NHK.TOF_HVPS_CTRL_SYNC_CLK" parameterTypeRef="ILO_APP_NHK.TOF_HVPS_CTRL_SYNC_CLK" shortDescription="TOF HVPS sync clock state" />
2788
- <xtce:Parameter name="ILO_APP_NHK.TOF_HVPS_CTRL_PAC" parameterTypeRef="ILO_APP_NHK.TOF_HVPS_CTRL_PAC" shortDescription="TOF HVPS PAC state" />
2789
- <xtce:Parameter name="ILO_APP_NHK.TOF_HVPS_CTRL_MCP" parameterTypeRef="ILO_APP_NHK.TOF_HVPS_CTRL_MCP" shortDescription="TOF HVPS MCP state" />
2790
- <xtce:Parameter name="ILO_APP_NHK.TOF_HVPS_CTRL_LV" parameterTypeRef="ILO_APP_NHK.TOF_HVPS_CTRL_LV" shortDescription="TOF Board LV state" />
2791
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE12" parameterTypeRef="ILO_APP_NHK.BHV_SPARE12" shortDescription="Spare for alignment" />
2792
- <xtce:Parameter name="ILO_APP_NHK.PAC_VSET" parameterTypeRef="ILO_APP_NHK.PAC_VSET" shortDescription="TOF HVPS PAC VSET DAC" />
2793
- <xtce:Parameter name="ILO_APP_NHK.PAC_OCP" parameterTypeRef="ILO_APP_NHK.PAC_OCP" shortDescription="TOF HVPS PAC overcurrent protection" />
2794
- <xtce:Parameter name="ILO_APP_NHK.MCP_VSET" parameterTypeRef="ILO_APP_NHK.MCP_VSET" shortDescription="TOF HVPS MCP VSET DAC" />
2795
- <xtce:Parameter name="ILO_APP_NHK.MCP_OCP" parameterTypeRef="ILO_APP_NHK.MCP_OCP" shortDescription="TOF HVPS MCP overcurrent protection" />
2796
- <xtce:Parameter name="ILO_APP_NHK.STAR_OFFSET_ADJUST" parameterTypeRef="ILO_APP_NHK.STAR_OFFSET_ADJUST" shortDescription="Star sensor offset adjust" />
2797
- <xtce:Parameter name="ILO_APP_NHK.IFB_OSCOPE_CH1" parameterTypeRef="ILO_APP_NHK.IFB_OSCOPE_CH1" shortDescription="IFB oscope channel 1 selection" />
2798
- <xtce:Parameter name="ILO_APP_NHK.IFB_OSCOPE_CH0" parameterTypeRef="ILO_APP_NHK.IFB_OSCOPE_CH0" shortDescription="IFB oscope channel 0 selection" />
2799
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD0" parameterTypeRef="ILO_APP_NHK.IFB_PAD0" shortDescription="pad for alignment" />
2800
- <xtce:Parameter name="ILO_APP_NHK.IFB_HOT_SPOT_T" parameterTypeRef="ILO_APP_NHK.IFB_HOT_SPOT_T" shortDescription="IFB temperature hot spot between FPGA and 2P5V regulator" />
2801
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD1" parameterTypeRef="ILO_APP_NHK.IFB_PAD1" shortDescription="pad for alignment" />
2802
- <xtce:Parameter name="ILO_APP_NHK.IFB_COLD_SPOT_T" parameterTypeRef="ILO_APP_NHK.IFB_COLD_SPOT_T" shortDescription="IFB temperature cold spot at board corner between J1 and J2" />
2803
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD2" parameterTypeRef="ILO_APP_NHK.IFB_PAD2" shortDescription="pad for alignment" />
2804
- <xtce:Parameter name="ILO_APP_NHK.IFB_5P0_V" parameterTypeRef="ILO_APP_NHK.IFB_5P0_V" shortDescription="IFB 5V voltage" />
2805
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD3" parameterTypeRef="ILO_APP_NHK.IFB_PAD3" shortDescription="pad for alignment" />
2806
- <xtce:Parameter name="ILO_APP_NHK.IFB_3P3_V" parameterTypeRef="ILO_APP_NHK.IFB_3P3_V" shortDescription="IFB 3P3V voltage" />
2807
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD4" parameterTypeRef="ILO_APP_NHK.IFB_PAD4" shortDescription="pad for alignment" />
2808
- <xtce:Parameter name="ILO_APP_NHK.IFB_12P0_V" parameterTypeRef="ILO_APP_NHK.IFB_12P0_V" shortDescription="IFB +12V voltage" />
2809
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD5" parameterTypeRef="ILO_APP_NHK.IFB_PAD5" shortDescription="pad for alignment" />
2810
- <xtce:Parameter name="ILO_APP_NHK.IFB_N12P0_V" parameterTypeRef="ILO_APP_NHK.IFB_N12P0_V" shortDescription="IFB -12V voltage" />
2811
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD6" parameterTypeRef="ILO_APP_NHK.IFB_PAD6" shortDescription="pad for alignment" />
2812
- <xtce:Parameter name="ILO_APP_NHK.LV_I" parameterTypeRef="ILO_APP_NHK.LV_I" shortDescription="TOF Board LV current" />
2813
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD7" parameterTypeRef="ILO_APP_NHK.IFB_PAD7" shortDescription="pad for alignment" />
2814
- <xtce:Parameter name="ILO_APP_NHK.LV_V" parameterTypeRef="ILO_APP_NHK.LV_V" shortDescription="TOF Board LV voltage" />
2815
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD8" parameterTypeRef="ILO_APP_NHK.IFB_PAD8" shortDescription="pad for alignment" />
2816
- <xtce:Parameter name="ILO_APP_NHK.LV_T" parameterTypeRef="ILO_APP_NHK.LV_T" shortDescription="TOF Board LV temperature" />
2817
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD9" parameterTypeRef="ILO_APP_NHK.IFB_PAD9" shortDescription="pad for alignment" />
2818
- <xtce:Parameter name="ILO_APP_NHK.MCP_I" parameterTypeRef="ILO_APP_NHK.MCP_I" shortDescription="MCP current" />
2819
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD10" parameterTypeRef="ILO_APP_NHK.IFB_PAD10" shortDescription="pad for alignment" />
2820
- <xtce:Parameter name="ILO_APP_NHK.MCP_V" parameterTypeRef="ILO_APP_NHK.MCP_V" shortDescription="MCP voltage" />
2821
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD11" parameterTypeRef="ILO_APP_NHK.IFB_PAD11" shortDescription="pad for alignment" />
2822
- <xtce:Parameter name="ILO_APP_NHK.MCP_T" parameterTypeRef="ILO_APP_NHK.MCP_T" shortDescription="MCP temperature" />
2823
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD12" parameterTypeRef="ILO_APP_NHK.IFB_PAD12" shortDescription="pad for alignment" />
2824
- <xtce:Parameter name="ILO_APP_NHK.PAC_I" parameterTypeRef="ILO_APP_NHK.PAC_I" shortDescription="PAC current" />
2825
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD13" parameterTypeRef="ILO_APP_NHK.IFB_PAD13" shortDescription="pad for alignment" />
2826
- <xtce:Parameter name="ILO_APP_NHK.PAC_V" parameterTypeRef="ILO_APP_NHK.PAC_V" shortDescription="PAC voltage" />
2827
- <xtce:Parameter name="ILO_APP_NHK.IFB_PAD14" parameterTypeRef="ILO_APP_NHK.IFB_PAD14" shortDescription="pad for alignment" />
2828
- <xtce:Parameter name="ILO_APP_NHK.PAC_T" parameterTypeRef="ILO_APP_NHK.PAC_T" shortDescription="PAC temperature" />
2829
- <xtce:Parameter name="ILO_APP_NHK.TOF_CMD_ERROR" parameterTypeRef="ILO_APP_NHK.TOF_CMD_ERROR" shortDescription="TOF Board command error counter" />
2830
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD0" parameterTypeRef="ILO_APP_NHK.TOF_PAD0" shortDescription="pad for alignment" />
2831
- <xtce:Parameter name="ILO_APP_NHK.TOF_CFD_V" parameterTypeRef="ILO_APP_NHK.TOF_CFD_V" shortDescription="TOF Board CFD voltage" />
2832
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD1" parameterTypeRef="ILO_APP_NHK.TOF_PAD1" shortDescription="pad for alignment" />
2833
- <xtce:Parameter name="ILO_APP_NHK.TOF_PRE_T" parameterTypeRef="ILO_APP_NHK.TOF_PRE_T" shortDescription="TOF Board preamp temperature" />
2834
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD2" parameterTypeRef="ILO_APP_NHK.TOF_PAD2" shortDescription="pad for alignment" />
2835
- <xtce:Parameter name="ILO_APP_NHK.TOF_REG_T" parameterTypeRef="ILO_APP_NHK.TOF_REG_T" shortDescription="TOF Board regulator temperature" />
2836
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD3" parameterTypeRef="ILO_APP_NHK.TOF_PAD3" shortDescription="pad for alignment" />
2837
- <xtce:Parameter name="ILO_APP_NHK.TOF_MCP_I" parameterTypeRef="ILO_APP_NHK.TOF_MCP_I" shortDescription="MCP current" />
2838
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD4" parameterTypeRef="ILO_APP_NHK.TOF_PAD4" shortDescription="pad for alignment" />
2839
- <xtce:Parameter name="ILO_APP_NHK.TOF_MCP_V" parameterTypeRef="ILO_APP_NHK.TOF_MCP_V" shortDescription="MCP voltage" />
2840
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD5" parameterTypeRef="ILO_APP_NHK.TOF_PAD5" shortDescription="pad for alignment" />
2841
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_I" parameterTypeRef="ILO_APP_NHK.TOF_BD_I" shortDescription="TOF Board current" />
2842
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD6" parameterTypeRef="ILO_APP_NHK.TOF_PAD6" shortDescription="pad for alignment" />
2843
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_P5_V" parameterTypeRef="ILO_APP_NHK.TOF_BD_P5_V" shortDescription="TOF Board +5V voltage" />
2844
- <xtce:Parameter name="ILO_APP_NHK.TOF_PAD7" parameterTypeRef="ILO_APP_NHK.TOF_PAD7" shortDescription="pad for alignment" />
2845
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_P6_V" parameterTypeRef="ILO_APP_NHK.TOF_BD_P6_V" shortDescription="TOF Board +6V Voltage" />
2846
- <xtce:Parameter name="ILO_APP_NHK.AN_A_THR" parameterTypeRef="ILO_APP_NHK.AN_A_THR" shortDescription="Anode A threshold" />
2847
- <xtce:Parameter name="ILO_APP_NHK.AN_B0_THR" parameterTypeRef="ILO_APP_NHK.AN_B0_THR" shortDescription="Anode B0 threshold" />
2848
- <xtce:Parameter name="ILO_APP_NHK.AN_B3_THR" parameterTypeRef="ILO_APP_NHK.AN_B3_THR" shortDescription="Anode B3 threshold" />
2849
- <xtce:Parameter name="ILO_APP_NHK.AN_C_THR" parameterTypeRef="ILO_APP_NHK.AN_C_THR" shortDescription="Anode C threshold" />
2850
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_TLM" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_TLM" shortDescription="TOF Board Control telemetry state" />
2851
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_DE_TLM" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_DE_TLM" shortDescription="TOF Board Control direct event telemetry state" />
2852
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_TOF3_REQ" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_TOF3_REQ" shortDescription="TOF Board Control valid TOF3 required" />
2853
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_TOF2_REQ" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_TOF2_REQ" shortDescription="TOF Board Control valid TOF2 required" />
2854
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_TOF1_REQ" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_TOF1_REQ" shortDescription="TOF Board Control valid TOF1 required" />
2855
- <xtce:Parameter name="ILO_APP_NHK.TOF_BD_CTRL_TOF0_REQ" parameterTypeRef="ILO_APP_NHK.TOF_BD_CTRL_TOF0_REQ" shortDescription="TOF Board Control valid TOF0 required" />
2856
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_C_STATE" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_C_STATE" shortDescription="TOF Board Stimulus Control Anode C state" />
2857
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_C_SRC" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_C_SRC" shortDescription="TOF Board Stimulus Control Anode C pulse state" />
2858
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_B3_STATE" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_B3_STATE" shortDescription="TOF Board Stimulus Control Anode B3 state" />
2859
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_B3_SRC" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_B3_SRC" shortDescription="TOF Board Stimulus Control Anode B3 pulse state" />
2860
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_B0_STATE" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_B0_STATE" shortDescription="TOF Board Stimulus Control Anode B0 state" />
2861
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_B0_SRC" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_B0_SRC" shortDescription="TOF Board Stimulus Control Anode B0 pulse state" />
2862
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_A_STATE" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_A_STATE" shortDescription="TOF Board Stimulus Control Anode A state" />
2863
- <xtce:Parameter name="ILO_APP_NHK.STIM_CTRL_AN_A_SRC" parameterTypeRef="ILO_APP_NHK.STIM_CTRL_AN_A_SRC" shortDescription="TOF Board Stimulus Control Anode A pulse state" />
2864
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE13" parameterTypeRef="ILO_APP_NHK.BHV_SPARE13" shortDescription="Spare for alignment" />
2865
- <xtce:Parameter name="ILO_APP_NHK.STIM_CNFG_FREQ" parameterTypeRef="ILO_APP_NHK.STIM_CNFG_FREQ" shortDescription="TOF Board Stimulus Config frequency" />
2866
- <xtce:Parameter name="ILO_APP_NHK.STIM_CNFG_DELAY" parameterTypeRef="ILO_APP_NHK.STIM_CNFG_DELAY" shortDescription="TOF Board Stimulus Config delay" />
2867
- <xtce:Parameter name="ILO_APP_NHK.TOF3_THR" parameterTypeRef="ILO_APP_NHK.TOF3_THR" shortDescription="TOF Board TOF3 threshold" />
2868
- <xtce:Parameter name="ILO_APP_NHK.TOF2_THR" parameterTypeRef="ILO_APP_NHK.TOF2_THR" shortDescription="TOF Board TOF2 threshold" />
2869
- <xtce:Parameter name="ILO_APP_NHK.TOF1_THR" parameterTypeRef="ILO_APP_NHK.TOF1_THR" shortDescription="TOF Board TOF1 threshold" />
2870
- <xtce:Parameter name="ILO_APP_NHK.TOF0_THR" parameterTypeRef="ILO_APP_NHK.TOF0_THR" shortDescription="TOF Board TOF0 threshold" />
2871
- <xtce:Parameter name="ILO_APP_NHK.TOF3_VETO" parameterTypeRef="ILO_APP_NHK.TOF3_VETO" shortDescription="TOF3 veto" />
2872
- <xtce:Parameter name="ILO_APP_NHK.TOF2_VETO" parameterTypeRef="ILO_APP_NHK.TOF2_VETO" shortDescription="TOF2 veto" />
2873
- <xtce:Parameter name="ILO_APP_NHK.TOF1_VETO" parameterTypeRef="ILO_APP_NHK.TOF1_VETO" shortDescription="TOF1 veto" />
2874
- <xtce:Parameter name="ILO_APP_NHK.TOF0_VETO" parameterTypeRef="ILO_APP_NHK.TOF0_VETO" shortDescription="TOF0 veto" />
2875
- <xtce:Parameter name="ILO_APP_NHK.BHV_SPARE14" parameterTypeRef="ILO_APP_NHK.BHV_SPARE14" shortDescription="Spare for alignment" />
2876
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD0" parameterTypeRef="ILO_APP_NHK.PCC_PAD0" shortDescription="pad for alignment" />
2877
- <xtce:Parameter name="ILO_APP_NHK.PCC_COARSE_POT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_COARSE_POT_PRI" shortDescription="Pivot platform ADC primary coarse pot degrees" />
2878
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD1" parameterTypeRef="ILO_APP_NHK.PCC_PAD1" shortDescription="pad for alignment" />
2879
- <xtce:Parameter name="ILO_APP_NHK.PCC_FINE_POT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_FINE_POT_PRI" shortDescription="Pivot platform ADC primary fine pot degrees" />
2880
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD2" parameterTypeRef="ILO_APP_NHK.PCC_PAD2" shortDescription="pad for alignment" />
2881
- <xtce:Parameter name="ILO_APP_NHK.PCC_COARSE_POT_RED" parameterTypeRef="ILO_APP_NHK.PCC_COARSE_POT_RED" shortDescription="Pivot platform ADC redundant coarse pot degrees" />
2882
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD3" parameterTypeRef="ILO_APP_NHK.PCC_PAD3" shortDescription="pad for alignment" />
2883
- <xtce:Parameter name="ILO_APP_NHK.PCC_FINE_POT_RED" parameterTypeRef="ILO_APP_NHK.PCC_FINE_POT_RED" shortDescription="Pivot platform ADC redundant fine pot degrees" />
2884
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD4" parameterTypeRef="ILO_APP_NHK.PCC_PAD4" shortDescription="pad for alignment" />
2885
- <xtce:Parameter name="ILO_APP_NHK.PCC_ACTUATOR_T" parameterTypeRef="ILO_APP_NHK.PCC_ACTUATOR_T" shortDescription="Pivot platform ADC actuator temperature" />
2886
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD5" parameterTypeRef="ILO_APP_NHK.PCC_PAD5" shortDescription="pad for alignment" />
2887
- <xtce:Parameter name="ILO_APP_NHK.PCC_BOARD_T" parameterTypeRef="ILO_APP_NHK.PCC_BOARD_T" shortDescription="Pivot platform ADC board temperature" />
2888
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD6" parameterTypeRef="ILO_APP_NHK.PCC_PAD6" shortDescription="pad for alignment" />
2889
- <xtce:Parameter name="ILO_APP_NHK.PCC_MOTOR_CURRENT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_MOTOR_CURRENT_PRI" shortDescription="Pivot platform ADC primary motor current" />
2890
- <xtce:Parameter name="ILO_APP_NHK.PCC_PAD7" parameterTypeRef="ILO_APP_NHK.PCC_PAD7" shortDescription="pad for alignment" />
2891
- <xtce:Parameter name="ILO_APP_NHK.PCC_MOTOR_CURRENT_RED" parameterTypeRef="ILO_APP_NHK.PCC_MOTOR_CURRENT_RED" shortDescription="Pivot platform ADC redundant motor current" />
2892
- <xtce:Parameter name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_PRI" shortDescription="Pivot platform primary cumulative count" />
2893
- <xtce:Parameter name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_PRI" parameterTypeRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_PRI" shortDescription="Pivot platform primary cumulative count sign" />
2894
- <xtce:Parameter name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_RED" parameterTypeRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_RED" shortDescription="Pivot platform redundant cumulative count" />
2895
- <xtce:Parameter name="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_RED" parameterTypeRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_RED" shortDescription="Pivot platform redundant cumulative count sign" />
2896
- <xtce:Parameter name="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_PRI" shortDescription="Pivot platform primary current step count" />
2897
- <xtce:Parameter name="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_RED" parameterTypeRef="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_RED" shortDescription="Pivot platform redundant current step count" />
2898
- <xtce:Parameter name="ILO_APP_NHK.PCC_CURRENT_SETPT_PRI" parameterTypeRef="ILO_APP_NHK.PCC_CURRENT_SETPT_PRI" shortDescription="Pivot platform primary current setpoint" />
2899
- <xtce:Parameter name="ILO_APP_NHK.PCC_CURRENT_SETPT_RED" parameterTypeRef="ILO_APP_NHK.PCC_CURRENT_SETPT_RED" shortDescription="Pivot platform redundant current setpoint" />
2900
- <xtce:Parameter name="ILO_APP_NHK.PCC_PRI_ACTIVE" parameterTypeRef="ILO_APP_NHK.PCC_PRI_ACTIVE" shortDescription="Pivot platform primary port active - motion in progress status" />
2901
- <xtce:Parameter name="ILO_APP_NHK.PCC_PRI_POWERED" parameterTypeRef="ILO_APP_NHK.PCC_PRI_POWERED" shortDescription="Pivot platform primary port powered - powered idle state" />
2902
- <xtce:Parameter name="ILO_APP_NHK.PCC_PRI_USTEP" parameterTypeRef="ILO_APP_NHK.PCC_PRI_USTEP" shortDescription="Pivot platform primary port micro-stepping status" />
2903
- <xtce:Parameter name="ILO_APP_NHK.PCC_PRI_ACCEL" parameterTypeRef="ILO_APP_NHK.PCC_PRI_ACCEL" shortDescription="Pivot platform primary acceleration profiling status" />
2904
- <xtce:Parameter name="ILO_APP_NHK.PCC_RED_ACTIVE" parameterTypeRef="ILO_APP_NHK.PCC_RED_ACTIVE" shortDescription="Pivot platform redundant port active - motion in progress status" />
2905
- <xtce:Parameter name="ILO_APP_NHK.PCC_RED_POWERED" parameterTypeRef="ILO_APP_NHK.PCC_RED_POWERED" shortDescription="Pivot platform redundant port powered - powered idle state" />
2906
- <xtce:Parameter name="ILO_APP_NHK.PCC_RED_USTEP" parameterTypeRef="ILO_APP_NHK.PCC_RED_USTEP" shortDescription="Pivot platform redundant port micro-stepping status" />
2907
- <xtce:Parameter name="ILO_APP_NHK.PCC_RED_ACCEL" parameterTypeRef="ILO_APP_NHK.PCC_RED_ACCEL" shortDescription="Pivot platform redundant acceleration profiling status" />
2908
- <xtce:Parameter name="ILO_APP_NHK.RTS_ID" parameterTypeRef="ILO_APP_NHK.RTS_ID" shortDescription="Currently running macro ID" />
2909
- <xtce:Parameter name="ILO_APP_NHK.RTS_STATE" parameterTypeRef="ILO_APP_NHK.RTS_STATE" shortDescription="Currently running macro state" />
2910
- <xtce:Parameter name="ILO_APP_NHK.RTS_NUM_CMDS" parameterTypeRef="ILO_APP_NHK.RTS_NUM_CMDS" shortDescription="Currently running macro number of commands" />
2911
- <xtce:Parameter name="ILO_APP_NHK.RTS_NUM_CMDS_EXE" parameterTypeRef="ILO_APP_NHK.RTS_NUM_CMDS_EXE" shortDescription="Currently running macro number of commands executed so far" />
2912
- <xtce:Parameter name="ILO_APP_NHK.RTS_INDEX" parameterTypeRef="ILO_APP_NHK.RTS_INDEX" shortDescription="Currently running macro command index" />
2913
- <xtce:Parameter name="ILO_APP_NHK.RTS_NEXT_OPCODE" parameterTypeRef="ILO_APP_NHK.RTS_NEXT_OPCODE" shortDescription="Currently running macro next opcode to be executed" />
2914
- <xtce:Parameter name="ILO_APP_NHK.RTS_TIME_REMAINING" parameterTypeRef="ILO_APP_NHK.RTS_TIME_REMAINING" shortDescription="Currently running macro time until next command" />
2915
- <xtce:Parameter name="ILO_APP_NHK.OP_HTR_SELECT" parameterTypeRef="ILO_APP_NHK.OP_HTR_SELECT" shortDescription="Current selected heater that will operate under configured modes. Effectively last active heater." />
2916
- <xtce:Parameter name="ILO_APP_NHK.OP_HTR_MODE" parameterTypeRef="ILO_APP_NHK.OP_HTR_MODE" shortDescription="Heater mode, MANUAL, BLIND, or AUTO." />
2917
- <xtce:Parameter name="ILO_APP_NHK.OP_HTR_CYCLE_TIME" parameterTypeRef="ILO_APP_NHK.OP_HTR_CYCLE_TIME" shortDescription="BLIND mode cycle time in seconds (on for # seconds, off for # seconds)" />
2918
- <xtce:Parameter name="ILO_APP_NHK.OP_HTR_LO_SETPOINT" parameterTypeRef="ILO_APP_NHK.OP_HTR_LO_SETPOINT" shortDescription="AUTO mode lower setpoint, heater will turn on when this is reached." />
2919
- <xtce:Parameter name="ILO_APP_NHK.OP_HTR_HI_SETPOINT" parameterTypeRef="ILO_APP_NHK.OP_HTR_HI_SETPOINT" shortDescription="AUTO mode upper setpoint, heater will turn off when this is reached." />
2920
- <xtce:Parameter name="ILO_APP_NHK.CDH_HV_PLUG_STATE" parameterTypeRef="ILO_APP_NHK.CDH_HV_PLUG_STATE" shortDescription="HV limit plug status from CDH board" />
2921
- <xtce:Parameter name="ILO_APP_NHK.SPARE16" parameterTypeRef="ILO_APP_NHK.SPARE16" />
2922
- <xtce:Parameter name="ILO_APP_NHK.SCI_CYCLE" parameterTypeRef="ILO_APP_NHK.SCI_CYCLE" shortDescription="Current state of science cycle" />
2923
- <xtce:Parameter name="ILO_APP_NHK.PPM_STATE" parameterTypeRef="ILO_APP_NHK.PPM_STATE" shortDescription="Current state of PPM state machine" />
2924
- <xtce:Parameter name="ILO_APP_NHK.PPM_MOTOR" parameterTypeRef="ILO_APP_NHK.PPM_MOTOR" shortDescription="Selected motor channel for motion" />
2925
- <xtce:Parameter name="ILO_APP_NHK.PPM_DIRECTION" parameterTypeRef="ILO_APP_NHK.PPM_DIRECTION" shortDescription="Selected direction for motion" />
2926
- <xtce:Parameter name="ILO_APP_NHK.PPM_STEP_PERIOD" parameterTypeRef="ILO_APP_NHK.PPM_STEP_PERIOD" shortDescription="Step period for motion" />
2927
- <xtce:Parameter name="ILO_APP_NHK.PPM_MICROSTEP" parameterTypeRef="ILO_APP_NHK.PPM_MICROSTEP" shortDescription="Microstepping state" />
2928
- <xtce:Parameter name="ILO_APP_NHK.PPM_CURRENT_THRESHOLD" parameterTypeRef="ILO_APP_NHK.PPM_CURRENT_THRESHOLD" shortDescription="The minimum motor current to determine if a motor is powered" />
2929
- <xtce:Parameter name="ILO_APP_NHK.PPM_STALL_THRESHOLD" parameterTypeRef="ILO_APP_NHK.PPM_STALL_THRESHOLD" shortDescription="The minimum number of coarse potentiometer counts over the stall period to detect stall" />
2930
- <xtce:Parameter name="ILO_APP_NHK.PPM_STALL_PERIOD" parameterTypeRef="ILO_APP_NHK.PPM_STALL_PERIOD" shortDescription="The time period the stall threshold is integrated over to detect stall, in seconds" />
2931
- <xtce:Parameter name="ILO_APP_NHK.PPM_LOWER_BOUND" parameterTypeRef="ILO_APP_NHK.PPM_LOWER_BOUND" shortDescription="Lower bound of coarse potentiometer for out of range check" />
2932
- <xtce:Parameter name="ILO_APP_NHK.PPM_UPPER_BOUND" parameterTypeRef="ILO_APP_NHK.PPM_UPPER_BOUND" shortDescription="Upper bound of coarse potentiometer for out of range check" />
2933
- <xtce:Parameter name="ILO_APP_NHK.PPM_USE_CONFLICT" parameterTypeRef="ILO_APP_NHK.PPM_USE_CONFLICT" shortDescription="If a motor is already active when attempting to command new motion" />
2934
- <xtce:Parameter name="ILO_APP_NHK.PPM_STALLED" parameterTypeRef="ILO_APP_NHK.PPM_STALLED" shortDescription="Motor stall detected" />
2935
- <xtce:Parameter name="ILO_APP_NHK.PPM_OUT_OF_RANGE" parameterTypeRef="ILO_APP_NHK.PPM_OUT_OF_RANGE" shortDescription="Motor went out of range of allowed coarse potentiomenter boundaries" />
2936
- <xtce:Parameter name="ILO_APP_NHK.PPM_POWER_PROBLEM" parameterTypeRef="ILO_APP_NHK.PPM_POWER_PROBLEM" shortDescription="Power problem detected, either no power when expected, or power when not expected." />
2937
- <xtce:Parameter name="ILO_APP_NHK.MARKER" parameterTypeRef="ILO_APP_NHK.MARKER" shortDescription="Echo value from MARKER command" />
2938
- <xtce:Parameter name="ILO_APP_NHK.SPARE" parameterTypeRef="ILO_APP_NHK.SPARE" shortDescription="Spare for alignment" />
2939
- <xtce:Parameter name="ILO_APP_NHK.CHKSUM" parameterTypeRef="ILO_APP_NHK.CHKSUM" shortDescription="CRC-16 Checksum" />
2940
129
  <xtce:Parameter name="ILO_SCI_CNT.SHCOARSE" parameterTypeRef="ILO_SCI_CNT.SHCOARSE" shortDescription="CCSDS Secondary Header MET">
2941
130
  <xtce:LongDescription>CCSDS Secondary Header MET</xtce:LongDescription>
2942
131
  </xtce:Parameter>
@@ -2947,18 +136,9 @@
2947
136
  <xtce:Parameter name="ILO_SCI_DE.SHCOARSE" parameterTypeRef="ILO_SCI_DE.SHCOARSE" shortDescription="CCSDS Secondary Header MET">
2948
137
  <xtce:LongDescription>CCSDS Secondary Header MET</xtce:LongDescription>
2949
138
  </xtce:Parameter>
2950
- <xtce:Parameter name="ILO_SCI_DE.COUNT" parameterTypeRef="ILO_SCI_DE.COUNT" shortDescription="Number of direct events">
2951
- <xtce:LongDescription>Number of direct events</xtce:LongDescription>
2952
- </xtce:Parameter>
2953
- <xtce:Parameter name="ILO_SCI_DE.PASSES" parameterTypeRef="ILO_SCI_DE.PASSES" shortDescription="Passes through the raw data">
2954
- <xtce:LongDescription>Passes through the raw data</xtce:LongDescription>
2955
- </xtce:Parameter>
2956
139
  <xtce:Parameter name="ILO_SCI_DE.DATA" parameterTypeRef="ILO_SCI_DE.DATA" shortDescription="TOF Direct Event Time Tagged data">
2957
140
  <xtce:LongDescription>See table 7 of Section 4.2.1 for sizing and see Table 8 and table 9 in section 4.2.1.2 (PHA Event Compression and Packing by ICE) of IMAP-Lo Data Flow document</xtce:LongDescription>
2958
141
  </xtce:Parameter>
2959
- <xtce:Parameter name="ILO_SCI_DE.CHKSUM" parameterTypeRef="ILO_SCI_DE.CHKSUM" shortDescription="16-bit CRC checksum">
2960
- <xtce:LongDescription>16-bit CRC checksum</xtce:LongDescription>
2961
- </xtce:Parameter>
2962
142
  <xtce:Parameter name="ILO_STAR.SHCOARSE" parameterTypeRef="ILO_STAR.SHCOARSE" shortDescription="CCSDS Secondary Header MET">
2963
143
  <xtce:LongDescription>CCSDS Secondary Header MET</xtce:LongDescription>
2964
144
  </xtce:Parameter>
@@ -3008,478 +188,6 @@
3008
188
  <xtce:ParameterRefEntry parameterRef="PKT_LEN" />
3009
189
  </xtce:EntryList>
3010
190
  </xtce:SequenceContainer>
3011
- <xtce:SequenceContainer name="ILO_BOOT_HK">
3012
- <xtce:BaseContainer containerRef="CCSDSPacket">
3013
- <xtce:RestrictionCriteria>
3014
- <xtce:Comparison parameterRef="PKT_APID" value="673" useCalibratedValue="false" />
3015
- </xtce:RestrictionCriteria>
3016
- </xtce:BaseContainer>
3017
- <xtce:EntryList>
3018
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.SHCOARSE" />
3019
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BOOT_VER" />
3020
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BOOT_CNT" />
3021
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_STAT" />
3022
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_ABUS" />
3023
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_DBUS" />
3024
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_MEM_FF" />
3025
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_MEM_FL" />
3026
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_MEM_MAP" />
3027
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.BIST_MEM_CNT" />
3028
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.IMG_1_STAT" />
3029
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.IMG_2_STAT" />
3030
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.SPARE_0" />
3031
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.INSTR_ID" />
3032
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.SPARE_1" />
3033
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.FPGA_VER" />
3034
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.HV_PLUG_STATE" />
3035
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.DOOR_DIS" />
3036
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.SPARE_2" />
3037
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_0" />
3038
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.MDM25P_14_T" />
3039
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_1" />
3040
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.MDM25P_15_T" />
3041
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_2" />
3042
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.MDM25P_16_T" />
3043
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_3" />
3044
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_12V_T" />
3045
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_4" />
3046
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_5V_T" />
3047
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_5" />
3048
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_3P3V_T" />
3049
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_6" />
3050
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_3P3V" />
3051
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_7" />
3052
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_5V" />
3053
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_8" />
3054
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_N5V" />
3055
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_9" />
3056
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_12V" />
3057
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_10" />
3058
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_N12V" />
3059
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_11" />
3060
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_3P3V_I" />
3061
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_12" />
3062
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_5V_I" />
3063
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_13" />
3064
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_N5V_I" />
3065
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_14" />
3066
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_12V_I" />
3067
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_15" />
3068
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.LVPS_N12V_I" />
3069
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_16" />
3070
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_1P5V" />
3071
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_17" />
3072
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_1P8V" />
3073
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_18" />
3074
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_3P3V" />
3075
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_19" />
3076
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_12V" />
3077
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_20" />
3078
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_N12V" />
3079
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_21" />
3080
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_5V" />
3081
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_22" />
3082
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_5V_ADC" />
3083
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_23" />
3084
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_PROCESSOR_T" />
3085
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_24" />
3086
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_1P8V_LDO_T" />
3087
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_25" />
3088
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_1P5V_LDO_T" />
3089
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.PAD_26" />
3090
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CDH_SDRAM_T" />
3091
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.OP_MODE" />
3092
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CMD_ACC_CNT" />
3093
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CMD_EXE_CNT" />
3094
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CMD_REJ_CNT" />
3095
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CMD_LAST_OPCODE" />
3096
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CMD_RESULT" />
3097
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.ITF_ERR_CNT" />
3098
- <xtce:ParameterRefEntry parameterRef="ILO_BOOT_HK.CHKSUM" />
3099
- </xtce:EntryList>
3100
- </xtce:SequenceContainer>
3101
- <xtce:SequenceContainer name="ILO_APP_SHK">
3102
- <xtce:BaseContainer containerRef="CCSDSPacket">
3103
- <xtce:RestrictionCriteria>
3104
- <xtce:Comparison parameterRef="PKT_APID" value="676" useCalibratedValue="false" />
3105
- </xtce:RestrictionCriteria>
3106
- </xtce:BaseContainer>
3107
- <xtce:EntryList>
3108
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.SHCOARSE" />
3109
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.BOARD_TYPE" />
3110
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.RESET_REASON_SOFT" />
3111
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.RESET_REASON_FPGA_WDOG" />
3112
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.RESET_REASON_CPU_WDOG" />
3113
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.RESET_REASON_PFO" />
3114
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.RESET_REASON_POR" />
3115
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.CPU_WDOG_STATE" />
3116
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.FPGA_WDOG_STATE" />
3117
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.WDOG_CNT" />
3118
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.INSTR_ID" />
3119
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.CDH_FPGA_VERSION" />
3120
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.IFB_FPGA_VERSION" />
3121
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.BULK_HVPS_VERSION" />
3122
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.FSW_VERSION" />
3123
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.SELECTED_IMG" />
3124
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.FSW_VERSION_STR" />
3125
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.ENG_LUT_VERSION_STR" />
3126
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.SCI_LUT_VERSION_STR" />
3127
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.SCRATCH_BUFFER_ADDR" />
3128
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.SPARE" />
3129
- <xtce:ParameterRefEntry parameterRef="ILO_APP_SHK.CHKSUM" />
3130
- </xtce:EntryList>
3131
- </xtce:SequenceContainer>
3132
- <xtce:SequenceContainer name="ILO_APP_NHK">
3133
- <xtce:BaseContainer containerRef="CCSDSPacket">
3134
- <xtce:RestrictionCriteria>
3135
- <xtce:Comparison parameterRef="PKT_APID" value="677" useCalibratedValue="false" />
3136
- </xtce:RestrictionCriteria>
3137
- </xtce:BaseContainer>
3138
- <xtce:EntryList>
3139
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SHCOARSE" />
3140
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_MODE" />
3141
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CMD_EXE_CNT" />
3142
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CMD_REJ_CNT" />
3143
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CMD_LAST_OPCODE" />
3144
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.ITF_ERR_CNT" />
3145
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.WATCHDOG_CNT" />
3146
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_0" />
3147
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MDM25P_14_T" />
3148
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_1" />
3149
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MDM25P_15_T" />
3150
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_2" />
3151
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MDM25P_16_T" />
3152
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_3" />
3153
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LO_T" />
3154
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_4" />
3155
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.HVPS_T" />
3156
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_5" />
3157
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_12V_T" />
3158
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_6" />
3159
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_5V_T" />
3160
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_7" />
3161
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_3P3V_T" />
3162
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_8" />
3163
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_3P3V" />
3164
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_9" />
3165
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_5V" />
3166
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_10" />
3167
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_N5V" />
3168
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_11" />
3169
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_12V" />
3170
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_12" />
3171
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_N12V" />
3172
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_13" />
3173
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_3P3V_I" />
3174
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_14" />
3175
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_5V_I" />
3176
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_15" />
3177
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_N5V_I" />
3178
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_16" />
3179
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_12V_I" />
3180
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_17" />
3181
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LVPS_N12V_I" />
3182
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_18" />
3183
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_1P5V" />
3184
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_19" />
3185
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_1P8V" />
3186
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_20" />
3187
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_3P3V" />
3188
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_21" />
3189
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_12V" />
3190
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_22" />
3191
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_N12V" />
3192
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_23" />
3193
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_5V" />
3194
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_24" />
3195
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_5V_ADC" />
3196
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_25" />
3197
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_PROCESSOR_T" />
3198
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_26" />
3199
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_1P8V_LDO_T" />
3200
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_27" />
3201
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_1P5V_LDO_T" />
3202
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAD_28" />
3203
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_SDRAM_T" />
3204
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_CTRL" />
3205
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE15" />
3206
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_CMD_TIMEOUT_ERR_CNT" />
3207
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_DAC_UPDATE_ACK_ERR_CNT" />
3208
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_READ_ERR_CNT" />
3209
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_TLM_TIMEOUT_ERR_CNT" />
3210
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_WRITE_ACK_ERR_CNT" />
3211
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_CMD_PARITY_ERR_CNT" />
3212
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_CMD_FRAME_ERR_CNT" />
3213
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_TLM_PARITY_ERR_CNT" />
3214
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_TLM_FRAME_ERR_CNT" />
3215
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_TIMEOUT_ERR_CNT" />
3216
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_CNT_ERR_CNT" />
3217
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_CMD_CNT" />
3218
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_MST_EN" />
3219
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_HV_PLUG_STATE" />
3220
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_POR_RST" />
3221
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_PFO_RST" />
3222
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_STAT_SOFT_RST" />
3223
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_BULK_CTRL" />
3224
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_POS_CTRL" />
3225
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_NEG_CTRL" />
3226
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE1" />
3227
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DAC_PAD0" />
3228
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_NEG_DAC" />
3229
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DAC_PAD1" />
3230
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_POS_DAC" />
3231
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DAC_PAD2" />
3232
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_NEG_DAC" />
3233
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DAC_PAD3" />
3234
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_POS_DAC" />
3235
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DAC_PAD4" />
3236
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PMT_DAC" />
3237
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC1_CTRL" />
3238
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC1_MODE" />
3239
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC1_CH_SEL" />
3240
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC2_CTRL" />
3241
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC2_MODE" />
3242
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE2" />
3243
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC2_CH_SEL" />
3244
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE3" />
3245
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC1_WAIT_CNT" />
3246
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC2_WAIT_CNT" />
3247
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD2" />
3248
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_BULK_V" />
3249
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD3" />
3250
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_NEG_V" />
3251
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD4" />
3252
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ESA_POS_V" />
3253
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD5" />
3254
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_NEG_V" />
3255
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD6" />
3256
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_POS_V" />
3257
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD7" />
3258
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PMT_V" />
3259
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD8" />
3260
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PMT_I" />
3261
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD9" />
3262
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_BULK_I" />
3263
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD10" />
3264
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_NEG_I" />
3265
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD11" />
3266
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_DEF_POS_I" />
3267
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD12" />
3268
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC_REF1_V" />
3269
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD13" />
3270
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_ADC_REF2_V" />
3271
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD14" />
3272
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_12P0_V" />
3273
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD15" />
3274
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_N12P0_V" />
3275
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD16" />
3276
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_3P3_V" />
3277
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_PAD17" />
3278
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_1P5_V" />
3279
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE4" />
3280
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MEM_OP_STATE" />
3281
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MEM_DUMP_STATE" />
3282
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SPIN_CNT" />
3283
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MISSED_PPS_CNT" />
3284
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CPU_IDLE" />
3285
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE5" />
3286
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SPIN_BIN_IDX" />
3287
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SPIN_PERIOD" />
3288
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_HEATER_1" />
3289
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_HEATER_2" />
3290
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.INSTR_PWR_12V" />
3291
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.INSTR_PWR_ANALOG_5V" />
3292
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.INSTR_PWR_DIGITAL_5V_3P3V" />
3293
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CMD_ERROR" />
3294
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_INTERFACE" />
3295
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_ADC_TLM_PKT_RCVD" />
3296
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_ADC_TLM_TIMEOUT_ERROR" />
3297
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_ADC_TLM_ID_ERROR" />
3298
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_ADC_TLM_FRAME_ERROR" />
3299
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_TLM_PKT_RCVD" />
3300
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_TLM_TIMEOUT_ERROR" />
3301
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_TLM_ID_ERROR" />
3302
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_TLM_FRAME_ERROR" />
3303
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_TLM_PKT_RCVD" />
3304
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_ADC_TLM_PKT_RCVD" />
3305
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_REG_TLM_PKT_RCVD" />
3306
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CNT_TLM_PKT_RCVD" />
3307
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_DE_TLM_PKT_RCVD" />
3308
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_TLM_TIMEOUT_ERROR" />
3309
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_TLM_ID_ERROR" />
3310
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_TLM_FRAME_ERROR" />
3311
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE7" />
3312
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.DIRECT_EVENT_TIME_TAG_CNT" />
3313
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.DIRECT_EVENT_FIFO_CNT" />
3314
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_INTERFACE" />
3315
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPC_TLM_TIMEOUT_ERROR" />
3316
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPC_TLM_PARITY_ERROR" />
3317
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPC_TLM_PKT_RCVD" />
3318
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_HV_PLUG_STATE" />
3319
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE10" />
3320
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CMD_COUNT" />
3321
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CTRL_INT_MUX" />
3322
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CTRL_ADC_CLK_DS" />
3323
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CTRL_OSCOPE" />
3324
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CTRL_STAR_SYNC" />
3325
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_CTRL_DATA" />
3326
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE11" />
3327
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_DATA_INTERVAL" />
3328
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_HVPS_CTRL_SYNC_CLK" />
3329
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_HVPS_CTRL_PAC" />
3330
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_HVPS_CTRL_MCP" />
3331
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_HVPS_CTRL_LV" />
3332
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE12" />
3333
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAC_VSET" />
3334
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAC_OCP" />
3335
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MCP_VSET" />
3336
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MCP_OCP" />
3337
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STAR_OFFSET_ADJUST" />
3338
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_OSCOPE_CH1" />
3339
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_OSCOPE_CH0" />
3340
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD0" />
3341
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_HOT_SPOT_T" />
3342
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD1" />
3343
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_COLD_SPOT_T" />
3344
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD2" />
3345
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_5P0_V" />
3346
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD3" />
3347
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_3P3_V" />
3348
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD4" />
3349
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_12P0_V" />
3350
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD5" />
3351
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_N12P0_V" />
3352
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD6" />
3353
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LV_I" />
3354
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD7" />
3355
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LV_V" />
3356
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD8" />
3357
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.LV_T" />
3358
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD9" />
3359
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MCP_I" />
3360
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD10" />
3361
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MCP_V" />
3362
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD11" />
3363
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MCP_T" />
3364
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD12" />
3365
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAC_I" />
3366
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD13" />
3367
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAC_V" />
3368
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.IFB_PAD14" />
3369
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PAC_T" />
3370
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_CMD_ERROR" />
3371
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD0" />
3372
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_CFD_V" />
3373
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD1" />
3374
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PRE_T" />
3375
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD2" />
3376
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_REG_T" />
3377
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD3" />
3378
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_MCP_I" />
3379
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD4" />
3380
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_MCP_V" />
3381
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD5" />
3382
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_I" />
3383
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD6" />
3384
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_P5_V" />
3385
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_PAD7" />
3386
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_P6_V" />
3387
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.AN_A_THR" />
3388
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.AN_B0_THR" />
3389
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.AN_B3_THR" />
3390
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.AN_C_THR" />
3391
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_TLM" />
3392
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_DE_TLM" />
3393
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_TOF3_REQ" />
3394
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_TOF2_REQ" />
3395
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_TOF1_REQ" />
3396
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF_BD_CTRL_TOF0_REQ" />
3397
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_C_STATE" />
3398
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_C_SRC" />
3399
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_B3_STATE" />
3400
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_B3_SRC" />
3401
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_B0_STATE" />
3402
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_B0_SRC" />
3403
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_A_STATE" />
3404
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CTRL_AN_A_SRC" />
3405
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE13" />
3406
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CNFG_FREQ" />
3407
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.STIM_CNFG_DELAY" />
3408
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF3_THR" />
3409
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF2_THR" />
3410
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF1_THR" />
3411
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF0_THR" />
3412
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF3_VETO" />
3413
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF2_VETO" />
3414
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF1_VETO" />
3415
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.TOF0_VETO" />
3416
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.BHV_SPARE14" />
3417
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD0" />
3418
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_COARSE_POT_PRI" />
3419
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD1" />
3420
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_FINE_POT_PRI" />
3421
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD2" />
3422
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_COARSE_POT_RED" />
3423
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD3" />
3424
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_FINE_POT_RED" />
3425
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD4" />
3426
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_ACTUATOR_T" />
3427
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD5" />
3428
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_BOARD_T" />
3429
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD6" />
3430
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_MOTOR_CURRENT_PRI" />
3431
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PAD7" />
3432
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_MOTOR_CURRENT_RED" />
3433
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_PRI" />
3434
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_PRI" />
3435
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_RED" />
3436
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CUMULATIVE_CNT_SGN_RED" />
3437
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_PRI" />
3438
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CURRENT_STEP_CNT_RED" />
3439
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CURRENT_SETPT_PRI" />
3440
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_CURRENT_SETPT_RED" />
3441
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PRI_ACTIVE" />
3442
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PRI_POWERED" />
3443
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PRI_USTEP" />
3444
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_PRI_ACCEL" />
3445
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_RED_ACTIVE" />
3446
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_RED_POWERED" />
3447
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_RED_USTEP" />
3448
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PCC_RED_ACCEL" />
3449
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_ID" />
3450
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_STATE" />
3451
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_NUM_CMDS" />
3452
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_NUM_CMDS_EXE" />
3453
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_INDEX" />
3454
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_NEXT_OPCODE" />
3455
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.RTS_TIME_REMAINING" />
3456
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_HTR_SELECT" />
3457
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_HTR_MODE" />
3458
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_HTR_CYCLE_TIME" />
3459
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_HTR_LO_SETPOINT" />
3460
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.OP_HTR_HI_SETPOINT" />
3461
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CDH_HV_PLUG_STATE" />
3462
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SPARE16" />
3463
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SCI_CYCLE" />
3464
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_STATE" />
3465
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_MOTOR" />
3466
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_DIRECTION" />
3467
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_STEP_PERIOD" />
3468
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_MICROSTEP" />
3469
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_CURRENT_THRESHOLD" />
3470
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_STALL_THRESHOLD" />
3471
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_STALL_PERIOD" />
3472
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_LOWER_BOUND" />
3473
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_UPPER_BOUND" />
3474
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_USE_CONFLICT" />
3475
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_STALLED" />
3476
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_OUT_OF_RANGE" />
3477
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.PPM_POWER_PROBLEM" />
3478
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.MARKER" />
3479
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.SPARE" />
3480
- <xtce:ParameterRefEntry parameterRef="ILO_APP_NHK.CHKSUM" />
3481
- </xtce:EntryList>
3482
- </xtce:SequenceContainer>
3483
191
  <xtce:SequenceContainer name="ILO_SCI_CNT">
3484
192
  <xtce:BaseContainer containerRef="CCSDSPacket">
3485
193
  <xtce:RestrictionCriteria>
@@ -3500,10 +208,7 @@
3500
208
  </xtce:BaseContainer>
3501
209
  <xtce:EntryList>
3502
210
  <xtce:ParameterRefEntry parameterRef="ILO_SCI_DE.SHCOARSE" />
3503
- <xtce:ParameterRefEntry parameterRef="ILO_SCI_DE.COUNT" />
3504
- <xtce:ParameterRefEntry parameterRef="ILO_SCI_DE.PASSES" />
3505
211
  <xtce:ParameterRefEntry parameterRef="ILO_SCI_DE.DATA" />
3506
- <xtce:ParameterRefEntry parameterRef="ILO_SCI_DE.CHKSUM" />
3507
212
  </xtce:EntryList>
3508
213
  </xtce:SequenceContainer>
3509
214
  <xtce:SequenceContainer name="ILO_STAR">