imap-processing 0.7.0__py3-none-any.whl → 0.9.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.
- imap_processing/__init__.py +1 -1
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/excel_to_xtce.py +36 -2
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +145 -30
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +36 -36
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +136 -9
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +14 -0
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +63 -1
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +9 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +14 -7
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +577 -235
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +326 -0
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +33 -23
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +24 -28
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +1 -0
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +137 -79
- imap_processing/cdf/config/imap_variable_schema.yaml +13 -0
- imap_processing/cdf/imap_cdf_manager.py +31 -27
- imap_processing/cdf/utils.py +3 -5
- imap_processing/cli.py +25 -14
- imap_processing/codice/codice_l1a.py +153 -63
- imap_processing/codice/constants.py +10 -10
- imap_processing/codice/decompress.py +10 -11
- imap_processing/codice/utils.py +1 -0
- imap_processing/glows/l1a/glows_l1a.py +1 -2
- imap_processing/glows/l1b/glows_l1b.py +3 -3
- imap_processing/glows/l1b/glows_l1b_data.py +59 -37
- imap_processing/glows/l2/glows_l2_data.py +123 -0
- imap_processing/hi/l1a/hi_l1a.py +4 -4
- imap_processing/hi/l1a/histogram.py +107 -109
- imap_processing/hi/l1a/science_direct_event.py +92 -225
- imap_processing/hi/l1b/hi_l1b.py +85 -11
- imap_processing/hi/l1c/hi_l1c.py +23 -1
- imap_processing/hi/packet_definitions/TLM_HI_COMBINED_SCI.xml +3994 -0
- imap_processing/hi/utils.py +1 -1
- imap_processing/hit/hit_utils.py +221 -0
- imap_processing/hit/l0/constants.py +118 -0
- imap_processing/hit/l0/decom_hit.py +100 -156
- imap_processing/hit/l1a/hit_l1a.py +170 -184
- imap_processing/hit/l1b/hit_l1b.py +33 -153
- imap_processing/ialirt/l0/process_codicelo.py +153 -0
- imap_processing/ialirt/l0/process_hit.py +5 -5
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +281 -0
- imap_processing/ialirt/process_ephemeris.py +212 -0
- imap_processing/idex/idex_l1a.py +65 -84
- imap_processing/idex/idex_l1b.py +192 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -0
- imap_processing/idex/packet_definitions/idex_packet_definition.xml +97 -595
- imap_processing/lo/l0/decompression_tables/decompression_tables.py +17 -1
- imap_processing/lo/l0/lo_science.py +45 -13
- imap_processing/lo/l1a/lo_l1a.py +76 -8
- imap_processing/lo/packet_definitions/lo_xtce.xml +8344 -1849
- imap_processing/mag/l0/decom_mag.py +4 -3
- imap_processing/mag/l1a/mag_l1a.py +12 -13
- imap_processing/mag/l1a/mag_l1a_data.py +1 -2
- imap_processing/mag/l1b/mag_l1b.py +90 -7
- imap_processing/spice/geometry.py +156 -16
- imap_processing/spice/time.py +144 -2
- imap_processing/swapi/l1/swapi_l1.py +4 -4
- imap_processing/swapi/l2/swapi_l2.py +1 -1
- imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +1535 -446
- imap_processing/swe/l1b/swe_l1b_science.py +8 -8
- imap_processing/swe/l2/swe_l2.py +134 -17
- imap_processing/tests/ccsds/test_data/expected_output.xml +2 -1
- imap_processing/tests/ccsds/test_excel_to_xtce.py +4 -4
- imap_processing/tests/cdf/test_imap_cdf_manager.py +0 -10
- imap_processing/tests/codice/conftest.py +1 -17
- imap_processing/tests/codice/data/imap_codice_l0_raw_20241110_v001.pkts +0 -0
- imap_processing/tests/codice/test_codice_l0.py +8 -2
- imap_processing/tests/codice/test_codice_l1a.py +127 -107
- imap_processing/tests/codice/test_codice_l1b.py +1 -0
- imap_processing/tests/codice/test_decompress.py +7 -7
- imap_processing/tests/conftest.py +100 -58
- imap_processing/tests/glows/conftest.py +6 -0
- imap_processing/tests/glows/test_glows_l1b.py +9 -9
- imap_processing/tests/glows/test_glows_l1b_data.py +9 -9
- imap_processing/tests/hi/test_data/l0/H90_NHK_20241104.bin +0 -0
- imap_processing/tests/hi/test_data/l0/H90_sci_cnt_20241104.bin +0 -0
- imap_processing/tests/hi/test_data/l0/H90_sci_de_20241104.bin +0 -0
- imap_processing/tests/hi/test_data/l1a/imap_hi_l1a_45sensor-de_20250415_v000.cdf +0 -0
- imap_processing/tests/hi/test_hi_l1b.py +73 -3
- imap_processing/tests/hi/test_hi_l1c.py +10 -2
- imap_processing/tests/hi/test_l1a.py +31 -58
- imap_processing/tests/hi/test_science_direct_event.py +58 -0
- imap_processing/tests/hi/test_utils.py +4 -3
- imap_processing/tests/hit/test_data/sci_sample1.ccsds +0 -0
- imap_processing/tests/hit/{test_hit_decom.py → test_decom_hit.py} +95 -36
- imap_processing/tests/hit/test_hit_l1a.py +299 -179
- imap_processing/tests/hit/test_hit_l1b.py +231 -24
- imap_processing/tests/hit/test_hit_utils.py +218 -0
- imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +89 -0
- imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +29 -0
- imap_processing/tests/ialirt/test_data/l0/apid01152.tlm +0 -0
- imap_processing/tests/ialirt/test_data/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +106 -0
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +109 -0
- imap_processing/tests/ialirt/unit/test_process_hit.py +9 -6
- imap_processing/tests/idex/conftest.py +2 -2
- imap_processing/tests/idex/imap_idex_l0_raw_20231214_v001.pkts +0 -0
- imap_processing/tests/idex/impact_14_tof_high_data.txt +4444 -4444
- imap_processing/tests/idex/test_idex_l0.py +4 -4
- imap_processing/tests/idex/test_idex_l1a.py +8 -2
- imap_processing/tests/idex/test_idex_l1b.py +126 -0
- imap_processing/tests/lo/test_lo_l1a.py +7 -16
- imap_processing/tests/lo/test_lo_science.py +69 -5
- imap_processing/tests/lo/test_pkts/imap_lo_l0_raw_20240803_v002.pkts +0 -0
- imap_processing/tests/lo/validation_data/Instrument_FM1_T104_R129_20240803_ILO_SCI_DE_dec_DN_with_fills.csv +1999 -0
- imap_processing/tests/mag/imap_mag_l1a_norm-magi_20251017_v001.cdf +0 -0
- imap_processing/tests/mag/test_mag_l1b.py +97 -7
- imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +3 -1
- imap_processing/tests/spice/test_geometry.py +115 -9
- imap_processing/tests/spice/test_time.py +135 -6
- imap_processing/tests/swapi/test_swapi_decom.py +75 -69
- imap_processing/tests/swapi/test_swapi_l1.py +4 -4
- imap_processing/tests/swe/conftest.py +33 -0
- imap_processing/tests/swe/l1_validation/swe_l0_unpacked-data_20240510_v001_VALIDATION_L1B_v3.dat +4332 -0
- imap_processing/tests/swe/test_swe_l1b.py +29 -8
- imap_processing/tests/swe/test_swe_l2.py +64 -8
- imap_processing/tests/test_utils.py +2 -2
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -3314
- imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E12.cdf +0 -0
- imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E24.cdf +0 -0
- imap_processing/tests/ultra/unit/test_de.py +113 -0
- imap_processing/tests/ultra/unit/test_spatial_utils.py +125 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +27 -3
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +31 -10
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +55 -35
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +10 -68
- imap_processing/ultra/constants.py +12 -3
- imap_processing/ultra/l1b/de.py +168 -30
- imap_processing/ultra/l1b/ultra_l1b_annotated.py +24 -10
- imap_processing/ultra/l1b/ultra_l1b_extended.py +46 -80
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +60 -144
- imap_processing/ultra/utils/spatial_utils.py +221 -0
- {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/METADATA +15 -14
- {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/RECORD +142 -139
- imap_processing/cdf/cdf_attribute_manager.py +0 -322
- imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +0 -246
- imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +0 -466
- imap_processing/hi/l0/decom_hi.py +0 -24
- imap_processing/hi/packet_definitions/hi_packet_definition.xml +0 -482
- imap_processing/hit/l0/data_classes/housekeeping.py +0 -240
- imap_processing/hit/l0/data_classes/science_packet.py +0 -259
- imap_processing/hit/l0/utils/hit_base.py +0 -57
- imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +0 -246
- imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +0 -466
- imap_processing/tests/cdf/test_cdf_attribute_manager.py +0 -353
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/hi/test_decom.py +0 -55
- imap_processing/tests/hi/test_l1a_sci_de.py +0 -72
- imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
- imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
- /imap_processing/{hi/l0/__init__.py → tests/glows/test_glows_l2_data.py} +0 -0
- /imap_processing/tests/hit/test_data/{imap_hit_l0_hk_20100105_v001.pkts → imap_hit_l0_raw_20100105_v001.pkts} +0 -0
- {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,525 +1,1627 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="
|
|
3
|
-
<xtce:Header date="2023
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="SWP">
|
|
3
|
+
<xtce:Header date="06/10/2023" version="1" author="IMAP SDC" />
|
|
4
4
|
<xtce:TelemetryMetaData>
|
|
5
5
|
<xtce:ParameterTypeSet>
|
|
6
|
-
<xtce:IntegerParameterType name="
|
|
6
|
+
<xtce:IntegerParameterType name="VERSION" signed="false">
|
|
7
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
8
|
+
</xtce:IntegerParameterType>
|
|
9
|
+
<xtce:IntegerParameterType name="TYPE" signed="false">
|
|
10
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
11
|
+
</xtce:IntegerParameterType>
|
|
12
|
+
<xtce:IntegerParameterType name="SEC_HDR_FLG" signed="false">
|
|
7
13
|
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
8
14
|
</xtce:IntegerParameterType>
|
|
9
|
-
<xtce:IntegerParameterType name="
|
|
15
|
+
<xtce:IntegerParameterType name="PKT_APID" signed="false">
|
|
16
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
17
|
+
</xtce:IntegerParameterType>
|
|
18
|
+
<xtce:IntegerParameterType name="SEQ_FLGS" signed="false">
|
|
19
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
20
|
+
</xtce:IntegerParameterType>
|
|
21
|
+
<xtce:IntegerParameterType name="SRC_SEQ_CTR" signed="false">
|
|
22
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
23
|
+
</xtce:IntegerParameterType>
|
|
24
|
+
<xtce:IntegerParameterType name="PKT_LEN" signed="false">
|
|
25
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
26
|
+
</xtce:IntegerParameterType>
|
|
27
|
+
<xtce:IntegerParameterType name="SWP_HK.SHCOARSE" signed="false">
|
|
28
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
<xtce:IntegerParameterType name="SWP_HK.CMDEXE" signed="false">
|
|
31
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
32
|
+
</xtce:IntegerParameterType>
|
|
33
|
+
<xtce:IntegerParameterType name="SWP_HK.CMDRJCT" signed="false">
|
|
34
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
35
|
+
</xtce:IntegerParameterType>
|
|
36
|
+
<xtce:EnumeratedParameterType name="SWP_HK.LUT_CHOICE" signed="false">
|
|
37
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
38
|
+
<xtce:EnumerationList>
|
|
39
|
+
<xtce:Enumeration value="0" label="TBD_0" />
|
|
40
|
+
<xtce:Enumeration value="1" label="TBD_1" />
|
|
41
|
+
</xtce:EnumerationList>
|
|
42
|
+
</xtce:EnumeratedParameterType>
|
|
43
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_SAFE" signed="false">
|
|
44
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
45
|
+
<xtce:EnumerationList>
|
|
46
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
47
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
48
|
+
</xtce:EnumerationList>
|
|
49
|
+
</xtce:EnumeratedParameterType>
|
|
50
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_SAFE" signed="false">
|
|
51
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
52
|
+
<xtce:EnumerationList>
|
|
53
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
54
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
55
|
+
</xtce:EnumerationList>
|
|
56
|
+
</xtce:EnumeratedParameterType>
|
|
57
|
+
<xtce:EnumeratedParameterType name="SWP_HK.WDT_ST" signed="false">
|
|
58
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
59
|
+
<xtce:EnumerationList>
|
|
60
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
61
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
62
|
+
</xtce:EnumerationList>
|
|
63
|
+
</xtce:EnumeratedParameterType>
|
|
64
|
+
<xtce:EnumeratedParameterType name="SWP_HK.RCV_SAFE_ST" signed="false">
|
|
65
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
66
|
+
<xtce:EnumerationList>
|
|
67
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
68
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
69
|
+
</xtce:EnumerationList>
|
|
70
|
+
</xtce:EnumeratedParameterType>
|
|
71
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SAFE_ST" signed="false">
|
|
72
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
73
|
+
<xtce:EnumerationList>
|
|
74
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
75
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
76
|
+
</xtce:EnumerationList>
|
|
77
|
+
</xtce:EnumeratedParameterType>
|
|
78
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_RATE_ST" signed="false">
|
|
79
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
80
|
+
<xtce:EnumerationList>
|
|
81
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
82
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
83
|
+
</xtce:EnumerationList>
|
|
84
|
+
</xtce:EnumeratedParameterType>
|
|
85
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_RATE_ST" signed="false">
|
|
86
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
87
|
+
<xtce:EnumerationList>
|
|
88
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
89
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
90
|
+
</xtce:EnumerationList>
|
|
91
|
+
</xtce:EnumeratedParameterType>
|
|
92
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_I_ST" signed="false">
|
|
93
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
94
|
+
<xtce:EnumerationList>
|
|
95
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
96
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
97
|
+
</xtce:EnumerationList>
|
|
98
|
+
</xtce:EnumeratedParameterType>
|
|
99
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_I_ST" signed="false">
|
|
100
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
101
|
+
<xtce:EnumerationList>
|
|
102
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
103
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
104
|
+
</xtce:EnumerationList>
|
|
105
|
+
</xtce:EnumeratedParameterType>
|
|
106
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_V_ST" signed="false">
|
|
107
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
108
|
+
<xtce:EnumerationList>
|
|
109
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
110
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
111
|
+
</xtce:EnumerationList>
|
|
112
|
+
</xtce:EnumeratedParameterType>
|
|
113
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_V_ST" signed="false">
|
|
114
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
115
|
+
<xtce:EnumerationList>
|
|
116
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
117
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
118
|
+
</xtce:EnumerationList>
|
|
119
|
+
</xtce:EnumeratedParameterType>
|
|
120
|
+
<xtce:EnumeratedParameterType name="SWP_HK.LVPS_V_ST" signed="false">
|
|
121
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
122
|
+
<xtce:EnumerationList>
|
|
123
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
124
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
125
|
+
</xtce:EnumerationList>
|
|
126
|
+
</xtce:EnumeratedParameterType>
|
|
127
|
+
<xtce:EnumeratedParameterType name="SWP_HK.LVPS_I_ST" signed="false">
|
|
128
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
129
|
+
<xtce:EnumerationList>
|
|
130
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
131
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
132
|
+
</xtce:EnumerationList>
|
|
133
|
+
</xtce:EnumeratedParameterType>
|
|
134
|
+
<xtce:EnumeratedParameterType name="SWP_HK.OVR_T_ST" signed="false">
|
|
135
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
136
|
+
<xtce:EnumerationList>
|
|
137
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
138
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
139
|
+
</xtce:EnumerationList>
|
|
140
|
+
</xtce:EnumeratedParameterType>
|
|
141
|
+
<xtce:EnumeratedParameterType name="SWP_HK.UND_T_ST" signed="false">
|
|
142
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
143
|
+
<xtce:EnumerationList>
|
|
144
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
145
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
146
|
+
</xtce:EnumerationList>
|
|
147
|
+
</xtce:EnumeratedParameterType>
|
|
148
|
+
<xtce:EnumeratedParameterType name="SWP_HK.MODE" signed="false">
|
|
149
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
150
|
+
<xtce:EnumerationList>
|
|
151
|
+
<xtce:Enumeration value="0" label="LVENG" />
|
|
152
|
+
<xtce:Enumeration value="1" label="LVSCI" />
|
|
153
|
+
<xtce:Enumeration value="2" label="HVENG" />
|
|
154
|
+
<xtce:Enumeration value="3" label="HVSCI" />
|
|
155
|
+
</xtce:EnumerationList>
|
|
156
|
+
</xtce:EnumeratedParameterType>
|
|
157
|
+
<xtce:EnumeratedParameterType name="SWP_HK.MEMDP_ST" signed="false">
|
|
10
158
|
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
159
|
+
<xtce:EnumerationList>
|
|
160
|
+
<xtce:Enumeration value="0" label="DS_IDLE" />
|
|
161
|
+
<xtce:Enumeration value="1" label="DS_BUSY" />
|
|
162
|
+
<xtce:Enumeration value="2" label="INVALID" />
|
|
163
|
+
<xtce:Enumeration value="3" label="INVALID" />
|
|
164
|
+
</xtce:EnumerationList>
|
|
165
|
+
</xtce:EnumeratedParameterType>
|
|
166
|
+
<xtce:IntegerParameterType name="SWP_HK.SENSOR_T" signed="true">
|
|
167
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
168
|
+
<xtce:DefaultCalibrator>
|
|
169
|
+
<xtce:PolynomialCalibrator>
|
|
170
|
+
<xtce:Term coefficient="130.72722" exponent="0" />
|
|
171
|
+
<xtce:Term coefficient="-0.2366468" exponent="1" />
|
|
172
|
+
</xtce:PolynomialCalibrator>
|
|
173
|
+
</xtce:DefaultCalibrator>
|
|
174
|
+
</xtce:IntegerDataEncoding>
|
|
175
|
+
</xtce:IntegerParameterType>
|
|
176
|
+
<xtce:IntegerParameterType name="SWP_HK.HVSUPP_T" signed="true">
|
|
177
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
178
|
+
<xtce:DefaultCalibrator>
|
|
179
|
+
<xtce:PolynomialCalibrator>
|
|
180
|
+
<xtce:Term coefficient="130.72722" exponent="0" />
|
|
181
|
+
<xtce:Term coefficient="-0.2366468" exponent="1" />
|
|
182
|
+
</xtce:PolynomialCalibrator>
|
|
183
|
+
</xtce:DefaultCalibrator>
|
|
184
|
+
</xtce:IntegerDataEncoding>
|
|
185
|
+
</xtce:IntegerParameterType>
|
|
186
|
+
<xtce:IntegerParameterType name="SWP_HK.CNTRLR_T" signed="true">
|
|
187
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
188
|
+
<xtce:DefaultCalibrator>
|
|
189
|
+
<xtce:PolynomialCalibrator>
|
|
190
|
+
<xtce:Term coefficient="130.72722" exponent="0" />
|
|
191
|
+
<xtce:Term coefficient="-0.2366468" exponent="1" />
|
|
192
|
+
</xtce:PolynomialCalibrator>
|
|
193
|
+
</xtce:DefaultCalibrator>
|
|
194
|
+
</xtce:IntegerDataEncoding>
|
|
195
|
+
</xtce:IntegerParameterType>
|
|
196
|
+
<xtce:IntegerParameterType name="SWP_HK.PCEM_V" signed="true">
|
|
197
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
198
|
+
<xtce:DefaultCalibrator>
|
|
199
|
+
<xtce:PolynomialCalibrator>
|
|
200
|
+
<xtce:Term coefficient="-2.636717948717949" exponent="1" />
|
|
201
|
+
</xtce:PolynomialCalibrator>
|
|
202
|
+
</xtce:DefaultCalibrator>
|
|
203
|
+
</xtce:IntegerDataEncoding>
|
|
204
|
+
</xtce:IntegerParameterType>
|
|
205
|
+
<xtce:IntegerParameterType name="SWP_HK.SCEM_V" signed="true">
|
|
206
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
207
|
+
<xtce:DefaultCalibrator>
|
|
208
|
+
<xtce:PolynomialCalibrator>
|
|
209
|
+
<xtce:Term coefficient="2.636717948717949" exponent="1" />
|
|
210
|
+
</xtce:PolynomialCalibrator>
|
|
211
|
+
</xtce:DefaultCalibrator>
|
|
212
|
+
</xtce:IntegerDataEncoding>
|
|
213
|
+
</xtce:IntegerParameterType>
|
|
214
|
+
<xtce:IntegerParameterType name="SWP_HK.PCEM_I" signed="true">
|
|
215
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
216
|
+
<xtce:DefaultCalibrator>
|
|
217
|
+
<xtce:PolynomialCalibrator>
|
|
218
|
+
<xtce:Term coefficient="1.46495726495726e-08" exponent="1" />
|
|
219
|
+
</xtce:PolynomialCalibrator>
|
|
220
|
+
</xtce:DefaultCalibrator>
|
|
221
|
+
</xtce:IntegerDataEncoding>
|
|
222
|
+
</xtce:IntegerParameterType>
|
|
223
|
+
<xtce:IntegerParameterType name="SWP_HK.SCEM_I" signed="true">
|
|
224
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
225
|
+
<xtce:DefaultCalibrator>
|
|
226
|
+
<xtce:PolynomialCalibrator>
|
|
227
|
+
<xtce:Term coefficient="1.46495726495726e-08" exponent="1" />
|
|
228
|
+
</xtce:PolynomialCalibrator>
|
|
229
|
+
</xtce:DefaultCalibrator>
|
|
230
|
+
</xtce:IntegerDataEncoding>
|
|
231
|
+
</xtce:IntegerParameterType>
|
|
232
|
+
<xtce:IntegerParameterType name="SWP_HK.P5_V" signed="true">
|
|
233
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
234
|
+
<xtce:DefaultCalibrator>
|
|
235
|
+
<xtce:PolynomialCalibrator>
|
|
236
|
+
<xtce:Term coefficient="0.00293040293040293" exponent="1" />
|
|
237
|
+
</xtce:PolynomialCalibrator>
|
|
238
|
+
</xtce:DefaultCalibrator>
|
|
239
|
+
</xtce:IntegerDataEncoding>
|
|
240
|
+
</xtce:IntegerParameterType>
|
|
241
|
+
<xtce:IntegerParameterType name="SWP_HK.N5_V" signed="true">
|
|
242
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
243
|
+
<xtce:DefaultCalibrator>
|
|
244
|
+
<xtce:PolynomialCalibrator>
|
|
245
|
+
<xtce:Term coefficient="0.00293040293040293" exponent="1" />
|
|
246
|
+
</xtce:PolynomialCalibrator>
|
|
247
|
+
</xtce:DefaultCalibrator>
|
|
248
|
+
</xtce:IntegerDataEncoding>
|
|
249
|
+
</xtce:IntegerParameterType>
|
|
250
|
+
<xtce:IntegerParameterType name="SWP_HK.P5_I" signed="true">
|
|
251
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
252
|
+
<xtce:DefaultCalibrator>
|
|
253
|
+
<xtce:PolynomialCalibrator>
|
|
254
|
+
<xtce:Term coefficient="99.264" exponent="0" />
|
|
255
|
+
<xtce:Term coefficient="-0.2965" exponent="1" />
|
|
256
|
+
</xtce:PolynomialCalibrator>
|
|
257
|
+
</xtce:DefaultCalibrator>
|
|
258
|
+
</xtce:IntegerDataEncoding>
|
|
11
259
|
</xtce:IntegerParameterType>
|
|
12
|
-
<xtce:IntegerParameterType name="
|
|
260
|
+
<xtce:IntegerParameterType name="SWP_HK.N5_I" signed="true">
|
|
261
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
262
|
+
<xtce:DefaultCalibrator>
|
|
263
|
+
<xtce:PolynomialCalibrator>
|
|
264
|
+
<xtce:Term coefficient="95.039" exponent="0" />
|
|
265
|
+
<xtce:Term coefficient="0.2687" exponent="1" />
|
|
266
|
+
</xtce:PolynomialCalibrator>
|
|
267
|
+
</xtce:DefaultCalibrator>
|
|
268
|
+
</xtce:IntegerDataEncoding>
|
|
269
|
+
</xtce:IntegerParameterType>
|
|
270
|
+
<xtce:IntegerParameterType name="SWP_HK.SWP_REV" signed="false">
|
|
271
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
272
|
+
</xtce:IntegerParameterType>
|
|
273
|
+
<xtce:EnumeratedParameterType name="SWP_HK.LAST_OPCODE" signed="false">
|
|
274
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
275
|
+
<xtce:EnumerationList>
|
|
276
|
+
<xtce:Enumeration value="0" label="SWP_SAFE" />
|
|
277
|
+
<xtce:Enumeration value="2" label="SWP_PCEM_CNT_LIM_SET" />
|
|
278
|
+
<xtce:Enumeration value="4" label="SWP_SCEM_CNT_LIM_SET" />
|
|
279
|
+
<xtce:Enumeration value="6" label="SWP_PCEM_I_LIM_SET" />
|
|
280
|
+
<xtce:Enumeration value="8" label="SWP_SCEM_I_LIM_SET" />
|
|
281
|
+
<xtce:Enumeration value="10" label="SWP_CEM_INT_LVL_SET" />
|
|
282
|
+
<xtce:Enumeration value="12" label="SWP_CEM_DIP_SET" />
|
|
283
|
+
<xtce:Enumeration value="14" label="SWP_LIMIT_SET" />
|
|
284
|
+
<xtce:Enumeration value="16" label="SWP_HV_ARM" />
|
|
285
|
+
<xtce:Enumeration value="18" label="SWP_PCEM_ARM" />
|
|
286
|
+
<xtce:Enumeration value="20" label="SWP_SCEM_ARM" />
|
|
287
|
+
<xtce:Enumeration value="22" label="SWP_ESA_ARM" />
|
|
288
|
+
<xtce:Enumeration value="34" label="SWP_ESA_LVL_SET_HI" />
|
|
289
|
+
<xtce:Enumeration value="36" label="SWP_ESA_LVL_SET_LO" />
|
|
290
|
+
<xtce:Enumeration value="38" label="SWP_PCEM_RAMP_SET" />
|
|
291
|
+
<xtce:Enumeration value="40" label="SWP_SCEM_RAMP_SET" />
|
|
292
|
+
<xtce:Enumeration value="44" label="SWP_PCEM_RAMP_REL" />
|
|
293
|
+
<xtce:Enumeration value="46" label="SWP_SCEM_RAMP_REL" />
|
|
294
|
+
<xtce:Enumeration value="42" label="SWP_PHD_LLD1_SET" />
|
|
295
|
+
<xtce:Enumeration value="48" label="SWP_PHD_LLD2_SET" />
|
|
296
|
+
<xtce:Enumeration value="49" label="SWP_MODE_SET" />
|
|
297
|
+
<xtce:Enumeration value="50" label="SWP_REBOOT" />
|
|
298
|
+
<xtce:Enumeration value="52" label="SWP_NOOP" />
|
|
299
|
+
<xtce:Enumeration value="56" label="SWP_HK_LATCHED_CLR" />
|
|
300
|
+
<xtce:Enumeration value="58" label="SWP_STIM_EN" />
|
|
301
|
+
<xtce:Enumeration value="65" label="SWP_SCI_SWP_PLAN_SET" />
|
|
302
|
+
<xtce:Enumeration value="83" label="SWP_TLM_IAL_RATE_SET" />
|
|
303
|
+
<xtce:Enumeration value="85" label="SWP_TLM_SCI_RATE_SET" />
|
|
304
|
+
<xtce:Enumeration value="89" label="SWP_TLM_LGSCI_RATE_SET" />
|
|
305
|
+
<xtce:Enumeration value="87" label="SWP_TLM_HK_RATE_SET" />
|
|
306
|
+
<xtce:Enumeration value="88" label="SWP_CMD_ECHO_EN" />
|
|
307
|
+
<xtce:Enumeration value="91" label="SWP_MEM_DUMP" />
|
|
308
|
+
<xtce:Enumeration value="104" label="SWP_MEM_LOAD" />
|
|
309
|
+
<xtce:Enumeration value="96" label="SWP_MEM_PATCH" />
|
|
310
|
+
<xtce:Enumeration value="100" label="SWP_MEM_COPY" />
|
|
311
|
+
<xtce:Enumeration value="102" label="SWP_MEMLOAD_CHKSUM" />
|
|
312
|
+
<xtce:Enumeration value="90" label="SWP_MACRO_EXEC" />
|
|
313
|
+
<xtce:Enumeration value="112" label="SWP_DIAGNOSTIC" />
|
|
314
|
+
<xtce:Enumeration value="254" label="SWP_Time_and_Status" />
|
|
315
|
+
</xtce:EnumerationList>
|
|
316
|
+
</xtce:EnumeratedParameterType>
|
|
317
|
+
<xtce:IntegerParameterType name="SWP_HK.PHD_LLD1_LVL" signed="false">
|
|
318
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
319
|
+
<xtce:DefaultCalibrator>
|
|
320
|
+
<xtce:PolynomialCalibrator>
|
|
321
|
+
<xtce:Term coefficient="1.0" exponent="0" />
|
|
322
|
+
</xtce:PolynomialCalibrator>
|
|
323
|
+
</xtce:DefaultCalibrator>
|
|
324
|
+
</xtce:IntegerDataEncoding>
|
|
325
|
+
</xtce:IntegerParameterType>
|
|
326
|
+
<xtce:EnumeratedParameterType name="SWP_HK.MEMLD_ST" signed="false">
|
|
327
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
328
|
+
<xtce:EnumerationList>
|
|
329
|
+
<xtce:Enumeration value="0" label="MLS_IDLE" />
|
|
330
|
+
<xtce:Enumeration value="1" label="MLS_LOADING" />
|
|
331
|
+
<xtce:Enumeration value="2" label="MLS_CHECKING" />
|
|
332
|
+
<xtce:Enumeration value="3" label="MLS_PATCHING" />
|
|
333
|
+
<xtce:Enumeration value="4" label="MLS_VERIFYING" />
|
|
334
|
+
<xtce:Enumeration value="5" label="MLS_SUCCESS" />
|
|
335
|
+
<xtce:Enumeration value="6" label="MLS_CHECKSUM_FAIL" />
|
|
336
|
+
<xtce:Enumeration value="7" label="MLS_VERIFYING_FAIL" />
|
|
337
|
+
<xtce:Enumeration value="8" label="MLS_ERROR" />
|
|
338
|
+
<xtce:Enumeration value="9" label="MRS_CHECKING" />
|
|
339
|
+
<xtce:Enumeration value="10" label="MRS_COPY" />
|
|
340
|
+
<xtce:Enumeration value="11" label="MRS_VERIFYING" />
|
|
341
|
+
<xtce:Enumeration value="12" label="MRS_SUCCESS" />
|
|
342
|
+
<xtce:Enumeration value="13" label="MRS_CHECKSUM_FAIL" />
|
|
343
|
+
<xtce:Enumeration value="14" label="MRS_VERIFYING_FAIL" />
|
|
344
|
+
<xtce:Enumeration value="15" label="MRS_ERROR" />
|
|
345
|
+
</xtce:EnumerationList>
|
|
346
|
+
</xtce:EnumeratedParameterType>
|
|
347
|
+
<xtce:EnumeratedParameterType name="SWP_HK.BOOT_ST" signed="false">
|
|
348
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
349
|
+
<xtce:EnumerationList>
|
|
350
|
+
<xtce:Enumeration value="0" label="Boot" />
|
|
351
|
+
<xtce:Enumeration value="1" label="App" />
|
|
352
|
+
</xtce:EnumerationList>
|
|
353
|
+
</xtce:EnumeratedParameterType>
|
|
354
|
+
<xtce:EnumeratedParameterType name="SWP_HK.ESA_ST" signed="false">
|
|
355
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
356
|
+
<xtce:EnumerationList>
|
|
357
|
+
<xtce:Enumeration value="0" label="DS" />
|
|
358
|
+
<xtce:Enumeration value="1" label="EN" />
|
|
359
|
+
</xtce:EnumerationList>
|
|
360
|
+
</xtce:EnumeratedParameterType>
|
|
361
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_ST" signed="false">
|
|
362
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
363
|
+
<xtce:EnumerationList>
|
|
364
|
+
<xtce:Enumeration value="0" label="DS" />
|
|
365
|
+
<xtce:Enumeration value="1" label="EN" />
|
|
366
|
+
</xtce:EnumerationList>
|
|
367
|
+
</xtce:EnumeratedParameterType>
|
|
368
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_ST" signed="false">
|
|
369
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
370
|
+
<xtce:EnumerationList>
|
|
371
|
+
<xtce:Enumeration value="0" label="DS" />
|
|
372
|
+
<xtce:Enumeration value="1" label="EN" />
|
|
373
|
+
</xtce:EnumerationList>
|
|
374
|
+
</xtce:EnumeratedParameterType>
|
|
375
|
+
<xtce:IntegerParameterType name="SWP_HK.SPARE_1" signed="false">
|
|
376
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
377
|
+
</xtce:IntegerParameterType>
|
|
378
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_CNT_ST" signed="false">
|
|
379
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
380
|
+
<xtce:EnumerationList>
|
|
381
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
382
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
383
|
+
</xtce:EnumerationList>
|
|
384
|
+
</xtce:EnumeratedParameterType>
|
|
385
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_CNT_ST" signed="false">
|
|
386
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
387
|
+
<xtce:EnumerationList>
|
|
388
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
389
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
390
|
+
</xtce:EnumerationList>
|
|
391
|
+
</xtce:EnumeratedParameterType>
|
|
392
|
+
<xtce:IntegerParameterType name="SWP_HK.PCEM_I_THR" signed="false">
|
|
393
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
394
|
+
<xtce:DefaultCalibrator>
|
|
395
|
+
<xtce:PolynomialCalibrator>
|
|
396
|
+
<xtce:Term coefficient="1.46495726495726e-08" exponent="1" />
|
|
397
|
+
</xtce:PolynomialCalibrator>
|
|
398
|
+
</xtce:DefaultCalibrator>
|
|
399
|
+
</xtce:IntegerDataEncoding>
|
|
400
|
+
</xtce:IntegerParameterType>
|
|
401
|
+
<xtce:IntegerParameterType name="SWP_HK.SCEM_I_THR" signed="false">
|
|
402
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
403
|
+
<xtce:DefaultCalibrator>
|
|
404
|
+
<xtce:PolynomialCalibrator>
|
|
405
|
+
<xtce:Term coefficient="1.46495726495726e-08" exponent="1" />
|
|
406
|
+
</xtce:PolynomialCalibrator>
|
|
407
|
+
</xtce:DefaultCalibrator>
|
|
408
|
+
</xtce:IntegerDataEncoding>
|
|
409
|
+
</xtce:IntegerParameterType>
|
|
410
|
+
<xtce:IntegerParameterType name="SWP_HK.PCEM_LVL" signed="false">
|
|
411
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
412
|
+
<xtce:DefaultCalibrator>
|
|
413
|
+
<xtce:PolynomialCalibrator>
|
|
414
|
+
<xtce:Term coefficient="-1.098901098901099" exponent="1" />
|
|
415
|
+
</xtce:PolynomialCalibrator>
|
|
416
|
+
</xtce:DefaultCalibrator>
|
|
417
|
+
</xtce:IntegerDataEncoding>
|
|
418
|
+
</xtce:IntegerParameterType>
|
|
419
|
+
<xtce:IntegerParameterType name="SWP_HK.SCEM_LVL" signed="false">
|
|
420
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
421
|
+
<xtce:DefaultCalibrator>
|
|
422
|
+
<xtce:PolynomialCalibrator>
|
|
423
|
+
<xtce:Term coefficient="1.098901098901099" exponent="1" />
|
|
424
|
+
</xtce:PolynomialCalibrator>
|
|
425
|
+
</xtce:DefaultCalibrator>
|
|
426
|
+
</xtce:IntegerDataEncoding>
|
|
427
|
+
</xtce:IntegerParameterType>
|
|
428
|
+
<xtce:IntegerParameterType name="SWP_HK.AGND_VOLT" signed="true">
|
|
429
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
430
|
+
<xtce:DefaultCalibrator>
|
|
431
|
+
<xtce:PolynomialCalibrator>
|
|
432
|
+
<xtce:Term coefficient="0.001465201465201465" exponent="1" />
|
|
433
|
+
</xtce:PolynomialCalibrator>
|
|
434
|
+
</xtce:DefaultCalibrator>
|
|
435
|
+
</xtce:IntegerDataEncoding>
|
|
436
|
+
</xtce:IntegerParameterType>
|
|
437
|
+
<xtce:IntegerParameterType name="SWP_HK.CEM_I" signed="true">
|
|
438
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
439
|
+
<xtce:DefaultCalibrator>
|
|
440
|
+
<xtce:PolynomialCalibrator>
|
|
441
|
+
<xtce:Term coefficient="1.46495726495726e-08" exponent="1" />
|
|
442
|
+
</xtce:PolynomialCalibrator>
|
|
443
|
+
</xtce:DefaultCalibrator>
|
|
444
|
+
</xtce:IntegerDataEncoding>
|
|
445
|
+
</xtce:IntegerParameterType>
|
|
446
|
+
<xtce:IntegerParameterType name="SWP_HK.ESA_V" signed="false">
|
|
447
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
448
|
+
<xtce:DefaultCalibrator>
|
|
449
|
+
<xtce:PolynomialCalibrator>
|
|
450
|
+
<xtce:Term coefficient="-0.6002931119" exponent="1" />
|
|
451
|
+
</xtce:PolynomialCalibrator>
|
|
452
|
+
</xtce:DefaultCalibrator>
|
|
453
|
+
</xtce:IntegerDataEncoding>
|
|
454
|
+
</xtce:IntegerParameterType>
|
|
455
|
+
<xtce:IntegerParameterType name="SWP_HK.P2_5_V" signed="true">
|
|
456
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
457
|
+
<xtce:DefaultCalibrator>
|
|
458
|
+
<xtce:PolynomialCalibrator>
|
|
459
|
+
<xtce:Term coefficient="0.001465201465201465" exponent="1" />
|
|
460
|
+
</xtce:PolynomialCalibrator>
|
|
461
|
+
</xtce:DefaultCalibrator>
|
|
462
|
+
</xtce:IntegerDataEncoding>
|
|
463
|
+
</xtce:IntegerParameterType>
|
|
464
|
+
<xtce:IntegerParameterType name="SWP_HK.PHD_LLD1_V" signed="true">
|
|
465
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
466
|
+
<xtce:DefaultCalibrator>
|
|
467
|
+
<xtce:PolynomialCalibrator>
|
|
468
|
+
<xtce:Term coefficient="0.001465201465201465" exponent="1" />
|
|
469
|
+
</xtce:PolynomialCalibrator>
|
|
470
|
+
</xtce:DefaultCalibrator>
|
|
471
|
+
</xtce:IntegerDataEncoding>
|
|
472
|
+
</xtce:IntegerParameterType>
|
|
473
|
+
<xtce:IntegerParameterType name="SWP_HK.SPARE_2" signed="false">
|
|
474
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
475
|
+
</xtce:IntegerParameterType>
|
|
476
|
+
<xtce:IntegerParameterType name="SWP_HK.PCEM_RATELIM" signed="false">
|
|
477
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
478
|
+
<xtce:DefaultCalibrator>
|
|
479
|
+
<xtce:PolynomialCalibrator>
|
|
480
|
+
<xtce:Term coefficient="16.0" exponent="1" />
|
|
481
|
+
</xtce:PolynomialCalibrator>
|
|
482
|
+
</xtce:DefaultCalibrator>
|
|
483
|
+
</xtce:IntegerDataEncoding>
|
|
484
|
+
</xtce:IntegerParameterType>
|
|
485
|
+
<xtce:IntegerParameterType name="SWP_HK.SCEM_RATELIM" signed="false">
|
|
486
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
487
|
+
<xtce:DefaultCalibrator>
|
|
488
|
+
<xtce:PolynomialCalibrator>
|
|
489
|
+
<xtce:Term coefficient="16.0" exponent="1" />
|
|
490
|
+
</xtce:PolynomialCalibrator>
|
|
491
|
+
</xtce:DefaultCalibrator>
|
|
492
|
+
</xtce:IntegerDataEncoding>
|
|
493
|
+
</xtce:IntegerParameterType>
|
|
494
|
+
<xtce:EnumeratedParameterType name="SWP_HK.STIM_EN" signed="false">
|
|
495
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
496
|
+
<xtce:EnumerationList>
|
|
497
|
+
<xtce:Enumeration value="0" label="DS" />
|
|
498
|
+
<xtce:Enumeration value="1" label="EN" />
|
|
499
|
+
</xtce:EnumerationList>
|
|
500
|
+
</xtce:EnumeratedParameterType>
|
|
501
|
+
<xtce:IntegerParameterType name="SWP_HK.MISSED_PPS_CNT" signed="false">
|
|
502
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
503
|
+
</xtce:IntegerParameterType>
|
|
504
|
+
<xtce:IntegerParameterType name="SWP_HK.CEM_INT_LIM" signed="false">
|
|
505
|
+
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned">
|
|
506
|
+
<xtce:DefaultCalibrator>
|
|
507
|
+
<xtce:PolynomialCalibrator>
|
|
508
|
+
<xtce:Term coefficient="7.80645161290323e-07" exponent="1" />
|
|
509
|
+
</xtce:PolynomialCalibrator>
|
|
510
|
+
</xtce:DefaultCalibrator>
|
|
511
|
+
</xtce:IntegerDataEncoding>
|
|
512
|
+
</xtce:IntegerParameterType>
|
|
513
|
+
<xtce:EnumeratedParameterType name="SWP_HK.CMD_ECHO_ST" signed="false">
|
|
514
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
515
|
+
<xtce:EnumerationList>
|
|
516
|
+
<xtce:Enumeration value="0" label="DS" />
|
|
517
|
+
<xtce:Enumeration value="1" label="EN" />
|
|
518
|
+
</xtce:EnumerationList>
|
|
519
|
+
</xtce:EnumeratedParameterType>
|
|
520
|
+
<xtce:EnumeratedParameterType name="SWP_HK.HV_PGSAFE_ST" signed="false">
|
|
521
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
522
|
+
<xtce:EnumerationList>
|
|
523
|
+
<xtce:Enumeration value="0" label="INVALID" />
|
|
524
|
+
<xtce:Enumeration value="1" label="INVALID" />
|
|
525
|
+
<xtce:Enumeration value="2" label="INVALID" />
|
|
526
|
+
<xtce:Enumeration value="3" label="INVALID" />
|
|
527
|
+
<xtce:Enumeration value="4" label="INVALID" />
|
|
528
|
+
<xtce:Enumeration value="5" label="EN" />
|
|
529
|
+
<xtce:Enumeration value="6" label="INVALID" />
|
|
530
|
+
<xtce:Enumeration value="7" label="INVALID" />
|
|
531
|
+
<xtce:Enumeration value="8" label="INVALID" />
|
|
532
|
+
<xtce:Enumeration value="9" label="INVALID" />
|
|
533
|
+
<xtce:Enumeration value="10" label="SF" />
|
|
534
|
+
<xtce:Enumeration value="11" label="DS" />
|
|
535
|
+
<xtce:Enumeration value="12" label="INVALID" />
|
|
536
|
+
<xtce:Enumeration value="13" label="INVALID" />
|
|
537
|
+
<xtce:Enumeration value="14" label="INVALID" />
|
|
538
|
+
<xtce:Enumeration value="15" label="INVALID" />
|
|
539
|
+
</xtce:EnumerationList>
|
|
540
|
+
</xtce:EnumeratedParameterType>
|
|
541
|
+
<xtce:EnumeratedParameterType name="SWP_HK.HV_ARM_ST" signed="false">
|
|
13
542
|
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
543
|
+
<xtce:EnumerationList>
|
|
544
|
+
<xtce:Enumeration value="0" label="INVALID" />
|
|
545
|
+
<xtce:Enumeration value="1" label="INVALID" />
|
|
546
|
+
<xtce:Enumeration value="2" label="DS" />
|
|
547
|
+
<xtce:Enumeration value="3" label="INVALID" />
|
|
548
|
+
<xtce:Enumeration value="4" label="INVALID" />
|
|
549
|
+
<xtce:Enumeration value="5" label="EN" />
|
|
550
|
+
<xtce:Enumeration value="6" label="INVALID" />
|
|
551
|
+
<xtce:Enumeration value="7" label="INVALID" />
|
|
552
|
+
</xtce:EnumerationList>
|
|
553
|
+
</xtce:EnumeratedParameterType>
|
|
554
|
+
<xtce:IntegerParameterType name="SWP_HK.SPARE_3" signed="false">
|
|
555
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
556
|
+
</xtce:IntegerParameterType>
|
|
557
|
+
<xtce:IntegerParameterType name="SWP_HK.CEM_INT_DIP" signed="false">
|
|
558
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
559
|
+
<xtce:DefaultCalibrator>
|
|
560
|
+
<xtce:PolynomialCalibrator>
|
|
561
|
+
<xtce:Term coefficient="1.098901098901099" exponent="1" />
|
|
562
|
+
</xtce:PolynomialCalibrator>
|
|
563
|
+
</xtce:DefaultCalibrator>
|
|
564
|
+
</xtce:IntegerDataEncoding>
|
|
565
|
+
</xtce:IntegerParameterType>
|
|
566
|
+
<xtce:IntegerParameterType name="SWP_HK.PLAN_ID" signed="false">
|
|
567
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
568
|
+
</xtce:IntegerParameterType>
|
|
569
|
+
<xtce:IntegerParameterType name="SWP_HK.SWEEP_ID" signed="false">
|
|
570
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
14
571
|
</xtce:IntegerParameterType>
|
|
15
|
-
<xtce:
|
|
572
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_V1_ST" signed="false">
|
|
573
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
574
|
+
<xtce:EnumerationList>
|
|
575
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
576
|
+
<xtce:Enumeration value="1" label="Warn" />
|
|
577
|
+
</xtce:EnumerationList>
|
|
578
|
+
</xtce:EnumeratedParameterType>
|
|
579
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_I1_ST" signed="false">
|
|
580
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
581
|
+
<xtce:EnumerationList>
|
|
582
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
583
|
+
<xtce:Enumeration value="1" label="Warn" />
|
|
584
|
+
</xtce:EnumerationList>
|
|
585
|
+
</xtce:EnumeratedParameterType>
|
|
586
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_V1_ST" signed="false">
|
|
587
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
588
|
+
<xtce:EnumerationList>
|
|
589
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
590
|
+
<xtce:Enumeration value="1" label="Warn" />
|
|
591
|
+
</xtce:EnumerationList>
|
|
592
|
+
</xtce:EnumeratedParameterType>
|
|
593
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_I1_ST" signed="false">
|
|
594
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
595
|
+
<xtce:EnumerationList>
|
|
596
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
597
|
+
<xtce:Enumeration value="1" label="Warn" />
|
|
598
|
+
</xtce:EnumerationList>
|
|
599
|
+
</xtce:EnumeratedParameterType>
|
|
600
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PCEM_INT_ST" signed="false">
|
|
601
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
602
|
+
<xtce:EnumerationList>
|
|
603
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
604
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
605
|
+
</xtce:EnumerationList>
|
|
606
|
+
</xtce:EnumeratedParameterType>
|
|
607
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCEM_INT_ST" signed="false">
|
|
608
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
609
|
+
<xtce:EnumerationList>
|
|
610
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
611
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
612
|
+
</xtce:EnumerationList>
|
|
613
|
+
</xtce:EnumeratedParameterType>
|
|
614
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEP2_RDY" signed="false">
|
|
615
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
616
|
+
<xtce:EnumerationList>
|
|
617
|
+
<xtce:Enumeration value="0" label="Busy" />
|
|
618
|
+
<xtce:Enumeration value="1" label="Ready" />
|
|
619
|
+
</xtce:EnumerationList>
|
|
620
|
+
</xtce:EnumeratedParameterType>
|
|
621
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEP1_RDY" signed="false">
|
|
622
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
623
|
+
<xtce:EnumerationList>
|
|
624
|
+
<xtce:Enumeration value="0" label="Busy" />
|
|
625
|
+
<xtce:Enumeration value="1" label="Ready" />
|
|
626
|
+
</xtce:EnumerationList>
|
|
627
|
+
</xtce:EnumeratedParameterType>
|
|
628
|
+
<xtce:EnumeratedParameterType name="SWP_HK.FPGA_TYPE" signed="false">
|
|
629
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
630
|
+
<xtce:EnumerationList>
|
|
631
|
+
<xtce:Enumeration value="0" label="EM" />
|
|
632
|
+
<xtce:Enumeration value="1" label="SIM" />
|
|
633
|
+
<xtce:Enumeration value="2" label="FM" />
|
|
634
|
+
<xtce:Enumeration value="3" label="INVALID" />
|
|
635
|
+
<xtce:Enumeration value="4" label="INVALID" />
|
|
636
|
+
<xtce:Enumeration value="5" label="INVALID" />
|
|
637
|
+
<xtce:Enumeration value="6" label="INVALID" />
|
|
638
|
+
<xtce:Enumeration value="7" label="INVALID" />
|
|
639
|
+
<xtce:Enumeration value="8" label="INVALID" />
|
|
640
|
+
<xtce:Enumeration value="9" label="INVALID" />
|
|
641
|
+
<xtce:Enumeration value="10" label="INVALID" />
|
|
642
|
+
<xtce:Enumeration value="11" label="INVALID" />
|
|
643
|
+
<xtce:Enumeration value="12" label="INVALID" />
|
|
644
|
+
<xtce:Enumeration value="13" label="INVALID" />
|
|
645
|
+
<xtce:Enumeration value="14" label="INVALID" />
|
|
646
|
+
<xtce:Enumeration value="15" label="INVALID" />
|
|
647
|
+
</xtce:EnumerationList>
|
|
648
|
+
</xtce:EnumeratedParameterType>
|
|
649
|
+
<xtce:IntegerParameterType name="SWP_HK.FPGA_REV" signed="false">
|
|
16
650
|
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
17
651
|
</xtce:IntegerParameterType>
|
|
18
|
-
<xtce:
|
|
652
|
+
<xtce:EnumeratedParameterType name="SWP_HK.IAL_TLM" signed="false">
|
|
653
|
+
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
|
|
654
|
+
<xtce:EnumerationList>
|
|
655
|
+
<xtce:Enumeration value="0" label="PER_NEVER" />
|
|
656
|
+
<xtce:Enumeration value="1" label="PER_24H" />
|
|
657
|
+
<xtce:Enumeration value="2" label="PER_12H" />
|
|
658
|
+
<xtce:Enumeration value="3" label="PER_6H" />
|
|
659
|
+
<xtce:Enumeration value="4" label="PER_3H" />
|
|
660
|
+
<xtce:Enumeration value="5" label="PER_2H" />
|
|
661
|
+
<xtce:Enumeration value="6" label="PER_1H" />
|
|
662
|
+
<xtce:Enumeration value="7" label="PER_30M" />
|
|
663
|
+
<xtce:Enumeration value="8" label="PER_20M" />
|
|
664
|
+
<xtce:Enumeration value="9" label="PER_10M" />
|
|
665
|
+
<xtce:Enumeration value="10" label="PER_5M" />
|
|
666
|
+
<xtce:Enumeration value="11" label="PER_2M" />
|
|
667
|
+
<xtce:Enumeration value="12" label="PER_60S" />
|
|
668
|
+
<xtce:Enumeration value="13" label="PER_24S" />
|
|
669
|
+
<xtce:Enumeration value="14" label="PER_12S" />
|
|
670
|
+
<xtce:Enumeration value="15" label="PER_INVALID" />
|
|
671
|
+
</xtce:EnumerationList>
|
|
672
|
+
</xtce:EnumeratedParameterType>
|
|
673
|
+
<xtce:EnumeratedParameterType name="SWP_HK.SCI_TLM" signed="false">
|
|
19
674
|
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
|
|
675
|
+
<xtce:EnumerationList>
|
|
676
|
+
<xtce:Enumeration value="0" label="PER_NEVER" />
|
|
677
|
+
<xtce:Enumeration value="1" label="PER_24H" />
|
|
678
|
+
<xtce:Enumeration value="2" label="PER_12H" />
|
|
679
|
+
<xtce:Enumeration value="3" label="PER_6H" />
|
|
680
|
+
<xtce:Enumeration value="4" label="PER_3H" />
|
|
681
|
+
<xtce:Enumeration value="5" label="PER_2H" />
|
|
682
|
+
<xtce:Enumeration value="6" label="PER_1H" />
|
|
683
|
+
<xtce:Enumeration value="7" label="PER_30M" />
|
|
684
|
+
<xtce:Enumeration value="8" label="PER_20M" />
|
|
685
|
+
<xtce:Enumeration value="9" label="PER_10M" />
|
|
686
|
+
<xtce:Enumeration value="10" label="PER_5M" />
|
|
687
|
+
<xtce:Enumeration value="11" label="PER_2M" />
|
|
688
|
+
<xtce:Enumeration value="12" label="PER_60S" />
|
|
689
|
+
<xtce:Enumeration value="13" label="PER_24S" />
|
|
690
|
+
<xtce:Enumeration value="14" label="PER_12S" />
|
|
691
|
+
<xtce:Enumeration value="15" label="PER_INVALID" />
|
|
692
|
+
</xtce:EnumerationList>
|
|
693
|
+
</xtce:EnumeratedParameterType>
|
|
694
|
+
<xtce:EnumeratedParameterType name="SWP_HK.HK_TLM" signed="false">
|
|
695
|
+
<xtce:IntegerDataEncoding sizeInBits="5" encoding="unsigned" />
|
|
696
|
+
<xtce:EnumerationList>
|
|
697
|
+
<xtce:Enumeration value="0" label="PER_NEVER" />
|
|
698
|
+
<xtce:Enumeration value="1" label="PER_24H" />
|
|
699
|
+
<xtce:Enumeration value="2" label="PER_12H" />
|
|
700
|
+
<xtce:Enumeration value="3" label="PER_6H" />
|
|
701
|
+
<xtce:Enumeration value="4" label="PER_3H" />
|
|
702
|
+
<xtce:Enumeration value="5" label="PER_2H" />
|
|
703
|
+
<xtce:Enumeration value="6" label="PER_1H" />
|
|
704
|
+
<xtce:Enumeration value="7" label="PER_30M" />
|
|
705
|
+
<xtce:Enumeration value="8" label="PER_20M" />
|
|
706
|
+
<xtce:Enumeration value="9" label="PER_10M" />
|
|
707
|
+
<xtce:Enumeration value="10" label="PER_5M" />
|
|
708
|
+
<xtce:Enumeration value="11" label="PER_2M" />
|
|
709
|
+
<xtce:Enumeration value="12" label="PER_60S" />
|
|
710
|
+
<xtce:Enumeration value="13" label="PER_24S" />
|
|
711
|
+
<xtce:Enumeration value="14" label="PER_12S" />
|
|
712
|
+
<xtce:Enumeration value="15" label="PER_8S" />
|
|
713
|
+
<xtce:Enumeration value="16" label="PER_4S" />
|
|
714
|
+
<xtce:Enumeration value="17" label="PER_2S" />
|
|
715
|
+
<xtce:Enumeration value="18" label="PER_1S" />
|
|
716
|
+
<xtce:Enumeration value="19" label="PER_INVALID" />
|
|
717
|
+
</xtce:EnumerationList>
|
|
718
|
+
</xtce:EnumeratedParameterType>
|
|
719
|
+
<xtce:IntegerParameterType name="SWP_HK.SPARE_4" signed="false">
|
|
720
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
20
721
|
</xtce:IntegerParameterType>
|
|
21
|
-
|
|
22
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
722
|
+
<xtce:IntegerParameterType name="SWP_HK.FPGA_PUP_ST" signed="false">
|
|
723
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
23
724
|
</xtce:IntegerParameterType>
|
|
24
|
-
<xtce:
|
|
725
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEPL2_CKS_ST" signed="false">
|
|
726
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
727
|
+
<xtce:EnumerationList>
|
|
728
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
729
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
730
|
+
</xtce:EnumerationList>
|
|
731
|
+
</xtce:EnumeratedParameterType>
|
|
732
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEPL1_CKS_ST" signed="false">
|
|
733
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
734
|
+
<xtce:EnumerationList>
|
|
735
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
736
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
737
|
+
</xtce:EnumerationList>
|
|
738
|
+
</xtce:EnumeratedParameterType>
|
|
739
|
+
<xtce:EnumeratedParameterType name="SWP_HK.RAM_D_ST" signed="false">
|
|
740
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
741
|
+
<xtce:EnumerationList>
|
|
742
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
743
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
744
|
+
</xtce:EnumerationList>
|
|
745
|
+
</xtce:EnumeratedParameterType>
|
|
746
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEPC2_CKS_ST" signed="false">
|
|
747
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
748
|
+
<xtce:EnumerationList>
|
|
749
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
750
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
751
|
+
</xtce:EnumerationList>
|
|
752
|
+
</xtce:EnumeratedParameterType>
|
|
753
|
+
<xtce:EnumeratedParameterType name="SWP_HK.EEPC1_CKS_ST" signed="false">
|
|
754
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
755
|
+
<xtce:EnumerationList>
|
|
756
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
757
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
758
|
+
</xtce:EnumerationList>
|
|
759
|
+
</xtce:EnumeratedParameterType>
|
|
760
|
+
<xtce:EnumeratedParameterType name="SWP_HK.RAM_C_ST" signed="false">
|
|
761
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
762
|
+
<xtce:EnumerationList>
|
|
763
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
764
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
765
|
+
</xtce:EnumerationList>
|
|
766
|
+
</xtce:EnumeratedParameterType>
|
|
767
|
+
<xtce:EnumeratedParameterType name="SWP_HK.PROM_CKS_ST" signed="false">
|
|
768
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
769
|
+
<xtce:EnumerationList>
|
|
770
|
+
<xtce:Enumeration value="0" label="Ok" />
|
|
771
|
+
<xtce:Enumeration value="1" label="Err" />
|
|
772
|
+
</xtce:EnumerationList>
|
|
773
|
+
</xtce:EnumeratedParameterType>
|
|
774
|
+
<xtce:IntegerParameterType name="SWP_HK.LUT_REV" signed="false">
|
|
25
775
|
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
26
776
|
</xtce:IntegerParameterType>
|
|
27
|
-
|
|
28
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
777
|
+
<xtce:IntegerParameterType name="SWP_HK.P2V5D" signed="true">
|
|
778
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
779
|
+
<xtce:DefaultCalibrator>
|
|
780
|
+
<xtce:PolynomialCalibrator>
|
|
781
|
+
<xtce:Term coefficient="0.001465559355153884" exponent="1" />
|
|
782
|
+
</xtce:PolynomialCalibrator>
|
|
783
|
+
</xtce:DefaultCalibrator>
|
|
784
|
+
</xtce:IntegerDataEncoding>
|
|
29
785
|
</xtce:IntegerParameterType>
|
|
30
|
-
<xtce:IntegerParameterType name="
|
|
31
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
786
|
+
<xtce:IntegerParameterType name="SWP_HK.P3V3_V_MON" signed="true">
|
|
787
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
788
|
+
<xtce:DefaultCalibrator>
|
|
789
|
+
<xtce:PolynomialCalibrator>
|
|
790
|
+
<xtce:Term coefficient="0.002931118710307767" exponent="1" />
|
|
791
|
+
</xtce:PolynomialCalibrator>
|
|
792
|
+
</xtce:DefaultCalibrator>
|
|
793
|
+
</xtce:IntegerDataEncoding>
|
|
32
794
|
</xtce:IntegerParameterType>
|
|
33
|
-
<xtce:IntegerParameterType name="
|
|
34
|
-
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed"
|
|
795
|
+
<xtce:IntegerParameterType name="SWP_HK.P_CEM_CMD_LVL_MON" signed="true">
|
|
796
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
797
|
+
<xtce:DefaultCalibrator>
|
|
798
|
+
<xtce:PolynomialCalibrator>
|
|
799
|
+
<xtce:Term coefficient="0.002442598925256473" exponent="1" />
|
|
800
|
+
</xtce:PolynomialCalibrator>
|
|
801
|
+
</xtce:DefaultCalibrator>
|
|
802
|
+
</xtce:IntegerDataEncoding>
|
|
35
803
|
</xtce:IntegerParameterType>
|
|
36
|
-
<xtce:IntegerParameterType name="
|
|
37
|
-
<xtce:IntegerDataEncoding sizeInBits="12" encoding="
|
|
804
|
+
<xtce:IntegerParameterType name="SWP_HK.S_CEM_CMD_LVL_MON" signed="true">
|
|
805
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
806
|
+
<xtce:DefaultCalibrator>
|
|
807
|
+
<xtce:PolynomialCalibrator>
|
|
808
|
+
<xtce:Term coefficient="0.002442598925256473" exponent="1" />
|
|
809
|
+
</xtce:PolynomialCalibrator>
|
|
810
|
+
</xtce:DefaultCalibrator>
|
|
811
|
+
</xtce:IntegerDataEncoding>
|
|
38
812
|
</xtce:IntegerParameterType>
|
|
39
|
-
|
|
40
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
813
|
+
<xtce:IntegerParameterType name="SWP_HK.ESA_CMD_LVL_MON" signed="true">
|
|
814
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
815
|
+
<xtce:DefaultCalibrator>
|
|
816
|
+
<xtce:PolynomialCalibrator>
|
|
817
|
+
<xtce:Term coefficient="0.001465559355153884" exponent="1" />
|
|
818
|
+
</xtce:PolynomialCalibrator>
|
|
819
|
+
</xtce:DefaultCalibrator>
|
|
820
|
+
</xtce:IntegerDataEncoding>
|
|
41
821
|
</xtce:IntegerParameterType>
|
|
42
|
-
<xtce:IntegerParameterType name="
|
|
43
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
822
|
+
<xtce:IntegerParameterType name="SWP_HK.PHD_LLD2_V" signed="true">
|
|
823
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="signed">
|
|
824
|
+
<xtce:DefaultCalibrator>
|
|
825
|
+
<xtce:PolynomialCalibrator>
|
|
826
|
+
<xtce:Term coefficient="0.002442598925256473" exponent="1" />
|
|
827
|
+
</xtce:PolynomialCalibrator>
|
|
828
|
+
</xtce:DefaultCalibrator>
|
|
829
|
+
</xtce:IntegerDataEncoding>
|
|
44
830
|
</xtce:IntegerParameterType>
|
|
45
|
-
<xtce:IntegerParameterType name="
|
|
46
|
-
<xtce:IntegerDataEncoding sizeInBits="
|
|
831
|
+
<xtce:IntegerParameterType name="SWP_HK.SPARE_5" signed="false">
|
|
832
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
833
|
+
</xtce:IntegerParameterType>
|
|
834
|
+
<xtce:IntegerParameterType name="SWP_HK.PHD_LLD2_LVL" signed="false">
|
|
835
|
+
<xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
|
|
836
|
+
<xtce:DefaultCalibrator>
|
|
837
|
+
<xtce:PolynomialCalibrator>
|
|
838
|
+
<xtce:Term coefficient="1.0" exponent="0" />
|
|
839
|
+
</xtce:PolynomialCalibrator>
|
|
840
|
+
</xtce:DefaultCalibrator>
|
|
841
|
+
</xtce:IntegerDataEncoding>
|
|
47
842
|
</xtce:IntegerParameterType>
|
|
48
|
-
<xtce:IntegerParameterType name="
|
|
843
|
+
<xtce:IntegerParameterType name="SWP_HK.CHKSUM" signed="false">
|
|
844
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
845
|
+
</xtce:IntegerParameterType>
|
|
846
|
+
<xtce:IntegerParameterType name="SWP_SCI.SHCOARSE" signed="false">
|
|
49
847
|
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
50
848
|
</xtce:IntegerParameterType>
|
|
51
|
-
<xtce:
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
<xtce:EnumeratedParameterType name="
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
849
|
+
<xtce:IntegerParameterType name="SWP_SCI.SEQ_NUMBER" signed="false">
|
|
850
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
851
|
+
</xtce:IntegerParameterType>
|
|
852
|
+
<xtce:IntegerParameterType name="SWP_SCI.SWEEP_TABLE" signed="false">
|
|
853
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
854
|
+
</xtce:IntegerParameterType>
|
|
855
|
+
<xtce:IntegerParameterType name="SWP_SCI.PLAN_ID" signed="false">
|
|
856
|
+
<xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
|
|
857
|
+
</xtce:IntegerParameterType>
|
|
858
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.MODE" signed="false">
|
|
859
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
860
|
+
<xtce:EnumerationList>
|
|
861
|
+
<xtce:Enumeration value="0" label="LVENG" />
|
|
862
|
+
<xtce:Enumeration value="1" label="LVSCI" />
|
|
863
|
+
<xtce:Enumeration value="2" label="HVENG" />
|
|
864
|
+
<xtce:Enumeration value="3" label="HVSCI" />
|
|
865
|
+
</xtce:EnumerationList>
|
|
866
|
+
</xtce:EnumeratedParameterType>
|
|
867
|
+
<xtce:IntegerParameterType name="SWP_SCI.SPARE_1" signed="false">
|
|
868
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
869
|
+
</xtce:IntegerParameterType>
|
|
870
|
+
<xtce:IntegerParameterType name="SWP_SCI.ESA_LVL5" signed="false">
|
|
871
|
+
<xtce:IntegerDataEncoding sizeInBits="13" encoding="unsigned">
|
|
872
|
+
<xtce:DefaultCalibrator>
|
|
873
|
+
<xtce:PolynomialCalibrator>
|
|
874
|
+
<xtce:Term coefficient="0.2500610500610501" exponent="1" />
|
|
875
|
+
</xtce:PolynomialCalibrator>
|
|
876
|
+
</xtce:DefaultCalibrator>
|
|
877
|
+
</xtce:IntegerDataEncoding>
|
|
878
|
+
</xtce:IntegerParameterType>
|
|
879
|
+
<xtce:IntegerParameterType name="SWP_SCI.SPARE_2" signed="false">
|
|
880
|
+
<xtce:IntegerDataEncoding sizeInBits="9" encoding="unsigned" />
|
|
881
|
+
</xtce:IntegerParameterType>
|
|
882
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST0" signed="false">
|
|
883
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
884
|
+
<xtce:EnumerationList>
|
|
885
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
886
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
887
|
+
</xtce:EnumerationList>
|
|
888
|
+
</xtce:EnumeratedParameterType>
|
|
889
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST0" signed="false">
|
|
890
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
891
|
+
<xtce:EnumerationList>
|
|
892
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
893
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
894
|
+
</xtce:EnumerationList>
|
|
895
|
+
</xtce:EnumeratedParameterType>
|
|
896
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST0" signed="false">
|
|
897
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
898
|
+
<xtce:EnumerationList>
|
|
899
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
900
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
901
|
+
</xtce:EnumerationList>
|
|
902
|
+
</xtce:EnumeratedParameterType>
|
|
903
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST1" signed="false">
|
|
904
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
905
|
+
<xtce:EnumerationList>
|
|
906
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
907
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
908
|
+
</xtce:EnumerationList>
|
|
909
|
+
</xtce:EnumeratedParameterType>
|
|
910
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST1" signed="false">
|
|
911
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
912
|
+
<xtce:EnumerationList>
|
|
913
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
914
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
915
|
+
</xtce:EnumerationList>
|
|
916
|
+
</xtce:EnumeratedParameterType>
|
|
917
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST1" signed="false">
|
|
918
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
919
|
+
<xtce:EnumerationList>
|
|
920
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
921
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
922
|
+
</xtce:EnumerationList>
|
|
923
|
+
</xtce:EnumeratedParameterType>
|
|
924
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST2" signed="false">
|
|
925
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
926
|
+
<xtce:EnumerationList>
|
|
927
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
928
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
929
|
+
</xtce:EnumerationList>
|
|
930
|
+
</xtce:EnumeratedParameterType>
|
|
931
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST2" signed="false">
|
|
932
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
933
|
+
<xtce:EnumerationList>
|
|
934
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
935
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
936
|
+
</xtce:EnumerationList>
|
|
937
|
+
</xtce:EnumeratedParameterType>
|
|
938
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST2" signed="false">
|
|
939
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
940
|
+
<xtce:EnumerationList>
|
|
941
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
942
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
943
|
+
</xtce:EnumerationList>
|
|
944
|
+
</xtce:EnumeratedParameterType>
|
|
945
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST3" signed="false">
|
|
946
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
947
|
+
<xtce:EnumerationList>
|
|
948
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
949
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
950
|
+
</xtce:EnumerationList>
|
|
951
|
+
</xtce:EnumeratedParameterType>
|
|
952
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST3" signed="false">
|
|
953
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
954
|
+
<xtce:EnumerationList>
|
|
955
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
956
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
957
|
+
</xtce:EnumerationList>
|
|
958
|
+
</xtce:EnumeratedParameterType>
|
|
959
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST3" signed="false">
|
|
960
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
961
|
+
<xtce:EnumerationList>
|
|
962
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
963
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
964
|
+
</xtce:EnumerationList>
|
|
965
|
+
</xtce:EnumeratedParameterType>
|
|
966
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST4" signed="false">
|
|
967
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
968
|
+
<xtce:EnumerationList>
|
|
969
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
970
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
971
|
+
</xtce:EnumerationList>
|
|
972
|
+
</xtce:EnumeratedParameterType>
|
|
973
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST4" signed="false">
|
|
974
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
975
|
+
<xtce:EnumerationList>
|
|
976
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
977
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
978
|
+
</xtce:EnumerationList>
|
|
979
|
+
</xtce:EnumeratedParameterType>
|
|
980
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST4" signed="false">
|
|
981
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
982
|
+
<xtce:EnumerationList>
|
|
983
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
984
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
985
|
+
</xtce:EnumerationList>
|
|
986
|
+
</xtce:EnumeratedParameterType>
|
|
987
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.PCEM_RNG_ST5" signed="false">
|
|
988
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
989
|
+
<xtce:EnumerationList>
|
|
990
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
991
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
992
|
+
</xtce:EnumerationList>
|
|
993
|
+
</xtce:EnumeratedParameterType>
|
|
994
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.SCEM_RNG_ST5" signed="false">
|
|
995
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
996
|
+
<xtce:EnumerationList>
|
|
997
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
998
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
999
|
+
</xtce:EnumerationList>
|
|
1000
|
+
</xtce:EnumeratedParameterType>
|
|
1001
|
+
<xtce:EnumeratedParameterType name="SWP_SCI.COIN_RNG_ST5" signed="false">
|
|
1002
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
1003
|
+
<xtce:EnumerationList>
|
|
1004
|
+
<xtce:Enumeration value="0" label="RAW" />
|
|
1005
|
+
<xtce:Enumeration value="1" label="COMP" />
|
|
1006
|
+
</xtce:EnumerationList>
|
|
1007
|
+
</xtce:EnumeratedParameterType>
|
|
1008
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT0" signed="false">
|
|
1009
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1010
|
+
<xtce:DefaultCalibrator>
|
|
1011
|
+
<xtce:PolynomialCalibrator>
|
|
1012
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1013
|
+
</xtce:PolynomialCalibrator>
|
|
1014
|
+
</xtce:DefaultCalibrator>
|
|
1015
|
+
</xtce:IntegerDataEncoding>
|
|
1016
|
+
</xtce:IntegerParameterType>
|
|
1017
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT0" signed="false">
|
|
1018
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1019
|
+
<xtce:DefaultCalibrator>
|
|
1020
|
+
<xtce:PolynomialCalibrator>
|
|
1021
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1022
|
+
</xtce:PolynomialCalibrator>
|
|
1023
|
+
</xtce:DefaultCalibrator>
|
|
1024
|
+
</xtce:IntegerDataEncoding>
|
|
1025
|
+
</xtce:IntegerParameterType>
|
|
1026
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT0" signed="false">
|
|
1027
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1028
|
+
<xtce:DefaultCalibrator>
|
|
1029
|
+
<xtce:PolynomialCalibrator>
|
|
1030
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1031
|
+
</xtce:PolynomialCalibrator>
|
|
1032
|
+
</xtce:DefaultCalibrator>
|
|
1033
|
+
</xtce:IntegerDataEncoding>
|
|
1034
|
+
</xtce:IntegerParameterType>
|
|
1035
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT1" signed="false">
|
|
1036
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1037
|
+
<xtce:DefaultCalibrator>
|
|
1038
|
+
<xtce:PolynomialCalibrator>
|
|
1039
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1040
|
+
</xtce:PolynomialCalibrator>
|
|
1041
|
+
</xtce:DefaultCalibrator>
|
|
1042
|
+
</xtce:IntegerDataEncoding>
|
|
1043
|
+
</xtce:IntegerParameterType>
|
|
1044
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT1" signed="false">
|
|
1045
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1046
|
+
<xtce:DefaultCalibrator>
|
|
1047
|
+
<xtce:PolynomialCalibrator>
|
|
1048
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1049
|
+
</xtce:PolynomialCalibrator>
|
|
1050
|
+
</xtce:DefaultCalibrator>
|
|
1051
|
+
</xtce:IntegerDataEncoding>
|
|
1052
|
+
</xtce:IntegerParameterType>
|
|
1053
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT1" signed="false">
|
|
1054
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1055
|
+
<xtce:DefaultCalibrator>
|
|
1056
|
+
<xtce:PolynomialCalibrator>
|
|
1057
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1058
|
+
</xtce:PolynomialCalibrator>
|
|
1059
|
+
</xtce:DefaultCalibrator>
|
|
1060
|
+
</xtce:IntegerDataEncoding>
|
|
1061
|
+
</xtce:IntegerParameterType>
|
|
1062
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT2" signed="false">
|
|
1063
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1064
|
+
<xtce:DefaultCalibrator>
|
|
1065
|
+
<xtce:PolynomialCalibrator>
|
|
1066
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1067
|
+
</xtce:PolynomialCalibrator>
|
|
1068
|
+
</xtce:DefaultCalibrator>
|
|
1069
|
+
</xtce:IntegerDataEncoding>
|
|
1070
|
+
</xtce:IntegerParameterType>
|
|
1071
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT2" signed="false">
|
|
1072
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1073
|
+
<xtce:DefaultCalibrator>
|
|
1074
|
+
<xtce:PolynomialCalibrator>
|
|
1075
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1076
|
+
</xtce:PolynomialCalibrator>
|
|
1077
|
+
</xtce:DefaultCalibrator>
|
|
1078
|
+
</xtce:IntegerDataEncoding>
|
|
1079
|
+
</xtce:IntegerParameterType>
|
|
1080
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT2" signed="false">
|
|
1081
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1082
|
+
<xtce:DefaultCalibrator>
|
|
1083
|
+
<xtce:PolynomialCalibrator>
|
|
1084
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1085
|
+
</xtce:PolynomialCalibrator>
|
|
1086
|
+
</xtce:DefaultCalibrator>
|
|
1087
|
+
</xtce:IntegerDataEncoding>
|
|
1088
|
+
</xtce:IntegerParameterType>
|
|
1089
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT3" signed="false">
|
|
1090
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1091
|
+
<xtce:DefaultCalibrator>
|
|
1092
|
+
<xtce:PolynomialCalibrator>
|
|
1093
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1094
|
+
</xtce:PolynomialCalibrator>
|
|
1095
|
+
</xtce:DefaultCalibrator>
|
|
1096
|
+
</xtce:IntegerDataEncoding>
|
|
1097
|
+
</xtce:IntegerParameterType>
|
|
1098
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT3" signed="false">
|
|
1099
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1100
|
+
<xtce:DefaultCalibrator>
|
|
1101
|
+
<xtce:PolynomialCalibrator>
|
|
1102
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1103
|
+
</xtce:PolynomialCalibrator>
|
|
1104
|
+
</xtce:DefaultCalibrator>
|
|
1105
|
+
</xtce:IntegerDataEncoding>
|
|
1106
|
+
</xtce:IntegerParameterType>
|
|
1107
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT3" signed="false">
|
|
1108
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1109
|
+
<xtce:DefaultCalibrator>
|
|
1110
|
+
<xtce:PolynomialCalibrator>
|
|
1111
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1112
|
+
</xtce:PolynomialCalibrator>
|
|
1113
|
+
</xtce:DefaultCalibrator>
|
|
1114
|
+
</xtce:IntegerDataEncoding>
|
|
1115
|
+
</xtce:IntegerParameterType>
|
|
1116
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT4" signed="false">
|
|
1117
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1118
|
+
<xtce:DefaultCalibrator>
|
|
1119
|
+
<xtce:PolynomialCalibrator>
|
|
1120
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1121
|
+
</xtce:PolynomialCalibrator>
|
|
1122
|
+
</xtce:DefaultCalibrator>
|
|
1123
|
+
</xtce:IntegerDataEncoding>
|
|
1124
|
+
</xtce:IntegerParameterType>
|
|
1125
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT4" signed="false">
|
|
1126
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1127
|
+
<xtce:DefaultCalibrator>
|
|
1128
|
+
<xtce:PolynomialCalibrator>
|
|
1129
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1130
|
+
</xtce:PolynomialCalibrator>
|
|
1131
|
+
</xtce:DefaultCalibrator>
|
|
1132
|
+
</xtce:IntegerDataEncoding>
|
|
1133
|
+
</xtce:IntegerParameterType>
|
|
1134
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT4" signed="false">
|
|
1135
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1136
|
+
<xtce:DefaultCalibrator>
|
|
1137
|
+
<xtce:PolynomialCalibrator>
|
|
1138
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1139
|
+
</xtce:PolynomialCalibrator>
|
|
1140
|
+
</xtce:DefaultCalibrator>
|
|
1141
|
+
</xtce:IntegerDataEncoding>
|
|
1142
|
+
</xtce:IntegerParameterType>
|
|
1143
|
+
<xtce:IntegerParameterType name="SWP_SCI.PCEM_CNT5" signed="false">
|
|
1144
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1145
|
+
<xtce:DefaultCalibrator>
|
|
1146
|
+
<xtce:PolynomialCalibrator>
|
|
1147
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1148
|
+
</xtce:PolynomialCalibrator>
|
|
1149
|
+
</xtce:DefaultCalibrator>
|
|
1150
|
+
</xtce:IntegerDataEncoding>
|
|
1151
|
+
</xtce:IntegerParameterType>
|
|
1152
|
+
<xtce:IntegerParameterType name="SWP_SCI.SCEM_CNT5" signed="false">
|
|
1153
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1154
|
+
<xtce:DefaultCalibrator>
|
|
1155
|
+
<xtce:PolynomialCalibrator>
|
|
1156
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1157
|
+
</xtce:PolynomialCalibrator>
|
|
1158
|
+
</xtce:DefaultCalibrator>
|
|
1159
|
+
</xtce:IntegerDataEncoding>
|
|
1160
|
+
</xtce:IntegerParameterType>
|
|
1161
|
+
<xtce:IntegerParameterType name="SWP_SCI.COIN_CNT5" signed="false">
|
|
1162
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned">
|
|
1163
|
+
<xtce:DefaultCalibrator>
|
|
1164
|
+
<xtce:PolynomialCalibrator>
|
|
1165
|
+
<xtce:Term coefficient="1.0" exponent="1" />
|
|
1166
|
+
</xtce:PolynomialCalibrator>
|
|
1167
|
+
</xtce:DefaultCalibrator>
|
|
1168
|
+
</xtce:IntegerDataEncoding>
|
|
1169
|
+
</xtce:IntegerParameterType>
|
|
1170
|
+
<xtce:IntegerParameterType name="SWP_SCI.CHKSUM" signed="false">
|
|
1171
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
1172
|
+
</xtce:IntegerParameterType>
|
|
67
1173
|
</xtce:ParameterTypeSet>
|
|
68
1174
|
<xtce:ParameterSet>
|
|
69
|
-
<xtce:Parameter name="VERSION" parameterTypeRef="
|
|
1175
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="VERSION">
|
|
70
1176
|
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
71
1177
|
</xtce:Parameter>
|
|
72
|
-
<xtce:Parameter name="TYPE" parameterTypeRef="
|
|
1178
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="TYPE">
|
|
73
1179
|
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
74
1180
|
</xtce:Parameter>
|
|
75
|
-
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="
|
|
1181
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="SEC_HDR_FLG">
|
|
76
1182
|
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
77
1183
|
</xtce:Parameter>
|
|
78
|
-
<xtce:Parameter name="PKT_APID" parameterTypeRef="
|
|
1184
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="PKT_APID">
|
|
79
1185
|
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
80
1186
|
</xtce:Parameter>
|
|
81
|
-
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="
|
|
1187
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="SEQ_FLGS">
|
|
82
1188
|
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
83
1189
|
</xtce:Parameter>
|
|
84
|
-
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="
|
|
1190
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="SRC_SEQ_CTR">
|
|
85
1191
|
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
86
1192
|
</xtce:Parameter>
|
|
87
|
-
<xtce:Parameter name="PKT_LEN" parameterTypeRef="
|
|
1193
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="PKT_LEN">
|
|
88
1194
|
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
89
1195
|
</xtce:Parameter>
|
|
90
|
-
<xtce:Parameter name="SHCOARSE" parameterTypeRef="
|
|
1196
|
+
<xtce:Parameter name="SWP_HK.SHCOARSE" parameterTypeRef="SWP_HK.SHCOARSE">
|
|
91
1197
|
<xtce:LongDescription>CCSDS Packet Time (SCLK) at which C&DH software created packet)</xtce:LongDescription>
|
|
92
1198
|
</xtce:Parameter>
|
|
93
|
-
|
|
94
|
-
<xtce:Parameter name="MODE" parameterTypeRef="MODE_ENUM">
|
|
95
|
-
<xtce:LongDescription>LVENG, LVSCI, HVENG or HVSCI</xtce:LongDescription>
|
|
96
|
-
</xtce:Parameter>
|
|
97
|
-
<xtce:Parameter name="SPARE_1" parameterTypeRef="UINT2">
|
|
98
|
-
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
99
|
-
</xtce:Parameter>
|
|
100
|
-
<!-- Common Parameter -->
|
|
101
|
-
<!-- SWP_SCIENCE Parameter start -->
|
|
102
|
-
<xtce:Parameter name="SEQ_NUMBER" parameterTypeRef="UINT4">
|
|
103
|
-
<xtce:LongDescription>Sequence number of set of steps in energy sweep</xtce:LongDescription>
|
|
104
|
-
</xtce:Parameter>
|
|
105
|
-
<xtce:Parameter name="SWEEP_TABLE" parameterTypeRef="UINT4">
|
|
106
|
-
<xtce:LongDescription>Sweep ID</xtce:LongDescription>
|
|
107
|
-
</xtce:Parameter>
|
|
108
|
-
<xtce:Parameter name="PLAN_ID_SCIENCE" parameterTypeRef="UINT4">
|
|
109
|
-
<xtce:LongDescription>Plan ID</xtce:LongDescription>
|
|
110
|
-
</xtce:Parameter>
|
|
111
|
-
<xtce:Parameter name="ESA_LVL5" parameterTypeRef="UINT13">
|
|
112
|
-
<xtce:LongDescription>ESA level during sixth 1/6 second</xtce:LongDescription>
|
|
113
|
-
</xtce:Parameter>
|
|
114
|
-
<xtce:Parameter name="SPARE_2_SCIENCE" parameterTypeRef="UINT9">
|
|
115
|
-
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
116
|
-
</xtce:Parameter>
|
|
117
|
-
<xtce:Parameter name="PCEM_RNG_ST0" parameterTypeRef="COMPRESSION_ENUM">
|
|
118
|
-
<xtce:LongDescription>PCEM count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
119
|
-
</xtce:Parameter>
|
|
120
|
-
<xtce:Parameter name="SCEM_RNG_ST0" parameterTypeRef="COMPRESSION_ENUM">
|
|
121
|
-
<xtce:LongDescription>SCEM count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
122
|
-
</xtce:Parameter>
|
|
123
|
-
<xtce:Parameter name="COIN_RNG_ST0" parameterTypeRef="COMPRESSION_ENUM">
|
|
124
|
-
<xtce:LongDescription>Coincidence count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
125
|
-
</xtce:Parameter>
|
|
126
|
-
<xtce:Parameter name="PCEM_RNG_ST1" parameterTypeRef="COMPRESSION_ENUM">
|
|
127
|
-
<xtce:LongDescription>PCEM count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
128
|
-
</xtce:Parameter>
|
|
129
|
-
<xtce:Parameter name="SCEM_RNG_ST1" parameterTypeRef="COMPRESSION_ENUM">
|
|
130
|
-
<xtce:LongDescription>SCEM count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
131
|
-
</xtce:Parameter>
|
|
132
|
-
<xtce:Parameter name="COIN_RNG_ST1" parameterTypeRef="COMPRESSION_ENUM">
|
|
133
|
-
<xtce:LongDescription>Coincidence count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
134
|
-
</xtce:Parameter>
|
|
135
|
-
<xtce:Parameter name="PCEM_RNG_ST2" parameterTypeRef="COMPRESSION_ENUM">
|
|
136
|
-
<xtce:LongDescription>PCEM count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
137
|
-
</xtce:Parameter>
|
|
138
|
-
<xtce:Parameter name="SCEM_RNG_ST2" parameterTypeRef="COMPRESSION_ENUM">
|
|
139
|
-
<xtce:LongDescription>SCEM count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
140
|
-
</xtce:Parameter>
|
|
141
|
-
<xtce:Parameter name="COIN_RNG_ST2" parameterTypeRef="COMPRESSION_ENUM">
|
|
142
|
-
<xtce:LongDescription>Coincidence count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
143
|
-
</xtce:Parameter>
|
|
144
|
-
<xtce:Parameter name="PCEM_RNG_ST3" parameterTypeRef="COMPRESSION_ENUM">
|
|
145
|
-
<xtce:LongDescription>PCEM count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
146
|
-
</xtce:Parameter>
|
|
147
|
-
<xtce:Parameter name="SCEM_RNG_ST3" parameterTypeRef="COMPRESSION_ENUM">
|
|
148
|
-
<xtce:LongDescription>SCEM count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
149
|
-
</xtce:Parameter>
|
|
150
|
-
<xtce:Parameter name="COIN_RNG_ST3" parameterTypeRef="COMPRESSION_ENUM">
|
|
151
|
-
<xtce:LongDescription>Coincidence count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
152
|
-
</xtce:Parameter>
|
|
153
|
-
<xtce:Parameter name="PCEM_RNG_ST4" parameterTypeRef="COMPRESSION_ENUM">
|
|
154
|
-
<xtce:LongDescription>PCEM count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
155
|
-
</xtce:Parameter>
|
|
156
|
-
<xtce:Parameter name="SCEM_RNG_ST4" parameterTypeRef="COMPRESSION_ENUM">
|
|
157
|
-
<xtce:LongDescription>SCEM count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
158
|
-
</xtce:Parameter>
|
|
159
|
-
<xtce:Parameter name="COIN_RNG_ST4" parameterTypeRef="COMPRESSION_ENUM">
|
|
160
|
-
<xtce:LongDescription>Coincidence count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
161
|
-
</xtce:Parameter>
|
|
162
|
-
<xtce:Parameter name="PCEM_RNG_ST5" parameterTypeRef="COMPRESSION_ENUM">
|
|
163
|
-
<xtce:LongDescription>PCEM count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
164
|
-
</xtce:Parameter>
|
|
165
|
-
<xtce:Parameter name="SCEM_RNG_ST5" parameterTypeRef="COMPRESSION_ENUM">
|
|
166
|
-
<xtce:LongDescription>SCEM count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
167
|
-
</xtce:Parameter>
|
|
168
|
-
<xtce:Parameter name="COIN_RNG_ST5" parameterTypeRef="COMPRESSION_ENUM">
|
|
169
|
-
<xtce:LongDescription>Coincidence count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
170
|
-
</xtce:Parameter>
|
|
171
|
-
<xtce:Parameter name="PCEM_CNT0" parameterTypeRef="UINT16">
|
|
172
|
-
<xtce:LongDescription>1st Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
173
|
-
</xtce:Parameter>
|
|
174
|
-
<xtce:Parameter name="SCEM_CNT0" parameterTypeRef="UINT16">
|
|
175
|
-
<xtce:LongDescription>1st Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
176
|
-
</xtce:Parameter>
|
|
177
|
-
<xtce:Parameter name="COIN_CNT0" parameterTypeRef="UINT16">
|
|
178
|
-
<xtce:LongDescription>1st Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
179
|
-
</xtce:Parameter>
|
|
180
|
-
<xtce:Parameter name="PCEM_CNT1" parameterTypeRef="UINT16">
|
|
181
|
-
<xtce:LongDescription>2nd Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
182
|
-
</xtce:Parameter>
|
|
183
|
-
<xtce:Parameter name="SCEM_CNT1" parameterTypeRef="UINT16">
|
|
184
|
-
<xtce:LongDescription>2nd Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
185
|
-
</xtce:Parameter>
|
|
186
|
-
<xtce:Parameter name="COIN_CNT1" parameterTypeRef="UINT16">
|
|
187
|
-
<xtce:LongDescription>2nd Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
188
|
-
</xtce:Parameter>
|
|
189
|
-
<xtce:Parameter name="PCEM_CNT2" parameterTypeRef="UINT16">
|
|
190
|
-
<xtce:LongDescription>3rd Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
191
|
-
</xtce:Parameter>
|
|
192
|
-
<xtce:Parameter name="SCEM_CNT2" parameterTypeRef="UINT16">
|
|
193
|
-
<xtce:LongDescription>3rd Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
194
|
-
</xtce:Parameter>
|
|
195
|
-
<xtce:Parameter name="COIN_CNT2" parameterTypeRef="UINT16">
|
|
196
|
-
<xtce:LongDescription>3rd Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
197
|
-
</xtce:Parameter>
|
|
198
|
-
<xtce:Parameter name="PCEM_CNT3" parameterTypeRef="UINT16">
|
|
199
|
-
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
200
|
-
</xtce:Parameter>
|
|
201
|
-
<xtce:Parameter name="SCEM_CNT3" parameterTypeRef="UINT16">
|
|
202
|
-
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
203
|
-
</xtce:Parameter>
|
|
204
|
-
<xtce:Parameter name="COIN_CNT3" parameterTypeRef="UINT16">
|
|
205
|
-
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
206
|
-
</xtce:Parameter>
|
|
207
|
-
<xtce:Parameter name="PCEM_CNT4" parameterTypeRef="UINT16">
|
|
208
|
-
<xtce:LongDescription>5th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
209
|
-
</xtce:Parameter>
|
|
210
|
-
<xtce:Parameter name="SCEM_CNT4" parameterTypeRef="UINT16">
|
|
211
|
-
<xtce:LongDescription>5th Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
212
|
-
</xtce:Parameter>
|
|
213
|
-
<xtce:Parameter name="COIN_CNT4" parameterTypeRef="UINT16">
|
|
214
|
-
<xtce:LongDescription>5th Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
215
|
-
</xtce:Parameter>
|
|
216
|
-
<xtce:Parameter name="PCEM_CNT5" parameterTypeRef="UINT16">
|
|
217
|
-
<xtce:LongDescription>6th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
218
|
-
</xtce:Parameter>
|
|
219
|
-
<xtce:Parameter name="SCEM_CNT5" parameterTypeRef="UINT16">
|
|
220
|
-
<xtce:LongDescription>6th Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
221
|
-
</xtce:Parameter>
|
|
222
|
-
<xtce:Parameter name="COIN_CNT5" parameterTypeRef="UINT16">
|
|
223
|
-
<xtce:LongDescription>6th Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
224
|
-
</xtce:Parameter>
|
|
225
|
-
<!-- SWP_SCIENCE Parameter end -->
|
|
226
|
-
<!-- SWP_HK parameter start -->
|
|
227
|
-
<xtce:Parameter name="CMDEXE" parameterTypeRef="UINT8">
|
|
1199
|
+
<xtce:Parameter name="SWP_HK.CMDEXE" parameterTypeRef="SWP_HK.CMDEXE">
|
|
228
1200
|
<xtce:LongDescription>Cumulative modulo-256 count of successfully executed commands</xtce:LongDescription>
|
|
229
1201
|
</xtce:Parameter>
|
|
230
|
-
<xtce:Parameter name="CMDRJCT" parameterTypeRef="
|
|
1202
|
+
<xtce:Parameter name="SWP_HK.CMDRJCT" parameterTypeRef="SWP_HK.CMDRJCT">
|
|
231
1203
|
<xtce:LongDescription>Cumulative modulo-256 count of rejected commands</xtce:LongDescription>
|
|
232
1204
|
</xtce:Parameter>
|
|
233
|
-
<xtce:Parameter name="LUT_CHOICE" parameterTypeRef="
|
|
1205
|
+
<xtce:Parameter name="SWP_HK.LUT_CHOICE" parameterTypeRef="SWP_HK.LUT_CHOICE">
|
|
234
1206
|
<xtce:LongDescription>Which LUT is in use</xtce:LongDescription>
|
|
235
1207
|
</xtce:Parameter>
|
|
236
|
-
<xtce:Parameter name="PCEM_SAFE" parameterTypeRef="
|
|
1208
|
+
<xtce:Parameter name="SWP_HK.PCEM_SAFE" parameterTypeRef="SWP_HK.PCEM_SAFE">
|
|
237
1209
|
<xtce:LongDescription>If the CEM interrupt occurs and dipping the supplies does not help within 3 (TBR) consecutive samples then SWAPI is safed.</xtce:LongDescription>
|
|
238
1210
|
</xtce:Parameter>
|
|
239
|
-
<xtce:Parameter name="SCEM_SAFE" parameterTypeRef="
|
|
1211
|
+
<xtce:Parameter name="SWP_HK.SCEM_SAFE" parameterTypeRef="SWP_HK.SCEM_SAFE">
|
|
240
1212
|
<xtce:LongDescription>If the CEM interrupt occurs and dipping the supplies does not help within 3 (TBR) consecutive samples then SWAPI is safed.</xtce:LongDescription>
|
|
241
1213
|
</xtce:Parameter>
|
|
242
|
-
<xtce:Parameter name="WDT_ST" parameterTypeRef="
|
|
1214
|
+
<xtce:Parameter name="SWP_HK.WDT_ST" parameterTypeRef="SWP_HK.WDT_ST">
|
|
243
1215
|
<xtce:LongDescription>SWAPI has rebooted due to a watchdog expiration.</xtce:LongDescription>
|
|
244
1216
|
</xtce:Parameter>
|
|
245
|
-
<xtce:Parameter name="RCV_SAFE_ST" parameterTypeRef="
|
|
1217
|
+
<xtce:Parameter name="SWP_HK.RCV_SAFE_ST" parameterTypeRef="SWP_HK.RCV_SAFE_ST">
|
|
246
1218
|
<xtce:LongDescription>SWAPI has received safe command from S/C</xtce:LongDescription>
|
|
247
1219
|
</xtce:Parameter>
|
|
248
|
-
<xtce:Parameter name="SAFE_ST" parameterTypeRef="
|
|
1220
|
+
<xtce:Parameter name="SWP_HK.SAFE_ST" parameterTypeRef="SWP_HK.SAFE_ST">
|
|
249
1221
|
<xtce:LongDescription>SWAPI has safed itself. The cause would be due to one of the following status bits.</xtce:LongDescription>
|
|
250
1222
|
</xtce:Parameter>
|
|
251
|
-
<xtce:Parameter name="PCEM_RATE_ST" parameterTypeRef="
|
|
1223
|
+
<xtce:Parameter name="SWP_HK.PCEM_RATE_ST" parameterTypeRef="SWP_HK.PCEM_RATE_ST">
|
|
252
1224
|
<xtce:LongDescription>The count rate threshold for the PCEM counter has been exceeded once and has continued to be exceeded despite measures by SWAPIFW. The PCEM count rate threshold defaults to TBD but can be updated with command TBD.</xtce:LongDescription>
|
|
253
1225
|
</xtce:Parameter>
|
|
254
|
-
<xtce:Parameter name="SCEM_RATE_ST" parameterTypeRef="
|
|
1226
|
+
<xtce:Parameter name="SWP_HK.SCEM_RATE_ST" parameterTypeRef="SWP_HK.SCEM_RATE_ST">
|
|
255
1227
|
<xtce:LongDescription>The count rate threshold for the SCEM counter has been exceeded once and has continued to be exceeded despite measures by SWAPIFW. The SCEM count rate threshold defaults to TBD but can be updated with command TBD.</xtce:LongDescription>
|
|
256
1228
|
</xtce:Parameter>
|
|
257
|
-
<xtce:Parameter name="PCEM_I_ST" parameterTypeRef="
|
|
1229
|
+
<xtce:Parameter name="SWP_HK.PCEM_I_ST" parameterTypeRef="SWP_HK.PCEM_I_ST">
|
|
258
1230
|
<xtce:LongDescription>The current threshold for the PCEM has been exceeded once and has continued to be exceeded despite measures by SWAPIFW. An overcurrent on the CEM's collectively trips an interrupt which the SWAPIFW handles. The SWAPIFW also collects the PCEM current monitor for comparison at 1 Hz. The CEM current rate threshold defaults to TBD but can be updated with command TBD.</xtce:LongDescription>
|
|
259
1231
|
</xtce:Parameter>
|
|
260
|
-
<xtce:Parameter name="SCEM_I_ST" parameterTypeRef="
|
|
1232
|
+
<xtce:Parameter name="SWP_HK.SCEM_I_ST" parameterTypeRef="SWP_HK.SCEM_I_ST">
|
|
261
1233
|
<xtce:LongDescription>The current threshold for the SCEM has been exceeded once and has continued to be exceeded despite measures by SWAPIFW. An overcurrent on the CEMs collectively trips an interrupt which the SWAPIFW handles. The SWAPIFW also collects the SCEM current monitor for comparison at 1 Hz. The CEM current rate threshold defaults to TBD but can be updated with command TBD.</xtce:LongDescription>
|
|
262
1234
|
</xtce:Parameter>
|
|
263
|
-
<xtce:Parameter name="PCEM_V_ST" parameterTypeRef="
|
|
1235
|
+
<xtce:Parameter name="SWP_HK.PCEM_V_ST" parameterTypeRef="SWP_HK.PCEM_V_ST">
|
|
264
1236
|
<xtce:LongDescription>The voltage tolerance for the PCEM for its current setting has been exceeded. The PCEM voltage tolerance is set by SWAPIFW and cannot be altered by command.</xtce:LongDescription>
|
|
265
1237
|
</xtce:Parameter>
|
|
266
|
-
<xtce:Parameter name="SCEM_V_ST" parameterTypeRef="
|
|
1238
|
+
<xtce:Parameter name="SWP_HK.SCEM_V_ST" parameterTypeRef="SWP_HK.SCEM_V_ST">
|
|
267
1239
|
<xtce:LongDescription>The voltage tolerance for the SCEM for its current setting has been exceeded. The SCEM voltage tolerance is set by SWAPIFW and cannot be altered by command.</xtce:LongDescription>
|
|
268
1240
|
</xtce:Parameter>
|
|
269
|
-
<xtce:Parameter name="LVPS_V_ST" parameterTypeRef="
|
|
1241
|
+
<xtce:Parameter name="SWP_HK.LVPS_V_ST" parameterTypeRef="SWP_HK.LVPS_V_ST">
|
|
270
1242
|
<xtce:LongDescription>The voltage tolerance for +5 V or -5 V supply has been exceeded.</xtce:LongDescription>
|
|
271
1243
|
</xtce:Parameter>
|
|
272
|
-
<xtce:Parameter name="LVPS_I_ST" parameterTypeRef="
|
|
1244
|
+
<xtce:Parameter name="SWP_HK.LVPS_I_ST" parameterTypeRef="SWP_HK.LVPS_I_ST">
|
|
273
1245
|
<xtce:LongDescription>The current tolerance for +5 V or -5 V supply has been exceeded.</xtce:LongDescription>
|
|
274
1246
|
</xtce:Parameter>
|
|
275
|
-
<xtce:Parameter name="OVR_T_ST" parameterTypeRef="
|
|
1247
|
+
<xtce:Parameter name="SWP_HK.OVR_T_ST" parameterTypeRef="SWP_HK.OVR_T_ST">
|
|
276
1248
|
<xtce:LongDescription>The upper temperature limit of any one of the thermistors has been exceeded.</xtce:LongDescription>
|
|
277
1249
|
</xtce:Parameter>
|
|
278
|
-
<xtce:Parameter name="UND_T_ST" parameterTypeRef="
|
|
1250
|
+
<xtce:Parameter name="SWP_HK.UND_T_ST" parameterTypeRef="SWP_HK.UND_T_ST">
|
|
279
1251
|
<xtce:LongDescription>The lower temperature limit of any one of the thermistors has been exceeded. The lower temperature limit is set by SWAPIFW and cannot be altered by command.</xtce:LongDescription>
|
|
280
1252
|
</xtce:Parameter>
|
|
281
|
-
<xtce:Parameter name="
|
|
1253
|
+
<xtce:Parameter name="SWP_HK.MODE" parameterTypeRef="SWP_HK.MODE">
|
|
1254
|
+
<xtce:LongDescription>Enumerated type representing each of the modes</xtce:LongDescription>
|
|
1255
|
+
</xtce:Parameter>
|
|
1256
|
+
<xtce:Parameter name="SWP_HK.MEMDP_ST" parameterTypeRef="SWP_HK.MEMDP_ST">
|
|
282
1257
|
<xtce:LongDescription>MEMDP state</xtce:LongDescription>
|
|
283
1258
|
</xtce:Parameter>
|
|
284
|
-
<xtce:Parameter name="SENSOR_T" parameterTypeRef="
|
|
1259
|
+
<xtce:Parameter name="SWP_HK.SENSOR_T" parameterTypeRef="SWP_HK.SENSOR_T">
|
|
285
1260
|
<xtce:LongDescription>Temperature of sensor detector. AD MUX = 0x10</xtce:LongDescription>
|
|
286
1261
|
</xtce:Parameter>
|
|
287
|
-
<xtce:Parameter name="HVSUPP_T" parameterTypeRef="
|
|
1262
|
+
<xtce:Parameter name="SWP_HK.HVSUPP_T" parameterTypeRef="SWP_HK.HVSUPP_T">
|
|
288
1263
|
<xtce:LongDescription>Temperature of hvps. AD MUX = 0x11</xtce:LongDescription>
|
|
289
1264
|
</xtce:Parameter>
|
|
290
|
-
<xtce:Parameter name="CNTRLR_T" parameterTypeRef="
|
|
1265
|
+
<xtce:Parameter name="SWP_HK.CNTRLR_T" parameterTypeRef="SWP_HK.CNTRLR_T">
|
|
291
1266
|
<xtce:LongDescription>Temperature of controller. AD MUX = 0x12</xtce:LongDescription>
|
|
292
1267
|
</xtce:Parameter>
|
|
293
|
-
<xtce:Parameter name="PCEM_V" parameterTypeRef="
|
|
1268
|
+
<xtce:Parameter name="SWP_HK.PCEM_V" parameterTypeRef="SWP_HK.PCEM_V">
|
|
294
1269
|
<xtce:LongDescription>Volt mon of primary channel electron multiplier high-voltage power supply. AD MUX = 0x02</xtce:LongDescription>
|
|
295
1270
|
</xtce:Parameter>
|
|
296
|
-
<xtce:Parameter name="SCEM_V" parameterTypeRef="
|
|
1271
|
+
<xtce:Parameter name="SWP_HK.SCEM_V" parameterTypeRef="SWP_HK.SCEM_V">
|
|
297
1272
|
<xtce:LongDescription>Volt mon of secondary channel electron multiplier high-voltage power supply. AD MUX = 0x03</xtce:LongDescription>
|
|
298
1273
|
</xtce:Parameter>
|
|
299
|
-
<xtce:Parameter name="PCEM_I" parameterTypeRef="
|
|
1274
|
+
<xtce:Parameter name="SWP_HK.PCEM_I" parameterTypeRef="SWP_HK.PCEM_I">
|
|
300
1275
|
<xtce:LongDescription>Strip current monitor of primary electron multiplier high-voltage power supply. AD MUX = 0x04</xtce:LongDescription>
|
|
301
1276
|
</xtce:Parameter>
|
|
302
|
-
<xtce:Parameter name="SCEM_I" parameterTypeRef="
|
|
1277
|
+
<xtce:Parameter name="SWP_HK.SCEM_I" parameterTypeRef="SWP_HK.SCEM_I">
|
|
303
1278
|
<xtce:LongDescription>Strip current monitor of secondary electron multiplier high-voltage power supply. AD MUX = 0x05</xtce:LongDescription>
|
|
304
1279
|
</xtce:Parameter>
|
|
305
|
-
<xtce:Parameter name="P5_V" parameterTypeRef="
|
|
1280
|
+
<xtce:Parameter name="SWP_HK.P5_V" parameterTypeRef="SWP_HK.P5_V">
|
|
306
1281
|
<xtce:LongDescription>Volt mon of +5 V power supply. AD MUX = 0x0C</xtce:LongDescription>
|
|
307
1282
|
</xtce:Parameter>
|
|
308
|
-
<xtce:Parameter name="N5_V" parameterTypeRef="
|
|
1283
|
+
<xtce:Parameter name="SWP_HK.N5_V" parameterTypeRef="SWP_HK.N5_V">
|
|
309
1284
|
<xtce:LongDescription>Volt mon of -5 V power supply. AD MUX = 0x0D</xtce:LongDescription>
|
|
310
1285
|
</xtce:Parameter>
|
|
311
|
-
<xtce:Parameter name="P5_I" parameterTypeRef="
|
|
1286
|
+
<xtce:Parameter name="SWP_HK.P5_I" parameterTypeRef="SWP_HK.P5_I">
|
|
312
1287
|
<xtce:LongDescription>Current monitor of +5 V power supply. AD MUX = 0x0E</xtce:LongDescription>
|
|
313
1288
|
</xtce:Parameter>
|
|
314
|
-
<xtce:Parameter name="N5_I" parameterTypeRef="
|
|
1289
|
+
<xtce:Parameter name="SWP_HK.N5_I" parameterTypeRef="SWP_HK.N5_I">
|
|
315
1290
|
<xtce:LongDescription>Current monitor of -5 V power supply. AD MUX = 0x0F</xtce:LongDescription>
|
|
316
1291
|
</xtce:Parameter>
|
|
317
|
-
<xtce:Parameter name="SWP_REV" parameterTypeRef="
|
|
1292
|
+
<xtce:Parameter name="SWP_HK.SWP_REV" parameterTypeRef="SWP_HK.SWP_REV">
|
|
318
1293
|
<xtce:LongDescription>Revision number for the SWAPI software</xtce:LongDescription>
|
|
319
1294
|
</xtce:Parameter>
|
|
320
|
-
<xtce:Parameter name="LAST_OPCODE" parameterTypeRef="
|
|
1295
|
+
<xtce:Parameter name="SWP_HK.LAST_OPCODE" parameterTypeRef="SWP_HK.LAST_OPCODE">
|
|
321
1296
|
<xtce:LongDescription>Opcode of last executed command</xtce:LongDescription>
|
|
322
1297
|
</xtce:Parameter>
|
|
323
|
-
<xtce:Parameter name="PHD_LLD1_LVL" parameterTypeRef="
|
|
1298
|
+
<xtce:Parameter name="SWP_HK.PHD_LLD1_LVL" parameterTypeRef="SWP_HK.PHD_LLD1_LVL">
|
|
324
1299
|
<xtce:LongDescription>DAC level of PHD LLD</xtce:LongDescription>
|
|
325
1300
|
</xtce:Parameter>
|
|
326
|
-
<xtce:Parameter name="MEMLD_ST" parameterTypeRef="
|
|
1301
|
+
<xtce:Parameter name="SWP_HK.MEMLD_ST" parameterTypeRef="SWP_HK.MEMLD_ST">
|
|
327
1302
|
<xtce:LongDescription>MEMLD state</xtce:LongDescription>
|
|
328
1303
|
</xtce:Parameter>
|
|
329
|
-
<xtce:Parameter name="BOOT_ST" parameterTypeRef="
|
|
1304
|
+
<xtce:Parameter name="SWP_HK.BOOT_ST" parameterTypeRef="SWP_HK.BOOT_ST">
|
|
330
1305
|
<xtce:LongDescription>Indicates which application is running (Boot or App)</xtce:LongDescription>
|
|
331
1306
|
</xtce:Parameter>
|
|
332
|
-
<xtce:Parameter name="ESA_ST" parameterTypeRef="
|
|
1307
|
+
<xtce:Parameter name="SWP_HK.ESA_ST" parameterTypeRef="SWP_HK.ESA_ST">
|
|
333
1308
|
<xtce:LongDescription>State of ESA Enable</xtce:LongDescription>
|
|
334
1309
|
</xtce:Parameter>
|
|
335
|
-
<xtce:Parameter name="PCEM_ST" parameterTypeRef="
|
|
1310
|
+
<xtce:Parameter name="SWP_HK.PCEM_ST" parameterTypeRef="SWP_HK.PCEM_ST">
|
|
336
1311
|
<xtce:LongDescription>State of primary channel electron multiplier disable/enable</xtce:LongDescription>
|
|
337
1312
|
</xtce:Parameter>
|
|
338
|
-
<xtce:Parameter name="SCEM_ST" parameterTypeRef="
|
|
1313
|
+
<xtce:Parameter name="SWP_HK.SCEM_ST" parameterTypeRef="SWP_HK.SCEM_ST">
|
|
339
1314
|
<xtce:LongDescription>State of secondary channel electron disable/enable</xtce:LongDescription>
|
|
340
1315
|
</xtce:Parameter>
|
|
341
|
-
<xtce:Parameter name="
|
|
1316
|
+
<xtce:Parameter name="SWP_HK.SPARE_1" parameterTypeRef="SWP_HK.SPARE_1">
|
|
1317
|
+
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
1318
|
+
</xtce:Parameter>
|
|
1319
|
+
<xtce:Parameter name="SWP_HK.PCEM_CNT_ST" parameterTypeRef="SWP_HK.PCEM_CNT_ST">
|
|
342
1320
|
<xtce:LongDescription>The PCEM count rate was tripped but handled by SWAPIFW</xtce:LongDescription>
|
|
343
1321
|
</xtce:Parameter>
|
|
344
|
-
<xtce:Parameter name="SCEM_CNT_ST" parameterTypeRef="
|
|
1322
|
+
<xtce:Parameter name="SWP_HK.SCEM_CNT_ST" parameterTypeRef="SWP_HK.SCEM_CNT_ST">
|
|
345
1323
|
<xtce:LongDescription>The SCEM count rate was tripped but handled by SWAPIFW</xtce:LongDescription>
|
|
346
1324
|
</xtce:Parameter>
|
|
347
|
-
<xtce:Parameter name="PCEM_I_THR" parameterTypeRef="
|
|
1325
|
+
<xtce:Parameter name="SWP_HK.PCEM_I_THR" parameterTypeRef="SWP_HK.PCEM_I_THR">
|
|
348
1326
|
<xtce:LongDescription>The level at which safety algorithms for the PCEM monitor are tripped due to overcurrent in the PCEM monitor</xtce:LongDescription>
|
|
349
1327
|
</xtce:Parameter>
|
|
350
|
-
<xtce:Parameter name="SCEM_I_THR" parameterTypeRef="
|
|
1328
|
+
<xtce:Parameter name="SWP_HK.SCEM_I_THR" parameterTypeRef="SWP_HK.SCEM_I_THR">
|
|
351
1329
|
<xtce:LongDescription>The level at which safety algorithms for the SCEM monitor are tripped due to overcurrent in the SCEM monitor</xtce:LongDescription>
|
|
352
1330
|
</xtce:Parameter>
|
|
353
|
-
<xtce:Parameter name="PCEM_LVL" parameterTypeRef="
|
|
1331
|
+
<xtce:Parameter name="SWP_HK.PCEM_LVL" parameterTypeRef="SWP_HK.PCEM_LVL">
|
|
354
1332
|
<xtce:LongDescription>PCEM DAC level</xtce:LongDescription>
|
|
355
1333
|
</xtce:Parameter>
|
|
356
|
-
<xtce:Parameter name="SCEM_LVL" parameterTypeRef="
|
|
1334
|
+
<xtce:Parameter name="SWP_HK.SCEM_LVL" parameterTypeRef="SWP_HK.SCEM_LVL">
|
|
357
1335
|
<xtce:LongDescription>SCEM DAC level</xtce:LongDescription>
|
|
358
1336
|
</xtce:Parameter>
|
|
359
|
-
<xtce:Parameter name="AGND_VOLT" parameterTypeRef="
|
|
1337
|
+
<xtce:Parameter name="SWP_HK.AGND_VOLT" parameterTypeRef="SWP_HK.AGND_VOLT">
|
|
360
1338
|
<xtce:LongDescription>Volt mon of analog ground.</xtce:LongDescription>
|
|
361
1339
|
</xtce:Parameter>
|
|
362
|
-
<xtce:Parameter name="CEM_I" parameterTypeRef="
|
|
1340
|
+
<xtce:Parameter name="SWP_HK.CEM_I" parameterTypeRef="SWP_HK.CEM_I">
|
|
363
1341
|
<xtce:LongDescription>The current limit monitor for the PCEM and SCEM at which the SWAPI software brings down the PCEM and SCEM by TBD volts for TBD seconds before they are brought back up.</xtce:LongDescription>
|
|
364
1342
|
</xtce:Parameter>
|
|
365
|
-
<xtce:Parameter name="ESA_V" parameterTypeRef="
|
|
1343
|
+
<xtce:Parameter name="SWP_HK.ESA_V" parameterTypeRef="SWP_HK.ESA_V">
|
|
366
1344
|
<xtce:LongDescription>Volt mon of electrostatic analyzer high-voltage power supply.</xtce:LongDescription>
|
|
367
1345
|
</xtce:Parameter>
|
|
368
|
-
<xtce:Parameter name="P2_5_V" parameterTypeRef="
|
|
1346
|
+
<xtce:Parameter name="SWP_HK.P2_5_V" parameterTypeRef="SWP_HK.P2_5_V">
|
|
369
1347
|
<xtce:LongDescription>Volt mon of +2.5 V reference.</xtce:LongDescription>
|
|
370
1348
|
</xtce:Parameter>
|
|
371
|
-
<xtce:Parameter name="PHD_LLD1_V" parameterTypeRef="
|
|
1349
|
+
<xtce:Parameter name="SWP_HK.PHD_LLD1_V" parameterTypeRef="SWP_HK.PHD_LLD1_V">
|
|
372
1350
|
<xtce:LongDescription>Volt mon of PHD LLD.</xtce:LongDescription>
|
|
373
1351
|
</xtce:Parameter>
|
|
374
|
-
<xtce:Parameter name="
|
|
1352
|
+
<xtce:Parameter name="SWP_HK.SPARE_2" parameterTypeRef="SWP_HK.SPARE_2">
|
|
375
1353
|
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
376
1354
|
</xtce:Parameter>
|
|
377
|
-
<xtce:Parameter name="PCEM_RATELIM" parameterTypeRef="
|
|
1355
|
+
<xtce:Parameter name="SWP_HK.PCEM_RATELIM" parameterTypeRef="SWP_HK.PCEM_RATELIM">
|
|
378
1356
|
<xtce:LongDescription>The count value at which the primary CEM safety limit is set. If this limit is exceeded twice SWAPI is safed</xtce:LongDescription>
|
|
379
1357
|
</xtce:Parameter>
|
|
380
|
-
<xtce:Parameter name="SCEM_RATELIM" parameterTypeRef="
|
|
1358
|
+
<xtce:Parameter name="SWP_HK.SCEM_RATELIM" parameterTypeRef="SWP_HK.SCEM_RATELIM">
|
|
381
1359
|
<xtce:LongDescription>The count value at which the secondary CEM safety limit is set. If this limit is exceeded twice SWAPI is safed</xtce:LongDescription>
|
|
382
1360
|
</xtce:Parameter>
|
|
383
|
-
<xtce:Parameter name="STIM_EN" parameterTypeRef="
|
|
1361
|
+
<xtce:Parameter name="SWP_HK.STIM_EN" parameterTypeRef="SWP_HK.STIM_EN">
|
|
384
1362
|
<xtce:LongDescription>State of whether the stim pulsers are enabled or disabled.</xtce:LongDescription>
|
|
385
1363
|
</xtce:Parameter>
|
|
386
|
-
<xtce:Parameter name="MISSED_PPS_CNT" parameterTypeRef="
|
|
1364
|
+
<xtce:Parameter name="SWP_HK.MISSED_PPS_CNT" parameterTypeRef="SWP_HK.MISSED_PPS_CNT">
|
|
387
1365
|
<xtce:LongDescription>Count of missed PPS signals (i.e. a PPS was not received when expected). This is a 2-bit counter that will freeze when it reaches 3. Can be cleared via the CLR_LATCHED command.</xtce:LongDescription>
|
|
388
1366
|
</xtce:Parameter>
|
|
389
|
-
<xtce:Parameter name="CEM_INT_LIM" parameterTypeRef="
|
|
1367
|
+
<xtce:Parameter name="SWP_HK.CEM_INT_LIM" parameterTypeRef="SWP_HK.CEM_INT_LIM">
|
|
390
1368
|
<xtce:LongDescription>The limit at which the PCEM and SCEM current triggers an interrupt to the SWAPI software.</xtce:LongDescription>
|
|
391
1369
|
</xtce:Parameter>
|
|
392
|
-
<xtce:Parameter name="CMD_ECHO_ST" parameterTypeRef="
|
|
1370
|
+
<xtce:Parameter name="SWP_HK.CMD_ECHO_ST" parameterTypeRef="SWP_HK.CMD_ECHO_ST">
|
|
393
1371
|
<xtce:LongDescription>A value that represents whether command echo is enabled or disabled</xtce:LongDescription>
|
|
394
1372
|
</xtce:Parameter>
|
|
395
|
-
<xtce:Parameter name="HV_PGSAFE_ST" parameterTypeRef="
|
|
1373
|
+
<xtce:Parameter name="SWP_HK.HV_PGSAFE_ST" parameterTypeRef="SWP_HK.HV_PGSAFE_ST">
|
|
396
1374
|
<xtce:LongDescription>State of disable/safe/arm plug</xtce:LongDescription>
|
|
397
1375
|
</xtce:Parameter>
|
|
398
|
-
<xtce:Parameter name="HV_ARM_ST" parameterTypeRef="
|
|
1376
|
+
<xtce:Parameter name="SWP_HK.HV_ARM_ST" parameterTypeRef="SWP_HK.HV_ARM_ST">
|
|
399
1377
|
<xtce:LongDescription>State of high-voltage software disable/enable</xtce:LongDescription>
|
|
400
1378
|
</xtce:Parameter>
|
|
401
|
-
<xtce:Parameter name="SPARE_3" parameterTypeRef="
|
|
1379
|
+
<xtce:Parameter name="SWP_HK.SPARE_3" parameterTypeRef="SWP_HK.SPARE_3">
|
|
402
1380
|
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
403
1381
|
</xtce:Parameter>
|
|
404
|
-
<xtce:Parameter name="CEM_INT_DIP" parameterTypeRef="
|
|
1382
|
+
<xtce:Parameter name="SWP_HK.CEM_INT_DIP" parameterTypeRef="SWP_HK.CEM_INT_DIP">
|
|
405
1383
|
<xtce:LongDescription>The number of counts to dip the CEM supplies when a CEM current interrupt occurs</xtce:LongDescription>
|
|
406
1384
|
</xtce:Parameter>
|
|
407
|
-
<xtce:Parameter name="
|
|
1385
|
+
<xtce:Parameter name="SWP_HK.PLAN_ID" parameterTypeRef="SWP_HK.PLAN_ID">
|
|
408
1386
|
<xtce:LongDescription>The PLAN ID used for the current science sweeping mode if any.</xtce:LongDescription>
|
|
409
1387
|
</xtce:Parameter>
|
|
410
|
-
<xtce:Parameter name="SWEEP_ID" parameterTypeRef="
|
|
1388
|
+
<xtce:Parameter name="SWP_HK.SWEEP_ID" parameterTypeRef="SWP_HK.SWEEP_ID">
|
|
411
1389
|
<xtce:LongDescription>Sweep table ID within the PLAN ID that is being used for the current science sweeping mode.</xtce:LongDescription>
|
|
412
1390
|
</xtce:Parameter>
|
|
413
|
-
<xtce:Parameter name="PCEM_V1_ST" parameterTypeRef="
|
|
1391
|
+
<xtce:Parameter name="SWP_HK.PCEM_V1_ST" parameterTypeRef="SWP_HK.PCEM_V1_ST">
|
|
414
1392
|
<xtce:LongDescription>If the PCEM voltage is out of tolerance for only 0.5 second this bit is asserted.</xtce:LongDescription>
|
|
415
1393
|
</xtce:Parameter>
|
|
416
|
-
<xtce:Parameter name="PCEM_I1_ST" parameterTypeRef="
|
|
1394
|
+
<xtce:Parameter name="SWP_HK.PCEM_I1_ST" parameterTypeRef="SWP_HK.PCEM_I1_ST">
|
|
417
1395
|
<xtce:LongDescription>If the PCEM current is out of tolerance for only 0.5 second this bit is asserted.</xtce:LongDescription>
|
|
418
1396
|
</xtce:Parameter>
|
|
419
|
-
<xtce:Parameter name="SCEM_V1_ST" parameterTypeRef="
|
|
1397
|
+
<xtce:Parameter name="SWP_HK.SCEM_V1_ST" parameterTypeRef="SWP_HK.SCEM_V1_ST">
|
|
420
1398
|
<xtce:LongDescription>If the SCEM voltage is out of tolerance for only 0.5 second this bit is asserted.</xtce:LongDescription>
|
|
421
1399
|
</xtce:Parameter>
|
|
422
|
-
<xtce:Parameter name="SCEM_I1_ST" parameterTypeRef="
|
|
1400
|
+
<xtce:Parameter name="SWP_HK.SCEM_I1_ST" parameterTypeRef="SWP_HK.SCEM_I1_ST">
|
|
423
1401
|
<xtce:LongDescription>If the SCEM current is out of tolerance for only 0.5 second this bit is asserted.</xtce:LongDescription>
|
|
424
1402
|
</xtce:Parameter>
|
|
425
|
-
<xtce:Parameter name="PCEM_INT_ST" parameterTypeRef="
|
|
1403
|
+
<xtce:Parameter name="SWP_HK.PCEM_INT_ST" parameterTypeRef="SWP_HK.PCEM_INT_ST">
|
|
426
1404
|
<xtce:LongDescription>The PCEM current interrupt was tripped but handled by SWAPIFW</xtce:LongDescription>
|
|
427
1405
|
</xtce:Parameter>
|
|
428
|
-
<xtce:Parameter name="SCEM_INT_ST" parameterTypeRef="
|
|
1406
|
+
<xtce:Parameter name="SWP_HK.SCEM_INT_ST" parameterTypeRef="SWP_HK.SCEM_INT_ST">
|
|
429
1407
|
<xtce:LongDescription>The SCEM current interrupt was tripped but handled by SWAPIFW</xtce:LongDescription>
|
|
430
1408
|
</xtce:Parameter>
|
|
431
|
-
<xtce:Parameter name="EEP2_RDY" parameterTypeRef="
|
|
1409
|
+
<xtce:Parameter name="SWP_HK.EEP2_RDY" parameterTypeRef="SWP_HK.EEP2_RDY">
|
|
432
1410
|
<xtce:LongDescription>EEPROM 2 is ready to be written</xtce:LongDescription>
|
|
433
1411
|
</xtce:Parameter>
|
|
434
|
-
<xtce:Parameter name="EEP1_RDY" parameterTypeRef="
|
|
1412
|
+
<xtce:Parameter name="SWP_HK.EEP1_RDY" parameterTypeRef="SWP_HK.EEP1_RDY">
|
|
435
1413
|
<xtce:LongDescription>EEPROM 1 is ready to be written</xtce:LongDescription>
|
|
436
1414
|
</xtce:Parameter>
|
|
437
|
-
<xtce:Parameter name="FPGA_TYPE" parameterTypeRef="
|
|
1415
|
+
<xtce:Parameter name="SWP_HK.FPGA_TYPE" parameterTypeRef="SWP_HK.FPGA_TYPE">
|
|
438
1416
|
<xtce:LongDescription>Type number of the FPGA</xtce:LongDescription>
|
|
439
1417
|
</xtce:Parameter>
|
|
440
|
-
<xtce:Parameter name="FPGA_REV" parameterTypeRef="
|
|
1418
|
+
<xtce:Parameter name="SWP_HK.FPGA_REV" parameterTypeRef="SWP_HK.FPGA_REV">
|
|
441
1419
|
<xtce:LongDescription>Revision number of the FPGA</xtce:LongDescription>
|
|
442
1420
|
</xtce:Parameter>
|
|
443
|
-
<xtce:Parameter name="IAL_TLM" parameterTypeRef="
|
|
1421
|
+
<xtce:Parameter name="SWP_HK.IAL_TLM" parameterTypeRef="SWP_HK.IAL_TLM">
|
|
444
1422
|
<xtce:LongDescription>A value representing how often the I-ALiRT telemetry packet is output.</xtce:LongDescription>
|
|
445
1423
|
</xtce:Parameter>
|
|
446
|
-
<xtce:Parameter name="SCI_TLM" parameterTypeRef="
|
|
1424
|
+
<xtce:Parameter name="SWP_HK.SCI_TLM" parameterTypeRef="SWP_HK.SCI_TLM">
|
|
447
1425
|
<xtce:LongDescription>A value representing how often all of the 12-second science packets are output.</xtce:LongDescription>
|
|
448
1426
|
</xtce:Parameter>
|
|
449
|
-
<xtce:Parameter name="HK_TLM" parameterTypeRef="
|
|
1427
|
+
<xtce:Parameter name="SWP_HK.HK_TLM" parameterTypeRef="SWP_HK.HK_TLM">
|
|
450
1428
|
<xtce:LongDescription>A value representing a choice for how often the housekeeping packet is output.</xtce:LongDescription>
|
|
451
1429
|
</xtce:Parameter>
|
|
452
|
-
<xtce:Parameter name="SPARE_4" parameterTypeRef="
|
|
1430
|
+
<xtce:Parameter name="SWP_HK.SPARE_4" parameterTypeRef="SWP_HK.SPARE_4">
|
|
453
1431
|
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
454
1432
|
</xtce:Parameter>
|
|
455
|
-
<xtce:Parameter name="FPGA_PUP_ST" parameterTypeRef="
|
|
1433
|
+
<xtce:Parameter name="SWP_HK.FPGA_PUP_ST" parameterTypeRef="SWP_HK.FPGA_PUP_ST">
|
|
456
1434
|
<xtce:LongDescription>A status of the power on check of the FPGA initialization check - need to fix or make Spare</xtce:LongDescription>
|
|
457
1435
|
</xtce:Parameter>
|
|
458
|
-
<xtce:Parameter name="EEPL2_CKS_ST" parameterTypeRef="
|
|
1436
|
+
<xtce:Parameter name="SWP_HK.EEPL2_CKS_ST" parameterTypeRef="SWP_HK.EEPL2_CKS_ST">
|
|
459
1437
|
<xtce:LongDescription>A status of the power on check of the EEP_L2 checksum compared against a stored checksum</xtce:LongDescription>
|
|
460
1438
|
</xtce:Parameter>
|
|
461
|
-
<xtce:Parameter name="EEPL1_CKS_ST" parameterTypeRef="
|
|
1439
|
+
<xtce:Parameter name="SWP_HK.EEPL1_CKS_ST" parameterTypeRef="SWP_HK.EEPL1_CKS_ST">
|
|
462
1440
|
<xtce:LongDescription>A status of the power on check of EEP_L1 checksum compared against a stored checksum</xtce:LongDescription>
|
|
463
1441
|
</xtce:Parameter>
|
|
464
|
-
<xtce:Parameter name="RAM_D_ST" parameterTypeRef="
|
|
1442
|
+
<xtce:Parameter name="SWP_HK.RAM_D_ST" parameterTypeRef="SWP_HK.RAM_D_ST">
|
|
465
1443
|
<xtce:LongDescription>A status of the power on check of the RAM_D memory test</xtce:LongDescription>
|
|
466
1444
|
</xtce:Parameter>
|
|
467
|
-
<xtce:Parameter name="EEPC2_CKS_ST" parameterTypeRef="
|
|
1445
|
+
<xtce:Parameter name="SWP_HK.EEPC2_CKS_ST" parameterTypeRef="SWP_HK.EEPC2_CKS_ST">
|
|
468
1446
|
<xtce:LongDescription>A status of the power on check of the EEP_C2 checksum compared against a stored checksum</xtce:LongDescription>
|
|
469
1447
|
</xtce:Parameter>
|
|
470
|
-
<xtce:Parameter name="EEPC1_CKS_ST" parameterTypeRef="
|
|
1448
|
+
<xtce:Parameter name="SWP_HK.EEPC1_CKS_ST" parameterTypeRef="SWP_HK.EEPC1_CKS_ST">
|
|
471
1449
|
<xtce:LongDescription>A status of the power on check of the EEP_C1 checksum compared against a stored checksum</xtce:LongDescription>
|
|
472
1450
|
</xtce:Parameter>
|
|
473
|
-
<xtce:Parameter name="RAM_C_ST" parameterTypeRef="
|
|
1451
|
+
<xtce:Parameter name="SWP_HK.RAM_C_ST" parameterTypeRef="SWP_HK.RAM_C_ST">
|
|
474
1452
|
<xtce:LongDescription>A status of the power on check of the RAM_C memory test</xtce:LongDescription>
|
|
475
1453
|
</xtce:Parameter>
|
|
476
|
-
<xtce:Parameter name="PROM_CKS_ST" parameterTypeRef="
|
|
1454
|
+
<xtce:Parameter name="SWP_HK.PROM_CKS_ST" parameterTypeRef="SWP_HK.PROM_CKS_ST">
|
|
477
1455
|
<xtce:LongDescription>A status of the power on check of the PROM checksum compared against a stored checksum</xtce:LongDescription>
|
|
478
1456
|
</xtce:Parameter>
|
|
479
|
-
<xtce:Parameter name="LUT_REV" parameterTypeRef="
|
|
480
|
-
<xtce:ShortDescription>Lookup table version</xtce:ShortDescription>
|
|
1457
|
+
<xtce:Parameter name="SWP_HK.LUT_REV" parameterTypeRef="SWP_HK.LUT_REV" shortDescription="Lookup table version">
|
|
481
1458
|
<xtce:LongDescription>Lookup table version</xtce:LongDescription>
|
|
482
1459
|
</xtce:Parameter>
|
|
483
|
-
<xtce:Parameter name="P2V5D" parameterTypeRef="
|
|
1460
|
+
<xtce:Parameter name="SWP_HK.P2V5D" parameterTypeRef="SWP_HK.P2V5D">
|
|
484
1461
|
<xtce:LongDescription>2.5V Regulator for FPVA Core</xtce:LongDescription>
|
|
485
1462
|
</xtce:Parameter>
|
|
486
|
-
<xtce:Parameter name="P3V3_V_MON" parameterTypeRef="
|
|
1463
|
+
<xtce:Parameter name="SWP_HK.P3V3_V_MON" parameterTypeRef="SWP_HK.P3V3_V_MON">
|
|
487
1464
|
<xtce:LongDescription>3.3V Regulator for LVDS TX/RX</xtce:LongDescription>
|
|
488
1465
|
</xtce:Parameter>
|
|
489
|
-
<xtce:Parameter name="P_CEM_CMD_LVL_MON" parameterTypeRef="
|
|
1466
|
+
<xtce:Parameter name="SWP_HK.P_CEM_CMD_LVL_MON" parameterTypeRef="SWP_HK.P_CEM_CMD_LVL_MON">
|
|
490
1467
|
<xtce:LongDescription>PCEM Voltage Level Command</xtce:LongDescription>
|
|
491
1468
|
</xtce:Parameter>
|
|
492
|
-
<xtce:Parameter name="S_CEM_CMD_LVL_MON" parameterTypeRef="
|
|
1469
|
+
<xtce:Parameter name="SWP_HK.S_CEM_CMD_LVL_MON" parameterTypeRef="SWP_HK.S_CEM_CMD_LVL_MON">
|
|
493
1470
|
<xtce:LongDescription>SCEM Voltage Level Command</xtce:LongDescription>
|
|
494
1471
|
</xtce:Parameter>
|
|
495
|
-
<xtce:Parameter name="ESA_CMD_LVL_MON" parameterTypeRef="
|
|
1472
|
+
<xtce:Parameter name="SWP_HK.ESA_CMD_LVL_MON" parameterTypeRef="SWP_HK.ESA_CMD_LVL_MON">
|
|
496
1473
|
<xtce:LongDescription>ESA Voltage Level Command</xtce:LongDescription>
|
|
497
1474
|
</xtce:Parameter>
|
|
498
|
-
<xtce:Parameter name="PHD_LLD2_V" parameterTypeRef="
|
|
1475
|
+
<xtce:Parameter name="SWP_HK.PHD_LLD2_V" parameterTypeRef="SWP_HK.PHD_LLD2_V">
|
|
499
1476
|
<xtce:LongDescription>SCEM LLD Threshold</xtce:LongDescription>
|
|
500
1477
|
</xtce:Parameter>
|
|
501
|
-
<xtce:Parameter name="SPARE_5" parameterTypeRef="
|
|
1478
|
+
<xtce:Parameter name="SWP_HK.SPARE_5" parameterTypeRef="SWP_HK.SPARE_5">
|
|
502
1479
|
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
503
1480
|
</xtce:Parameter>
|
|
504
|
-
<xtce:Parameter name="PHD_LLD2_LVL" parameterTypeRef="
|
|
1481
|
+
<xtce:Parameter name="SWP_HK.PHD_LLD2_LVL" parameterTypeRef="SWP_HK.PHD_LLD2_LVL">
|
|
505
1482
|
<xtce:LongDescription>DAC level of PHD LLD 2</xtce:LongDescription>
|
|
506
1483
|
</xtce:Parameter>
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
<xtce:Parameter name="SPARE_1_AUT" parameterTypeRef="UINT6">
|
|
510
|
-
<xtce:LongDescription>DAC level of PHD LLD 2</xtce:LongDescription>
|
|
1484
|
+
<xtce:Parameter name="SWP_HK.CHKSUM" parameterTypeRef="SWP_HK.CHKSUM" shortDescription="Packet checksum">
|
|
1485
|
+
<xtce:LongDescription>XOR checksum starting with beginning of CCSDS header to the byte prior to this field</xtce:LongDescription>
|
|
511
1486
|
</xtce:Parameter>
|
|
512
|
-
|
|
513
|
-
<xtce:LongDescription>
|
|
1487
|
+
<xtce:Parameter name="SWP_SCI.SHCOARSE" parameterTypeRef="SWP_SCI.SHCOARSE">
|
|
1488
|
+
<xtce:LongDescription>CCSDS Packet Time (SCLK) at which C&DH software created packet)</xtce:LongDescription>
|
|
1489
|
+
</xtce:Parameter>
|
|
1490
|
+
<xtce:Parameter name="SWP_SCI.SEQ_NUMBER" parameterTypeRef="SWP_SCI.SEQ_NUMBER">
|
|
1491
|
+
<xtce:LongDescription>Sequence number of set of steps in energy sweep</xtce:LongDescription>
|
|
514
1492
|
</xtce:Parameter>
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
1493
|
+
<xtce:Parameter name="SWP_SCI.SWEEP_TABLE" parameterTypeRef="SWP_SCI.SWEEP_TABLE">
|
|
1494
|
+
<xtce:LongDescription>Sweep ID</xtce:LongDescription>
|
|
1495
|
+
</xtce:Parameter>
|
|
1496
|
+
<xtce:Parameter name="SWP_SCI.PLAN_ID" parameterTypeRef="SWP_SCI.PLAN_ID">
|
|
1497
|
+
<xtce:LongDescription>Plan ID</xtce:LongDescription>
|
|
1498
|
+
</xtce:Parameter>
|
|
1499
|
+
<xtce:Parameter name="SWP_SCI.MODE" parameterTypeRef="SWP_SCI.MODE">
|
|
1500
|
+
<xtce:LongDescription>LVENG, LVSCI, HVENG or HVSCI</xtce:LongDescription>
|
|
1501
|
+
</xtce:Parameter>
|
|
1502
|
+
<xtce:Parameter name="SWP_SCI.SPARE_1" parameterTypeRef="SWP_SCI.SPARE_1">
|
|
1503
|
+
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
1504
|
+
</xtce:Parameter>
|
|
1505
|
+
<xtce:Parameter name="SWP_SCI.ESA_LVL5" parameterTypeRef="SWP_SCI.ESA_LVL5">
|
|
1506
|
+
<xtce:LongDescription>ESA level during sixth 1/6 second</xtce:LongDescription>
|
|
1507
|
+
</xtce:Parameter>
|
|
1508
|
+
<xtce:Parameter name="SWP_SCI.SPARE_2" parameterTypeRef="SWP_SCI.SPARE_2">
|
|
1509
|
+
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
1510
|
+
</xtce:Parameter>
|
|
1511
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST0" parameterTypeRef="SWP_SCI.PCEM_RNG_ST0">
|
|
1512
|
+
<xtce:LongDescription>PCEM count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1513
|
+
</xtce:Parameter>
|
|
1514
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST0" parameterTypeRef="SWP_SCI.SCEM_RNG_ST0">
|
|
1515
|
+
<xtce:LongDescription>SCEM count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1516
|
+
</xtce:Parameter>
|
|
1517
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST0" parameterTypeRef="SWP_SCI.COIN_RNG_ST0">
|
|
1518
|
+
<xtce:LongDescription>Coincidence count range during first 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1519
|
+
</xtce:Parameter>
|
|
1520
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST1" parameterTypeRef="SWP_SCI.PCEM_RNG_ST1">
|
|
1521
|
+
<xtce:LongDescription>PCEM count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1522
|
+
</xtce:Parameter>
|
|
1523
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST1" parameterTypeRef="SWP_SCI.SCEM_RNG_ST1">
|
|
1524
|
+
<xtce:LongDescription>SCEM count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1525
|
+
</xtce:Parameter>
|
|
1526
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST1" parameterTypeRef="SWP_SCI.COIN_RNG_ST1">
|
|
1527
|
+
<xtce:LongDescription>Coincidence count range during second 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1528
|
+
</xtce:Parameter>
|
|
1529
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST2" parameterTypeRef="SWP_SCI.PCEM_RNG_ST2">
|
|
1530
|
+
<xtce:LongDescription>PCEM count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1531
|
+
</xtce:Parameter>
|
|
1532
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST2" parameterTypeRef="SWP_SCI.SCEM_RNG_ST2">
|
|
1533
|
+
<xtce:LongDescription>SCEM count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1534
|
+
</xtce:Parameter>
|
|
1535
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST2" parameterTypeRef="SWP_SCI.COIN_RNG_ST2">
|
|
1536
|
+
<xtce:LongDescription>Coincidence count range during third 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1537
|
+
</xtce:Parameter>
|
|
1538
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST3" parameterTypeRef="SWP_SCI.PCEM_RNG_ST3">
|
|
1539
|
+
<xtce:LongDescription>PCEM count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1540
|
+
</xtce:Parameter>
|
|
1541
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST3" parameterTypeRef="SWP_SCI.SCEM_RNG_ST3">
|
|
1542
|
+
<xtce:LongDescription>SCEM count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1543
|
+
</xtce:Parameter>
|
|
1544
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST3" parameterTypeRef="SWP_SCI.COIN_RNG_ST3">
|
|
1545
|
+
<xtce:LongDescription>Coincidence count range during fourth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1546
|
+
</xtce:Parameter>
|
|
1547
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST4" parameterTypeRef="SWP_SCI.PCEM_RNG_ST4">
|
|
1548
|
+
<xtce:LongDescription>PCEM count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1549
|
+
</xtce:Parameter>
|
|
1550
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST4" parameterTypeRef="SWP_SCI.SCEM_RNG_ST4">
|
|
1551
|
+
<xtce:LongDescription>SCEM count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1552
|
+
</xtce:Parameter>
|
|
1553
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST4" parameterTypeRef="SWP_SCI.COIN_RNG_ST4">
|
|
1554
|
+
<xtce:LongDescription>Coincidence count range during fifth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1555
|
+
</xtce:Parameter>
|
|
1556
|
+
<xtce:Parameter name="SWP_SCI.PCEM_RNG_ST5" parameterTypeRef="SWP_SCI.PCEM_RNG_ST5">
|
|
1557
|
+
<xtce:LongDescription>PCEM count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1558
|
+
</xtce:Parameter>
|
|
1559
|
+
<xtce:Parameter name="SWP_SCI.SCEM_RNG_ST5" parameterTypeRef="SWP_SCI.SCEM_RNG_ST5">
|
|
1560
|
+
<xtce:LongDescription>SCEM count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1561
|
+
</xtce:Parameter>
|
|
1562
|
+
<xtce:Parameter name="SWP_SCI.COIN_RNG_ST5" parameterTypeRef="SWP_SCI.COIN_RNG_ST5">
|
|
1563
|
+
<xtce:LongDescription>Coincidence count range during sixth 1/6-second: raw or compressed</xtce:LongDescription>
|
|
1564
|
+
</xtce:Parameter>
|
|
1565
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT0" parameterTypeRef="SWP_SCI.PCEM_CNT0">
|
|
1566
|
+
<xtce:LongDescription>1st Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1567
|
+
</xtce:Parameter>
|
|
1568
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT0" parameterTypeRef="SWP_SCI.SCEM_CNT0">
|
|
1569
|
+
<xtce:LongDescription>1st Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1570
|
+
</xtce:Parameter>
|
|
1571
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT0" parameterTypeRef="SWP_SCI.COIN_CNT0">
|
|
1572
|
+
<xtce:LongDescription>1st Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1573
|
+
</xtce:Parameter>
|
|
1574
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT1" parameterTypeRef="SWP_SCI.PCEM_CNT1">
|
|
1575
|
+
<xtce:LongDescription>2nd Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1576
|
+
</xtce:Parameter>
|
|
1577
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT1" parameterTypeRef="SWP_SCI.SCEM_CNT1">
|
|
1578
|
+
<xtce:LongDescription>2nd Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1579
|
+
</xtce:Parameter>
|
|
1580
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT1" parameterTypeRef="SWP_SCI.COIN_CNT1">
|
|
1581
|
+
<xtce:LongDescription>2nd Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1582
|
+
</xtce:Parameter>
|
|
1583
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT2" parameterTypeRef="SWP_SCI.PCEM_CNT2">
|
|
1584
|
+
<xtce:LongDescription>3rd Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1585
|
+
</xtce:Parameter>
|
|
1586
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT2" parameterTypeRef="SWP_SCI.SCEM_CNT2">
|
|
1587
|
+
<xtce:LongDescription>3rd Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1588
|
+
</xtce:Parameter>
|
|
1589
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT2" parameterTypeRef="SWP_SCI.COIN_CNT2">
|
|
1590
|
+
<xtce:LongDescription>3rd Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1591
|
+
</xtce:Parameter>
|
|
1592
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT3" parameterTypeRef="SWP_SCI.PCEM_CNT3">
|
|
1593
|
+
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1594
|
+
</xtce:Parameter>
|
|
1595
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT3" parameterTypeRef="SWP_SCI.SCEM_CNT3">
|
|
1596
|
+
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1597
|
+
</xtce:Parameter>
|
|
1598
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT3" parameterTypeRef="SWP_SCI.COIN_CNT3">
|
|
1599
|
+
<xtce:LongDescription>4th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1600
|
+
</xtce:Parameter>
|
|
1601
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT4" parameterTypeRef="SWP_SCI.PCEM_CNT4">
|
|
1602
|
+
<xtce:LongDescription>5th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1603
|
+
</xtce:Parameter>
|
|
1604
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT4" parameterTypeRef="SWP_SCI.SCEM_CNT4">
|
|
1605
|
+
<xtce:LongDescription>5th Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1606
|
+
</xtce:Parameter>
|
|
1607
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT4" parameterTypeRef="SWP_SCI.COIN_CNT4">
|
|
1608
|
+
<xtce:LongDescription>5th Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1609
|
+
</xtce:Parameter>
|
|
1610
|
+
<xtce:Parameter name="SWP_SCI.PCEM_CNT5" parameterTypeRef="SWP_SCI.PCEM_CNT5">
|
|
1611
|
+
<xtce:LongDescription>6th Primary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1612
|
+
</xtce:Parameter>
|
|
1613
|
+
<xtce:Parameter name="SWP_SCI.SCEM_CNT5" parameterTypeRef="SWP_SCI.SCEM_CNT5">
|
|
1614
|
+
<xtce:LongDescription>6th Secondary CEM count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1615
|
+
</xtce:Parameter>
|
|
1616
|
+
<xtce:Parameter name="SWP_SCI.COIN_CNT5" parameterTypeRef="SWP_SCI.COIN_CNT5">
|
|
1617
|
+
<xtce:LongDescription>6th Coincidence count: LS 16 bits if RAW, MS 16 bits if compressed</xtce:LongDescription>
|
|
1618
|
+
</xtce:Parameter>
|
|
1619
|
+
<xtce:Parameter name="SWP_SCI.CHKSUM" parameterTypeRef="SWP_SCI.CHKSUM">
|
|
518
1620
|
<xtce:LongDescription>XOR checksum starting with beginning of CCSDS header to the byte prior to this field</xtce:LongDescription>
|
|
519
1621
|
</xtce:Parameter>
|
|
520
1622
|
</xtce:ParameterSet>
|
|
521
1623
|
<xtce:ContainerSet>
|
|
522
|
-
<xtce:SequenceContainer name="CCSDSPacket">
|
|
1624
|
+
<xtce:SequenceContainer name="CCSDSPacket" abstract="true">
|
|
523
1625
|
<xtce:EntryList>
|
|
524
1626
|
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
525
1627
|
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
@@ -530,179 +1632,166 @@
|
|
|
530
1632
|
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
531
1633
|
</xtce:EntryList>
|
|
532
1634
|
</xtce:SequenceContainer>
|
|
533
|
-
|
|
1635
|
+
<xtce:SequenceContainer name="SWP_HK">
|
|
534
1636
|
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
535
1637
|
<xtce:RestrictionCriteria>
|
|
536
|
-
<xtce:Comparison parameterRef="PKT_APID" value="
|
|
1638
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1184" useCalibratedValue="false" />
|
|
537
1639
|
</xtce:RestrictionCriteria>
|
|
538
1640
|
</xtce:BaseContainer>
|
|
539
1641
|
<xtce:EntryList>
|
|
540
|
-
<xtce:ParameterRefEntry parameterRef="SHCOARSE" />
|
|
541
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
542
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
543
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
544
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
545
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
546
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
547
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
548
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
549
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
550
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
551
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
552
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
553
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
554
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
555
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
556
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
557
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
558
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
559
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
560
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
561
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
562
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
563
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
564
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
565
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
566
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
567
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
568
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
569
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
570
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
571
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
572
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
573
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
574
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
575
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
576
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
577
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
578
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
579
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
580
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
581
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
582
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
583
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
584
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
1642
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SHCOARSE" />
|
|
1643
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CMDEXE" />
|
|
1644
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CMDRJCT" />
|
|
1645
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.LUT_CHOICE" />
|
|
1646
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_SAFE" />
|
|
1647
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_SAFE" />
|
|
1648
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.WDT_ST" />
|
|
1649
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.RCV_SAFE_ST" />
|
|
1650
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SAFE_ST" />
|
|
1651
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_RATE_ST" />
|
|
1652
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_RATE_ST" />
|
|
1653
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_I_ST" />
|
|
1654
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_I_ST" />
|
|
1655
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_V_ST" />
|
|
1656
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_V_ST" />
|
|
1657
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.LVPS_V_ST" />
|
|
1658
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.LVPS_I_ST" />
|
|
1659
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.OVR_T_ST" />
|
|
1660
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.UND_T_ST" />
|
|
1661
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.MODE" />
|
|
1662
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.MEMDP_ST" />
|
|
1663
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SENSOR_T" />
|
|
1664
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.HVSUPP_T" />
|
|
1665
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CNTRLR_T" />
|
|
1666
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_V" />
|
|
1667
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_V" />
|
|
1668
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_I" />
|
|
1669
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_I" />
|
|
1670
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P5_V" />
|
|
1671
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.N5_V" />
|
|
1672
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P5_I" />
|
|
1673
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.N5_I" />
|
|
1674
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SWP_REV" />
|
|
1675
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.LAST_OPCODE" />
|
|
1676
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PHD_LLD1_LVL" />
|
|
1677
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.MEMLD_ST" />
|
|
1678
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.BOOT_ST" />
|
|
1679
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.ESA_ST" />
|
|
1680
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_ST" />
|
|
1681
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_ST" />
|
|
1682
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SPARE_1" />
|
|
1683
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_CNT_ST" />
|
|
1684
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_CNT_ST" />
|
|
1685
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_I_THR" />
|
|
1686
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_I_THR" />
|
|
1687
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_LVL" />
|
|
1688
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_LVL" />
|
|
1689
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.AGND_VOLT" />
|
|
1690
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CEM_I" />
|
|
1691
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.ESA_V" />
|
|
1692
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P2_5_V" />
|
|
1693
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PHD_LLD1_V" />
|
|
1694
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SPARE_2" />
|
|
1695
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_RATELIM" />
|
|
1696
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_RATELIM" />
|
|
1697
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.STIM_EN" />
|
|
1698
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.MISSED_PPS_CNT" />
|
|
1699
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CEM_INT_LIM" />
|
|
1700
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CMD_ECHO_ST" />
|
|
1701
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.HV_PGSAFE_ST" />
|
|
1702
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.HV_ARM_ST" />
|
|
1703
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SPARE_3" />
|
|
1704
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CEM_INT_DIP" />
|
|
1705
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PLAN_ID" />
|
|
1706
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SWEEP_ID" />
|
|
1707
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_V1_ST" />
|
|
1708
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_I1_ST" />
|
|
1709
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_V1_ST" />
|
|
1710
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_I1_ST" />
|
|
1711
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PCEM_INT_ST" />
|
|
1712
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCEM_INT_ST" />
|
|
1713
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEP2_RDY" />
|
|
1714
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEP1_RDY" />
|
|
1715
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.FPGA_TYPE" />
|
|
1716
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.FPGA_REV" />
|
|
1717
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.IAL_TLM" />
|
|
1718
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SCI_TLM" />
|
|
1719
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.HK_TLM" />
|
|
1720
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SPARE_4" />
|
|
1721
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.FPGA_PUP_ST" />
|
|
1722
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEPL2_CKS_ST" />
|
|
1723
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEPL1_CKS_ST" />
|
|
1724
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.RAM_D_ST" />
|
|
1725
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEPC2_CKS_ST" />
|
|
1726
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.EEPC1_CKS_ST" />
|
|
1727
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.RAM_C_ST" />
|
|
1728
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PROM_CKS_ST" />
|
|
1729
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.LUT_REV" />
|
|
1730
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P2V5D" />
|
|
1731
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P3V3_V_MON" />
|
|
1732
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.P_CEM_CMD_LVL_MON" />
|
|
1733
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.S_CEM_CMD_LVL_MON" />
|
|
1734
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.ESA_CMD_LVL_MON" />
|
|
1735
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PHD_LLD2_V" />
|
|
1736
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.SPARE_5" />
|
|
1737
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.PHD_LLD2_LVL" />
|
|
1738
|
+
<xtce:ParameterRefEntry parameterRef="SWP_HK.CHKSUM" />
|
|
585
1739
|
</xtce:EntryList>
|
|
586
1740
|
</xtce:SequenceContainer>
|
|
587
|
-
<xtce:SequenceContainer name="
|
|
1741
|
+
<xtce:SequenceContainer name="SWP_SCI">
|
|
588
1742
|
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
589
1743
|
<xtce:RestrictionCriteria>
|
|
590
|
-
<xtce:Comparison parameterRef="PKT_APID" value="
|
|
1744
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1188" useCalibratedValue="false" />
|
|
591
1745
|
</xtce:RestrictionCriteria>
|
|
592
1746
|
</xtce:BaseContainer>
|
|
593
1747
|
<xtce:EntryList>
|
|
594
|
-
<xtce:ParameterRefEntry parameterRef="SHCOARSE" />
|
|
595
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
596
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
597
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
598
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
599
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
600
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
601
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
602
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
603
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
604
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
605
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
606
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
607
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
608
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
609
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
610
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
611
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
612
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
613
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
614
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
615
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
616
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
617
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
618
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
619
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
620
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
621
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
622
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
623
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
624
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
625
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
626
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
627
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
628
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
629
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
630
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
631
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
632
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
633
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
634
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
635
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
636
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
637
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
638
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
639
|
-
<xtce:ParameterRefEntry parameterRef="PCEM_LVL" />
|
|
640
|
-
<xtce:ParameterRefEntry parameterRef="SCEM_LVL" />
|
|
641
|
-
<xtce:ParameterRefEntry parameterRef="AGND_VOLT" />
|
|
642
|
-
<xtce:ParameterRefEntry parameterRef="CEM_I" />
|
|
643
|
-
<xtce:ParameterRefEntry parameterRef="ESA_V" />
|
|
644
|
-
<xtce:ParameterRefEntry parameterRef="P2_5_V" />
|
|
645
|
-
<xtce:ParameterRefEntry parameterRef="PHD_LLD1_V" />
|
|
646
|
-
<xtce:ParameterRefEntry parameterRef="SPARE_2_HK" />
|
|
647
|
-
<xtce:ParameterRefEntry parameterRef="PCEM_RATELIM" />
|
|
648
|
-
<xtce:ParameterRefEntry parameterRef="SCEM_RATELIM" />
|
|
649
|
-
<xtce:ParameterRefEntry parameterRef="STIM_EN" />
|
|
650
|
-
<xtce:ParameterRefEntry parameterRef="MISSED_PPS_CNT" />
|
|
651
|
-
<xtce:ParameterRefEntry parameterRef="CEM_INT_LIM" />
|
|
652
|
-
<xtce:ParameterRefEntry parameterRef="CMD_ECHO_ST" />
|
|
653
|
-
<xtce:ParameterRefEntry parameterRef="HV_PGSAFE_ST" />
|
|
654
|
-
<xtce:ParameterRefEntry parameterRef="HV_ARM_ST" />
|
|
655
|
-
<xtce:ParameterRefEntry parameterRef="SPARE_3" />
|
|
656
|
-
<xtce:ParameterRefEntry parameterRef="CEM_INT_DIP" />
|
|
657
|
-
<xtce:ParameterRefEntry parameterRef="PLAN_ID_HK" />
|
|
658
|
-
<xtce:ParameterRefEntry parameterRef="SWEEP_ID" />
|
|
659
|
-
<xtce:ParameterRefEntry parameterRef="PCEM_V1_ST" />
|
|
660
|
-
<xtce:ParameterRefEntry parameterRef="PCEM_I1_ST" />
|
|
661
|
-
<xtce:ParameterRefEntry parameterRef="SCEM_V1_ST" />
|
|
662
|
-
<xtce:ParameterRefEntry parameterRef="SCEM_I1_ST" />
|
|
663
|
-
<xtce:ParameterRefEntry parameterRef="PCEM_INT_ST" />
|
|
664
|
-
<xtce:ParameterRefEntry parameterRef="SCEM_INT_ST" />
|
|
665
|
-
<xtce:ParameterRefEntry parameterRef="EEP2_RDY" />
|
|
666
|
-
<xtce:ParameterRefEntry parameterRef="EEP1_RDY" />
|
|
667
|
-
<xtce:ParameterRefEntry parameterRef="FPGA_TYPE" />
|
|
668
|
-
<xtce:ParameterRefEntry parameterRef="FPGA_REV" />
|
|
669
|
-
<xtce:ParameterRefEntry parameterRef="IAL_TLM" />
|
|
670
|
-
<xtce:ParameterRefEntry parameterRef="SCI_TLM" />
|
|
671
|
-
<xtce:ParameterRefEntry parameterRef="HK_TLM" />
|
|
672
|
-
<xtce:ParameterRefEntry parameterRef="SPARE_4" />
|
|
673
|
-
<xtce:ParameterRefEntry parameterRef="FPGA_PUP_ST" />
|
|
674
|
-
<xtce:ParameterRefEntry parameterRef="EEPL2_CKS_ST" />
|
|
675
|
-
<xtce:ParameterRefEntry parameterRef="EEPL1_CKS_ST" />
|
|
676
|
-
<xtce:ParameterRefEntry parameterRef="RAM_D_ST" />
|
|
677
|
-
<xtce:ParameterRefEntry parameterRef="EEPC2_CKS_ST" />
|
|
678
|
-
<xtce:ParameterRefEntry parameterRef="EEPC1_CKS_ST" />
|
|
679
|
-
<xtce:ParameterRefEntry parameterRef="RAM_C_ST" />
|
|
680
|
-
<xtce:ParameterRefEntry parameterRef="PROM_CKS_ST" />
|
|
681
|
-
<xtce:ParameterRefEntry parameterRef="LUT_REV" />
|
|
682
|
-
<xtce:ParameterRefEntry parameterRef="P2V5D" />
|
|
683
|
-
<xtce:ParameterRefEntry parameterRef="P3V3_V_MON" />
|
|
684
|
-
<xtce:ParameterRefEntry parameterRef="P_CEM_CMD_LVL_MON" />
|
|
685
|
-
<xtce:ParameterRefEntry parameterRef="S_CEM_CMD_LVL_MON" />
|
|
686
|
-
<xtce:ParameterRefEntry parameterRef="ESA_CMD_LVL_MON" />
|
|
687
|
-
<xtce:ParameterRefEntry parameterRef="PHD_LLD2_V" />
|
|
688
|
-
<xtce:ParameterRefEntry parameterRef="SPARE_5" />
|
|
689
|
-
<xtce:ParameterRefEntry parameterRef="PHD_LLD2_LVL" />
|
|
690
|
-
<xtce:ParameterRefEntry parameterRef="CHKSUM" />
|
|
1748
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SHCOARSE" />
|
|
1749
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SEQ_NUMBER" />
|
|
1750
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SWEEP_TABLE" />
|
|
1751
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PLAN_ID" />
|
|
1752
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.MODE" />
|
|
1753
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SPARE_1" />
|
|
1754
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.ESA_LVL5" />
|
|
1755
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SPARE_2" />
|
|
1756
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST0" />
|
|
1757
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST0" />
|
|
1758
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST0" />
|
|
1759
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST1" />
|
|
1760
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST1" />
|
|
1761
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST1" />
|
|
1762
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST2" />
|
|
1763
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST2" />
|
|
1764
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST2" />
|
|
1765
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST3" />
|
|
1766
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST3" />
|
|
1767
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST3" />
|
|
1768
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST4" />
|
|
1769
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST4" />
|
|
1770
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST4" />
|
|
1771
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_RNG_ST5" />
|
|
1772
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_RNG_ST5" />
|
|
1773
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_RNG_ST5" />
|
|
1774
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT0" />
|
|
1775
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT0" />
|
|
1776
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT0" />
|
|
1777
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT1" />
|
|
1778
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT1" />
|
|
1779
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT1" />
|
|
1780
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT2" />
|
|
1781
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT2" />
|
|
1782
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT2" />
|
|
1783
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT3" />
|
|
1784
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT3" />
|
|
1785
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT3" />
|
|
1786
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT4" />
|
|
1787
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT4" />
|
|
1788
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT4" />
|
|
1789
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.PCEM_CNT5" />
|
|
1790
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.SCEM_CNT5" />
|
|
1791
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.COIN_CNT5" />
|
|
1792
|
+
<xtce:ParameterRefEntry parameterRef="SWP_SCI.CHKSUM" />
|
|
691
1793
|
</xtce:EntryList>
|
|
692
1794
|
</xtce:SequenceContainer>
|
|
693
|
-
<xtce:SequenceContainer name="P_SWP_AUT">
|
|
694
|
-
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
695
|
-
<xtce:RestrictionCriteria>
|
|
696
|
-
<xtce:Comparison parameterRef="PKT_APID" value="1192" useCalibratedValue="false" />
|
|
697
|
-
</xtce:RestrictionCriteria>
|
|
698
|
-
</xtce:BaseContainer>
|
|
699
|
-
<xtce:EntryList>
|
|
700
|
-
<xtce:ParameterRefEntry parameterRef="SHCOARSE" />
|
|
701
|
-
<xtce:ParameterRefEntry parameterRef="SPARE_1_AUT" />
|
|
702
|
-
<xtce:ParameterRefEntry parameterRef="POWER_REQUEST" />
|
|
703
|
-
<xtce:ParameterRefEntry parameterRef="CHKSUM" />
|
|
704
|
-
</xtce:EntryList>
|
|
705
|
-
</xtce:SequenceContainer>
|
|
706
1795
|
</xtce:ContainerSet>
|
|
707
1796
|
</xtce:TelemetryMetaData>
|
|
708
1797
|
</xtce:SpaceSystem>
|