-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparam_desc.py
2104 lines (2103 loc) · 82.6 KB
/
param_desc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PCF={'NIX00001':'TC Packet ID',
'NIX00002':'TC Packet Seq Control',
'NIX00003':'FID',
'NIX00004':'TC packet type',
'NIX00005':'TC packet subtype',
'NIX00006':'Received checksum',
'NIX00007':'Computed checksum',
'NIX00008':'Position incons. param.',
'NIX00009':'Value incons. param.',
'NIX00010':'Packet sequence flags',
'NIX00011':'Packet sequence count',
'NIX00012':'Current operation mode',
'NIX00013':'Target mode',
'NIX00014':'MID',
'NIX00015':'Start address',
'NIX00016':'Length - number bytes',
'NIX00017':'Received segment mask',
'NIX00018':'Expected segment mask',
'NIX00019':'FDIR function mask',
'NIX00020':'SID',
'NIX00021':'FDIR parameter',
'NIX00022':'FDIR parameter ID',
'NIX00023':'FDIR parameter value',
'NIX00024':'Memory operation',
'NIX00025':'Service Type',
'NIX00026':'Service Subtype',
'NIX00027':'Received length',
'NIX00028':'Expected packet length',
'NIX00029':'Version number',
'NIX00030':'Packet type',
'NIX00031':'Data field header flag',
'NIX00032':'CCSDS 2nd header flag',
'NIX00033':'PUS version',
'NIX00034':'FLASH operation',
'NIX00035':'LUT ID',
'NIX00037':'Unique data request numb',
'NIX00038':'Start Time - sub-seconds',
'NIX00039':'Tmin (rel) [1/10 sec]',
'NIX00040':'Tmax (rel) [1/10 sec]',
'NIX00041':'Tdiv unit [1/10 sec]',
'NIX00042':'Selftest ID',
'NIX00043':'Last executed state',
'NIX00044':'Selected MID - LoadASW',
'NIX00045':'Image MID - LoadASW',
'NIX00046':'Image pages - LoadASW',
'NIX00047':'Image CRC - LoadASW',
'NIX00048':'CRC buff FLASH - LoadASW',
'NIX00049':'Num of pages - ExecASW',
'NIX00050':'Stored CRC - ExecASW',
'NIX00051':'Calc CRC - ExecASW',
'NIX00052':'Sel MID - save ASW image',
'NIX00053':'Sel pages - save ASW ima',
'NIX00054':'TC ID oldest unprocess',
'NIX00055':'TC SSC oldest unprocess',
'NIX00056':'Received Ack flags (4b)',
'NIX00057':'StartASW state',
'NIX00058':'Invalid SID',
'NIX00059':'Heartbeat value',
'NIX00060':'Flare Message',
'NIX00061':'X Location',
'NIX00062':'Y Location',
'NIX00063':'Flare Duration',
'NIX00064':'Received FDIR mask',
'NIX00065':'Counts',
'NIX00066':'Requested page address',
'NIX00067':'Address after operation',
'NIX00068':'Allowed mask of FDIR',
'NIX00069':'System ID',
'NIX00070':'Operation ID',
'NIX00071':'Running test footprints',
'NIX00072':'Med value of trig acc',
'NIX00073':'Max value of trig acc',
'NIX00074':'Selected test footprints',
'NIX00075':'Start address in MID',
'NIX00076':'Attenuator motions',
'NIX00077':'End address in MID',
'NIX00078':'HK_ASP_PHOTOA0_V',
'NIX00079':'HK_ASP_PHOTOA1_V',
'NIX00080':'HK_ASP_PHOTOB0_V',
'NIX00081':'HK_ASP_PHOTOB1_V',
'NIX00082':'Length SAU',
'NIX00083':'MUL = 1',
'NIX00084':'MUL = 4',
'NIX00085':'FDIR function status',
'NIX00086':'Page with failed CRC chk',
'NIX00087':'Data processing level',
'NIX00088':'Summing value',
'NIX00089':'Number of samples',
'NIX00090':'ChA diode 0 voltage',
'NIX00091':'ChA diode 1 voltage',
'NIX00092':'ChB diode 0 voltage',
'NIX00093':'ChB diode 1 voltage',
'NIX00094':'Attenuator currents',
'NIX00096':'Limit value',
'NIX00097':'ID of HK line',
'NIX00098':'Actual value',
'NIX00099':'MID that was checked',
'NIX00100':'Detector number',
'NIX00101':'Mean - ASIC temperature',
'NIX00102':'Std dev ASIC temperature',
'NIX00103':'Number of structures',
'NIX00104':'Number of structures NxP',
'NIX00105':'Channel number',
'NIX00106':'Mean - ASIC ch',
'NIX00107':'Std dev - ASIC ADC ch',
'NIX00108':'Detected threshold',
'NIX00109':'Mean - ADC group',
'NIX00110':'Std dev - ADC group',
'NIX00111':'Error reason',
'NIX00112':'Selected MID',
'NIX00113':'MID - ASWimgHdr',
'NIX00114':'NumOfPages - ASWimgHdr',
'NIX00115':'CRC - ASWimgHdr',
'NIX00116':'Calculated CRC',
'NIX00117':'Size of ASW img to store',
'NIX00119':'Pixel ID',
'NIX00120':'SSID',
'NIX00121':'Start Time - seconds',
'NIX00122':'Duration',
'NIX00123':'Quiet Time',
'NIX00124':'Live Time',
'NIX00125':'Average temperature',
'NIX00126':'Movement type',
'NIX00127':'Initial flags',
'NIX00128':'End flags',
'NIX00129':'Main context file flag',
'NIX00130':'Backup context file flag',
'NIX00131':'Processor State Register',
'NIX00132':'Trap Base Register',
'NIX00133':'Program Counter',
'NIX00134':'Next Program Counter',
'NIX00142':'Received error code',
'NIX00143':'Received byte count',
'NIX00144':'CCSDS header',
'NIX00145':'Operation duration',
'NIX00146':'Sp - nr of compr sp pts',
'NIX00147':'SuSW Parameter ID',
'NIX00148':'SuSW Parameter subID',
'NIX00149':'SuSW Parameter data',
'NIX00150':'ASW Parameter ID',
'NIX00151':'ASW Parameter subID',
'NIX00152':'ASW Parameter data',
'NIX00158':'Compr spectral point',
'NIX00159':'Number of structures M',
'NIX00160':'SbSpect Mask',
'NIX00161':'FDIR stat msk HK temp ch',
'NIX00162':'FDIR stat msk HK volt ch',
'NIX00166':'Number of executed TC pa',
'NIX00167':'Number of sent TM packet',
'NIX00168':'Number of failed TM gene',
'NIX00173':'Mask of error chips',
'NIX00175':'ID of EDAC module',
'NIX00176':'New scrubbing rate',
'NIX00177':'Old scrubbing rate',
'NIX00178':'Counts leading to change',
'NIX00179':'Threshold exceeded',
'NIX00180':'Period of SEU checking',
'NIX00181':'HV line',
'NIX00182':'Original state',
'NIX00183':'New state',
'NIX00184':'Initialisation status',
'NIX00185':'Total number of files',
'NIX00186':'Number of bad blocks',
'NIX00187':'Number of error blocks',
'NIX00188':'Number of free blocks',
'NIX00189':'ATT movement',
'NIX00190':'SDRAM addr - part test',
'NIX00191':'SDRAM addr - full test',
'NIX00192':'SDRAM addr - patterntest',
'NIX00193':'FDIR function triggering',
'NIX00194':'Selected start file num',
'NIX00195':'Selected end file num',
'NIX00196':'Max file number to sel',
'NIX00197':'Data structure (from 0)',
'NIX00199':'Register mask',
'NIX00200':'Allowed min for par ID',
'NIX00201':'Allowed max for par ID',
'NIX00202':'Expected len TCs data',
'NIX00203':'Req value to be set',
'NIX00204':'Recived len TCs data',
'NIX00206':'Selected config value',
'NIX00207':'Max subsystem ID avl',
'NIX00208':'System ID selected',
'NIX00209':'Subsystem ID selected',
'NIX00210':'Exceeded config limit',
'NIX00215':'Lower accumulator bound',
'NIX00216':'NumOfSummedAcc/SpPoint',
'NIX00217':'NumOfSpectralPoints',
'NIX00218':'Selected test bitmask',
'NIX00222':'Start file',
'NIX00223':'Flash block offset - s f',
'NIX00224':'End file',
'NIX00225':'Flash block offset - e f',
'NIX00226':'Num of processed files',
'NIX00227':'Bad blocks - before rec',
'NIX00228':'Bad blocks - after rec',
'NIX00229':'Err blocks - before rec',
'NIX00230':'Err blocks - after rec',
'NIX00231':'Free blocks - before rec',
'NIX00232':'Free blocks - after rec',
'NIX00233':'Fill blocks - before rec',
'NIX00234':'Fill blocks - after rec',
'NIX00235':'Position sensor AB',
'NIX00236':'Position sensor BC',
'NIX00237':'Motor 1 used',
'NIX00238':'Motor 2 used',
'NIX00239':'Num of QL iter checked',
'NIX00240':'Num of yellow flags',
'NIX00241':'New active detector mask',
'NIX00242':'Compr trigger acc 0',
'NIX00243':'Compr trigger acc 1',
'NIX00244':'Compr trigger acc 2',
'NIX00245':'Compr trigger acc 3',
'NIX00246':'Compr trigger acc 4',
'NIX00247':'Compr trigger acc 5',
'NIX00248':'Compr trigger acc 6',
'NIX00249':'Compr trigger acc 7',
'NIX00250':'Compr trigger acc 8',
'NIX00251':'Compr trigger acc 9',
'NIX00252':'Compr trigger acc 10',
'NIX00253':'Compr trigger acc 11',
'NIX00254':'Compr trigger acc 12',
'NIX00255':'Compr trigger acc 13',
'NIX00256':'Compr trigger acc 14',
'NIX00257':'Compr trigger acc 15',
'NIX00258':'Number of energy groups',
'NIX00259':'Number of data elements',
'NIX00260':'Compressed pixels counts',
'NIX00261':'Flux',
'NIX00262':'Number of detectors',
'NIX00263':'Real visibility com',
'NIX00264':'Imaginary visibility com',
'NIX00265':'Base pixel mask (RCR0)',
'NIX00266':'Enrg bin edge mask - low',
'NIX00267':'Compr combined trig acc',
'NIX00268':'Compr summed counts',
'NIX00269':'Closing time offset',
'NIX00270':'Number of energies',
'NIX00271':'Num of data pnts LC',
'NIX00272':'Compressed Lightcurves',
'NIX00273':'Num of data pnts TRIG',
'NIX00274':'Compressed Triggers',
'NIX00275':'Num of data pnts RCR',
'NIX00276':'RCR',
'NIX00277':'Num of data pnts BCKG',
'NIX00278':'Compressed Background',
'NIX00279':'Samp per variance val',
'NIX00280':'Num of data pnts VAR',
'NIX00281':'Compressed Variance',
'NIX00282':'Energy Mask',
'NIX00283':'Flare Location Z',
'NIX00284':'Flare Location Y',
'NIX00285':'UBSD counter',
'NIX00286':'PALD counter',
'NIX00287':'Start time coarse SCET',
'NIX00288':'End time coarse SCET',
'NIX00289':'Highest flare flag',
'NIX00290':'TM byte voilume',
'NIX00291':'Average Z location',
'NIX00292':'Average Y location',
'NIX00293':'Flare TM proc status',
'NIX00294':'Number of listed flares',
'NIX00297':'Config parameter value',
'NIX00298':'Config Parameter ID',
'NIX00299':'EID',
'NIX00300':'Test Footprints',
'NIX00301':'Success/failure flags',
'NIX00303':'Software version',
'NIX00304':'Previous mode',
'NIX00305':'Actual mode',
'NIX00306':'Mode transition reason',
'NIX00307':'CPU load',
'NIX00308':'HV PSU identification',
'NIX00309':'Flare strength',
'NIX00311':'Timer IRQ counter',
'NIX00312':'SPW IRQ counter',
'NIX00313':'ADC Read IRQ counter',
'NIX00323':'CPU load in percentages',
'NIX00324':'Limit T1',
'NIX00325':'Limit T2',
'NIX00326':'Limit N1',
'NIX00327':'Limit N2',
'NIX00328':'Current N1',
'NIX00329':'Current N2',
'NIX00333':'Failed temperature senso',
'NIX00334':'Failed regulators',
'NIX00336':'Requested mode',
'NIX00337':'Detector IRQ counter',
'NIX00338':'Current time in ms',
'NIX00339':'Memory ID',
'NIX00340':'ATT move direction',
'NIX00341':'ATT motor used',
'NIX00342':'ATT position sensor',
'NIX00344':'Current working timeout',
'NIX00345':'Bitmask of det above lim',
'NIX00346':'Det - the highest rate',
'NIX00347':'Limit of the high rate',
'NIX00348':'Quadrants with OVC',
'NIX00349':'Actual current quadr 1',
'NIX00350':'Actual current quadr 2',
'NIX00351':'Actual current quadr 3',
'NIX00352':'Actual current quadr 4',
'NIX00353':'Limit of det quadr OVC',
'NIX00354':'Quadrant identification',
'NIX00355':'Temperature',
'NIX00357':'Counter - HV PSU failure',
'NIX00361':'Actual rate-det high rat',
'NIX00362':'Quart req for operation',
'NIX00363':'Powered quarters',
'NIX00364':'Grps req for operation',
'NIX00365':'Enabled groups',
'NIX00375':'Register 4 (SEL_TEST)',
'NIX00383':'Register 12 (ALIMON)',
'NIX00385':'Group number',
'NIX00386':'Failure transfer file',
'NIX00387':'Context segment counter',
'NIX00388':'LUT type',
'NIX00389':'Selected configuration',
'NIX00390':'Highest configuration',
'NIX00391':'Limit T3',
'NIX00392':'Actual quiet (NM) timeT3',
'NIX00393':'Actual value',
'NIX00394':'Limit value',
'NIX00399':'Number of time samples',
'NIX00401':'Rate control regime',
'NIX00402':'Measurement Time Stamp',
'NIX00403':'Number of substructures',
'NIX00404':'Starting time',
'NIX00405':'Integration duration',
'NIX00406':'Number science data samp',
'NIX00407':'Detectors mask',
'NIX00408':'Trigger accumulator 0',
'NIX00409':'Trigger accumulator 1',
'NIX00410':'Trigger accumulator 2',
'NIX00411':'Trigger accumulator 3',
'NIX00412':'Trigger accumulator 4',
'NIX00413':'Trigger accumulator 5',
'NIX00414':'Trigger accumulator 6',
'NIX00415':'Trigger accumulator 7',
'NIX00416':'Trigger accumulator 8',
'NIX00417':'Trigger accumulator 9',
'NIX00418':'Trigger accumulator 10',
'NIX00419':'Trigger accumulator 11',
'NIX00420':'Trigger accumulator 12',
'NIX00421':'Trigger accumulator 13',
'NIX00422':'Trigger accumulator 14',
'NIX00423':'Trigger accumulator 15',
'NIX00436':'Value of HK_DPU_1V5_V',
'NIX00437':'Value of HK_REF_2V5_V',
'NIX00438':'Value of HK_DPU_2V9_V',
'NIX00441':'Delta time in 0.1 sec',
'NIX00442':'Number of pixel sets, P',
'NIX00443':'Pixel set descr index',
'NIX00445':'SCET coarse time',
'NIX00446':'SCET fine time',
'NIX00448':'Num of PROM recoverable',
'NIX00449':'Num of SDRAM recoverable',
'NIX00450':'Num of CACHE recoverable',
'NIX00451':'Num of ROTBUF recoverabl',
'NIX00452':'Compr Spectrum E0',
'NIX00453':'Compr Spectrum E1',
'NIX00454':'Compr Spectrum E2',
'NIX00455':'Compr Spectrum E3',
'NIX00456':'Compr Spectrum E4',
'NIX00457':'Compr Spectrum E5',
'NIX00458':'Compr Spectrum E6',
'NIX00459':'Compr Spectrum E7',
'NIX00460':'Compr Spectrum E8',
'NIX00461':'Compr Spectrum E9',
'NIX00462':'Compr Spectrum E10',
'NIX00463':'Compr Spectrum E11',
'NIX00464':'Compr Spectrum E12',
'NIX00465':'Compr Spectrum E13',
'NIX00466':'Compr Spectrum E14',
'NIX00467':'Compr Spectrum E15',
'NIX00468':'Compr Spectrum E16',
'NIX00469':'Compr Spectrum E17',
'NIX00470':'Compr Spectrum E18',
'NIX00471':'Compr Spectrum E19',
'NIX00472':'Compr Spectrum E20',
'NIX00473':'Compr Spectrum E21',
'NIX00474':'Compr Spectrum E22',
'NIX00475':'Compr Spectrum E23',
'NIX00476':'Compr Spectrum E24',
'NIX00477':'Compr Spectrum E25',
'NIX00478':'Compr Spectrum E26',
'NIX00479':'Compr Spectrum E27',
'NIX00480':'Compr Spectrum E28',
'NIX00481':'Compr Spectrum E29',
'NIX00482':'Compr Spectrum E30',
'NIX00483':'Compr Spectrum E31',
'NIX00484':'Compr Trigger Accu',
'NIX00485':'Num of integr aft 1 samp',
'NIXD0001':'SW Version Number',
'NIXD0002':'CPU load',
'NIXD0003':'Archive Memory usage',
'NIXD0004':'IDPU identifier',
'NIXD0005':'Active SPW link',
'NIXD0007':'Compr Sch EACC S',
'NIXD0008':'Compr Sch EACC K',
'NIXD0009':'Compr Sch EACC M',
'NIXD0010':'Compr Sch ETRIG S',
'NIXD0011':'Compr Sch ETRIG K',
'NIXD0012':'Compr Sch ETRIG M',
'NIXD0013':'Emin (low energy bound)',
'NIXD0014':'Emax (low energy bound)',
'NIXD0015':'Energy division init',
'NIXD0016':'E1 (low bound)',
'NIXD0017':'E2 (high bound)',
'NIXD0018':'Enrg bin edge mask-up SG',
'NIXD0019':'Energy Unit - 1',
'NIXD0021':'SW running',
'NIXD0022':'Instrument number',
'NIXD0023':'Instrument mode',
'NIXD0024':'HK_PSU_TEMP_T',
'NIXD0025':'HK_DPU_PCB_T',
'NIXD0026':'HK_DPU_FPGA_T',
'NIXD0027':'HK_DPU_3V3_C',
'NIXD0028':'HK_DPU_2V5_C',
'NIXD0029':'HK_DPU_1V5_C',
'NIXD0030':'HK_DPU_SPW_C',
'NIXD0031':'HK_DPU_SPW0_V',
'NIXD0032':'HK_DPU_SPW1_V',
'NIXD0035':'HK_DPU_1V5_V',
'NIXD0036':'HK_REF_2V5_V',
'NIXD0037':'HK_DPU_2V9_V',
'NIXD0038':'HK_ASP_REF_2V5A_V',
'NIXD0039':'HK_ASP_REF_2V5B_V',
'NIXD0040':'HK_ASP_TIM01_T',
'NIXD0041':'HK_ASP_TIM02_T',
'NIXD0042':'HK_ASP_TIM03_T',
'NIXD0043':'HK_ASP_TIM04_T',
'NIXD0044':'HK_ASP_TIM05_T',
'NIXD0045':'HK_ASP_TIM06_T',
'NIXD0046':'HK_ASP_TIM07_T',
'NIXD0047':'HK_ASP_TIM08_T',
'NIXD0048':'HK_ASP_VSENSA_V',
'NIXD0049':'HK_ASP_VSENSB_V',
'NIXD0050':'HK_ATT_V',
'NIXD0051':'HK_ATT_T',
'NIXD0052':'HK_HV_01_16_V',
'NIXD0053':'HK_HV_17_32_V',
'NIXD0054':'DET_Q1_T',
'NIXD0055':'DET_Q2_T',
'NIXD0056':'DET_Q3_T',
'NIXD0057':'DET_Q4_T',
'NIXD0058':'HK_DET_C',
'NIXD0059':'Flare location',
'NIXD0060':'Non-thermal flare index',
'NIXD0061':'Thermal flare index',
'NIXD0064':'Attenuator motion flag',
'NIXD0066':'HV1 depolar in progress',
'NIXD0067':'HV2 depolar in progress',
'NIXD0068':'ATT AB flag - OPEN',
'NIXD0069':'ATT BC flag - CLOSED',
'NIXD0070':'En/Dis Detector Status',
'NIXD0074':'HV regulators mask',
'NIXD0075':'HK_ATT_C',
'NIXD0077':'TC(20,128) seq cnt',
'NIXD0078':'Rejected SpW packets',
'NIXD0079':'Received SpW packets',
'NIXD0080':'SPW1 - power status',
'NIXD0081':'SPW0 - power status',
'NIXD0082':'Q4 - power status',
'NIXD0083':'Q3 - power status',
'NIXD0084':'Q2 - power status',
'NIXD0085':'Q1 - power status',
'NIXD0086':'ASPECT B - power status',
'NIXD0087':'ASPECT A - power status',
'NIXD0088':'ATT M2 - moving',
'NIXD0089':'ATT M1 - moving',
'NIXD0090':'HV17-32 - enabled status',
'NIXD0091':'HV01-16 - enabled status',
'NIXD0092':'LV - enabled status',
'NIXD0093':'SPW open',
'NIXD0094':'LV powered',
'NIXD0095':'HV01-16 powered',
'NIXD0096':'HV17-32 powered',
'NIXD0097':'SPW 0 powered',
'NIXD0098':'SPW 1 powered',
'NIXD0099':'SPW 0 enabled',
'NIXD0100':'SPW 1 enabled',
'NIXD0101':'Compr Sch LC S',
'NIXD0102':'Compr Sch LC K',
'NIXD0103':'Compr Sch LC M',
'NIXD0104':'Compr Sch TRIG ACC S 30',
'NIXD0105':'Compr Sch TRIG ACC K 30',
'NIXD0106':'Compr Sch TRIG ACC M 30',
'NIXD0107':'Enrg bin edge mask-up 30',
'NIXD0108':'Compr Sch BCKG S',
'NIXD0109':'Compr Sch BCKG K',
'NIXD0110':'Compr Sch BCKG M',
'NIXD0111':'Enrg bin edge mask-up 31',
'NIXD0112':'Compr Sch TRIG ACC S',
'NIXD0113':'Compr Sch TRIG ACC K',
'NIXD0114':'Compr Sch TRIG ACC M',
'NIXD0115':'Compr Sch SPECTRUM S',
'NIXD0116':'Compr Sch SPECTRUM K',
'NIXD0117':'Compr Sch SPECTRUM M',
'NIXD0118':'Compr Sch VARIANCE S',
'NIXD0119':'Compr Sch VARIANCE K',
'NIXD0120':'Compr Sch VARIANCE M',
'NIXD0126':'Compr Sch CAL S',
'NIXD0127':'Compr Sch CAL K',
'NIXD0128':'Compr Sch CAL M',
'NIXD0129':'SbSpect1 No spect pts-1',
'NIXD0130':'SbSpect1 No sum chn-1',
'NIXD0131':'SbSpect1 lowest ch',
'NIXD0132':'SbSpect2 No spect pts-1',
'NIXD0133':'SbSpect2 No sum chn-1',
'NIXD0134':'SbSpect2 lowest ch',
'NIXD0135':'SbSpect3 No spect pts-1',
'NIXD0136':'SbSpect3 No sum chn-1',
'NIXD0137':'SbSpect3 lowest ch',
'NIXD0138':'SbSpect4 No spect pts-1',
'NIXD0139':'SbSpect4 No sum chn-1',
'NIXD0140':'SbSpect4 lowest ch',
'NIXD0141':'SbSpect5 No spect pts-1',
'NIXD0142':'SbSpect5 No sum chn-1',
'NIXD0143':'SbSpect5 lowest ch',
'NIXD0144':'SbSpect6 No spect pts-1',
'NIXD0145':'SbSpect6 No sum chn-1',
'NIXD0146':'SbSpect6 lowest ch',
'NIXD0147':'SbSpect7 No spect pts-1',
'NIXD0148':'SbSpect7 No sum chn-1',
'NIXD0149':'SbSpect7 lowest ch',
'NIXD0150':'SbSpect8 No spect pts-1',
'NIXD0151':'SbSpect8 No sum chn-1',
'NIXD0152':'SbSpect8 lowest ch',
'NIXD0153':'Detector ID - sci data',
'NIXD0154':'Energy ID - sci data',
'NIXD0155':'Detector ID',
'NIXD0156':'Pixel ID',
'NIXD0157':'S - SbSpect ID - 1',
'NIXD0158':'Pixel ID - sci data',
'NIXD0159':'Continuation bits',
'NIXD0163':'HKSelftest is exec stat',
'NIXD0164':'Memory ser exec stat fla',
'NIXD0165':'FDIR stat msk HK curr ch',
'NIXD0166':'Autonomous ASW boot stat',
'NIXD0167':'Memory load ena flag',
'NIXD0168':'Overruns: Task + 1',
'NIXD0169':'Watchdog state',
'NIXD0170':'Overruns: Frame + 1',
'NIXD0302':'WDT reason for reboot',
'NIXD0303':'Currently running IDPU',
'NIXD0304':'EDAC reason for reboot',
'NIXD0358':'SpW line',
'NIXD0359':'SpW internal failure',
'NIXD0366':'Register mask applied',
'NIXD0367':'Register 1 (ICOMP)',
'NIXD0368':'Register 2 (IREQ)',
'NIXD0376':'Register 5 (TPEAK)',
'NIXD0377':'Register 6 (I0)',
'NIXD0378':'Register 7 (RDELAY)',
'NIXD0379':'Register 8 (GAIN)',
'NIXD0380':'Register 9 (SPY)',
'NIXD0381':'Register 10 (VREF2P)',
'NIXD0382':'Register 11 (TUNE)',
'NIXD0407':'Pixel mask - detail',
'NIXD0410':'TH - Ch 0',
'NIXD0411':'TH - Ch 1',
'NIXD0412':'TH - Ch 2',
'NIXD0413':'TH - Ch 3',
'NIXD0414':'TH - Ch 4',
'NIXD0415':'TH - Ch 5',
'NIXD0416':'TH - Ch 6',
'NIXD0417':'TH - Ch 7',
'NIXD0418':'TH - Ch 8',
'NIXD0419':'TH - Ch 9',
'NIXD0420':'TH - Ch 10',
'NIXD0421':'TH - Ch 11',
'NIXD0422':'TH - Ch 12',
'NIXD0423':'TH - Ch 13',
'NIXD0424':'TH - Ch 14',
'NIXD0425':'TH - Ch 15',
'NIXD0426':'TH - Ch 16',
'NIXD0427':'TH - Ch 17',
'NIXD0428':'TH - Ch 18',
'NIXD0429':'TH - Ch 19',
'NIXD0430':'TH - Ch 20',
'NIXD0431':'TH - Ch 21',
'NIXD0432':'TH - Ch 22',
'NIXD0433':'TH - Ch 23',
'NIXD0434':'TH - Ch 24',
'NIXD0435':'TH - Ch 25',
'NIXD0436':'TH - Ch 26',
'NIXD0437':'TH - Ch 27',
'NIXD0438':'TH - Ch 28',
'NIXD0439':'TH - Ch 29',
'NIXD0440':'TH - Ch 30',
'NIXD0441':'TH - Ch 31',
'NIXG0001':'IDPU + reboot mask',
'NIXG0009':'SSID global 1',
'NIXG0010':'SSID global 2',
'NIXG0011':'SSID global 4',
'NIXG0012':'SSID global 5',
'NIXG0013':'SSID global 6',
'NIXG0014':'SSID global 7',
'NIXG0015':'SSID global 8',
'NIXG0016':'SSID global 9',
'NIXG0017':'SSID global 10',
'NIXG0018':'SSID global 11',
'NIXG0019':'SSID global 12',
'NIXG0020':'Flare - global',
'NIXG0033':'HW/SW status 1',
'NIXG0034':'HW/SW status 2',
'NIXG0042':'Energy bound',
'NIXG0064':'HK global 15',
'NIXG0070':'HW/SW status 3',
'NIXG0071':'HW/SW status 4',
'NIXG0135':'Boot status flags',
'NIXG0160':'Compression Schema',
'NIXG0250':'HK global 1',
'NIXG0251':'HK global 2',
'NIXG0252':'HK global 3',
'NIXG0253':'HK global 4',
'NIXG0254':'HK global 5',
'NIXG0255':'HK global 7',
'NIXG0256':'HK global 8',
'NIXG0257':'HK global 9',
'NIXG0258':'HK global 10',
'NIXG0259':'HK global 11',
'NIXG0260':'HK global 12',
'NIXG0261':'HK global 13',
'NIXG0262':'HK global 14',
'NIXG0263':'HK global 6',
'NIXG0300':'SbSpect1',
'NIXG0301':'SbSpect2',
'NIXG0302':'SbSpect3',
'NIXG0303':'SbSpect4',
'NIXG0304':'SbSpect5',
'NIXG0305':'SbSpect6',
'NIXG0306':'SbSpect7',
'NIXG0307':'SbSpect8',
'NIXG0358':'Spacewire status',
'NIXG0366':'Register mask applied',
'NIXG0367':'Reg ICOMP IREQ.',
'NIXG0369':'Register 3 (TH) 1',
'NIXG0370':'Register 3 (TH) 2',
'NIXG0371':'Register 3 (TH) 3',
'NIXG0372':'Register 3 (TH) 4',
'NIXG0373':'Register 3 (TH) 5',
'NIXG0374':'Register 3 (TH) 6',
'NIXG0375':'Register 3 (TH) 7',
'NIXG0376':'Reg 5-11 TH SelfTest',
'NIXG0377':'Register 3 (TH) 8',
'NIXG0403':'Calib structure',
'NIXG0404':'SSID global 3',
'NIXS0001':'DPU_SPW_C criter',
'NIXS0002':'DPU_DET_C criter',
'NIXS0003':'ATT_C criteria',
'ZZPAD008':'Filler 8 bits',
'ZZPAD016':'Filler 16 bits',
'ZZPAD024':'Filler 24 bits',
'ZZPAD032':'Filler 32 bits'}
SW={
'NIX00001':'16-bit copy of the Packet ID',
'NIX00002':'16-bit copy of the Packet Sequence',
'NIX00003':'Failure ID',
'NIX00004':'Packet type from the received TC',
'NIX00005':'Packet sub-type from the received TC',
'NIX00006':'Received checksum',
'NIX00007':'Calculated CRC',
'NIX00008':'Position in byte of the first inconsistent parameter',
'NIX00009':'Received value of the first inconsistent parameter',
'NIX00010':'Packet sequence flags',
'NIX00011':'Packet sequence count',
'NIX00012':'Current operation mode',
'NIX00013':'Target mode',
'NIX00014':'MID',
'NIX00015':'Start Address',
'NIX00016':'Length - number of bytes in block',
'NIX00017':'Received segment mask',
'NIX00018':'Expected segment mask',
'NIX00019':'Mask of FDIR function',
'NIX00020':'Structure ID (SID)',
'NIX00021':'FDIR parameter',
'NIX00022':'FDIR parameter ID',
'NIX00023':'Uploaded FDIR parameter value',
'NIX00024':'Memory operation',
'NIX00025':'Service Type',
'NIX00026':'Service Subtype',
'NIX00027':'Received length',
'NIX00028':'Expected packet length',
'NIX00029':'Version number',
'NIX00030':'Packet type',
'NIX00031':'Data field header flag',
'NIX00032':'CCSDS secondary header flag',
'NIX00033':'PUS version',
'NIX00034':'FLASH operation state',
'NIX00035':'LUT ID',
'NIX00037':'Unique data request number S_h',
'NIX00038':'Start Time - sub-seconds S_h',
'NIX00039':'Tmin (relative) [1/10 seconds]',
'NIX00040':'Tmax (relative) [1/10 seconds]',
'NIX00041':'Tdivision unit [1/10 seconds]',
'NIX00042':'Selftest bitmask',
'NIX00043':'Last executed state',
'NIX00044':'Selected MID from LoadASW module',
'NIX00045':'Image MID from LoadASW module',
'NIX00046':'Image pages from LoadASW module',
'NIX00047':'Image CRC from LoadASW module',
'NIX00048':'Calculated CRC (buffered FLASH) from LoadASW module',
'NIX00049':'Number of pages from ExecuteASW module',
'NIX00050':'Stored CRC from ExecuteASW module',
'NIX00051':'Calculated CRC from ExecuteASW module',
'NIX00052':'Selected MID to be save ASW imag',
'NIX00053':'Selected pages to save as ASW image',
'NIX00054':'TC Packet ID of the oldest unprocessed TC packet',
'NIX00055':'TC Packet Sequence Control of the oldest unprocessed TC packet',
'NIX00056':'Received Ack flags (4b)',
'NIX00057':'StartASW state',
'NIX00058':'Invalid SID',
'NIX00059':'Heartbeat value - OBT Coarse Time',
'NIX00060':'Flare Message 3,25 4',
'NIX00061':'X Location',
'NIX00062':'Y Location',
'NIX00063':'Flare Duration 3,25',
'NIX00064':'Received FDIR function mask',
'NIX00065':'Counts',
'NIX00066':'Requested page address',
'NIX00067':'Address after operation',
'NIX00068':'Allowed mask of FDIR function',
'NIX00069':'System ID',
'NIX00070':'Operation ID',
'NIX00071':'Footprints to identify which tests are currently running.',
'NIX00072':'Median value of trigger',
'NIX00073':'Maximum value of trigger',
'NIX00074':'Footprints to identify which tests have been selected, but cannot be executed. 0...not selected, 1...selected. (see 74)',
'NIX00075':'Start address in tested MID',
'NIX00076':'Total number of attenuator motions over the mission',
'NIX00077':'End address in tested MID',
'NIX00078':'Aspect Diode A0',
'NIX00079':'Aspect Diode A1',
'NIX00080':'Aspect Diode B0',
'NIX00081':'Aspect Diode B1',
'NIX00082':'Length of the reported data (in single addressable unit with count starting from zero)',
'NIX00083':'MUL = 1',
'NIX00084':'MUL = 4',
'NIX00085':'FDIR function status',
'NIX00086':'Page with failed CRC check',
'NIX00087':'Data processing level',
'NIX00088':'Summing value',
'NIX00089':'Number of samples',
'NIX00090':'ChA diode 0 voltage',
'NIX00091':'ChA diode 1 voltage',
'NIX00092':'ChB diode 0 voltage',
'NIX00093':'ChB diode 1 voltage',
'NIX00094':'Attenuator currents',
'NIX00096':'Limit value of parameter that is out of bound',
'NIX00097':'ID of HK line',
'NIX00098':'Actual value of parameter out of bounds',
'NIX00099':'MID that was checked',
'NIX00100':'Detector number',
'NIX00101':'Mean ASIC temperature',
'NIX00102':'Std dev of the ASIC temperature',
'NIX00103':'Group number',
'NIX00104':'Number of structures (NxP), max. 682',
'NIX00105':'Channel number',
'NIX00106':'Mean of the ASIC ADC channel',
'NIX00107':'Std dev of the ASIC ADC channel',
'NIX00108':'Detected threshold',
'NIX00109':'Mean of the ADC group',
'NIX00110':'Std dev of the ADC group',
'NIX00112':'Selected MID',
'NIX00113':'MID from ASW image header',
'NIX00114':'Number of pages from ASW image header',
'NIX00115':'CRC from ASW image header',
'NIX00116':'Calculated CRC',
'NIX00117':'Size of ASW image to store',
'NIX00119':'Pixel ID (4 bits)',
'NIX00120':'SSID',
'NIX00121':'Start Time - sec',
'NIX00122':'Duratior',
'NIX00123':'Quiet Time',
'NIX00124':'Live Time',
'NIX00125':'Average temperature',
'NIX00126':'Movement type',
'NIX00127':'Initial flags',
'NIX00128':'End flags',
'NIX00129':'Main context file flag',
'NIX00130':'Backup context file flag',
'NIX00131':'Processor State Register',
'NIX00132':'Trap Base Register',
'NIX00133':'Leon: Program Counter',
'NIX00134':'Leon: Next Program Counter',
'NIX00142':'Received error code',
'NIX00143':'Received byte count',
'NIX00144':'CCSDS header bytes received',
'NIX00145':'Operation duration of SDRAM zeroing',
'NIX00146':'Sp - Number of compressed spectral points',
'NIX00147':'SuSW Parameter ID',
'NIX00148':'SuSW Parameter subID',
'NIX00149':'SuSW Parameter data',
'NIX00150':'ASW Parameter ID',
'NIX00151':'ASW Parameter subID',
'NIX00152':'ASW Parameter data',
'NIX00158':'Compressed spectral point',
'NIX00159':'Number of structures M',
'NIX00160':'Subspectrum Mask',
'NIX00173':'Mask of error chips',
'NIX00175':'ID of edac module whose scrubbing rate change',
'NIX00176':'New scrubbing rate in effect',
'NIX00177':'Old scrubbing rate that was changed',
'NIX00178':'Counts leading to change of rate',
'NIX00179':'Threshold that was exceeded (upper or lower',
'NIX00180':'Period of single event upset checking used',
'NIX00181':'HV line 0 1 to 16 1 17 to 32',
'NIX00182':'Original state',
'NIX00183':'New state',
'NIX00184':'Initialisation status',
'NIX00185':'Total number of files',
'NIX00186':'Number of bad blocks',
'NIX00187':'Number of error blocks',
'NIX00188':'Number of free blocks',
'NIX00189':'Attenuator movement',
'NIX00190':'Address where SDRAM partial memory test failed',
'NIX00191':'Address where SDRAM full memory test failed',
'NIX00192':'Address where pattern memory test failed',
'NIX00193':'FDIR function triggering TM(5,4)',
'NIX00194':'Selected start file number',
'NIX00195':'Selected end file number',
'NIX00196':'Maximum file number to select',
'NIX00197':'Data structure (counted from 0)',
'NIX00199':'Register mask',
'NIX00200':'Allowed minimum for the given parameter ID',
'NIX00201':'Allowed maximum for the given parameter ID',
'NIX00202':'Expected length of TCs data (without headers or CRC)',
'NIX00203':'Requested value to be set',
'NIX00204':'Received length of TCs data (without headers or CRC)',
'NIX00206':'Selected configuration value',
'NIX00207':'Maximum subsystem ID available',
'NIX00208':'System ID selected',
'NIX00209':'Subsystem ID selected',
'NIX00210':'Exceeded configuration limit',
'NIX00215':'Lower accumulator bound',
'NIX00216':'Number of summed accumulators per spectral point',
'NIX00217':'Number of spectral points',
'NIX00218':'Selected test bitmask not available for current SW',
'NIX00222':'Start file',
'NIX00223':'Flash block offset - start file',
'NIX00224':'End file',
'NIX00225':'Flash block offset - end file',
'NIX00226':'Number of processed files',
'NIX00227':'Number of bad blocks before recovery attempts',
'NIX00228':'Number of bad blocks after recovery attempts',
'NIX00229':'Number of error blocks before recovery attempts',
'NIX00230':'Number of error blocks after recovery attempts',
'NIX00231':'Number of free blocks before recovery attempts',
'NIX00232':'Number of free blocks after recovery attempts',
'NIX00233':'Number of filled blocks before recovery attempts',
'NIX00234':'Number of filled blocks after recovery attempts',
'NIX00235':'Position sensor AB status',
'NIX00236':'Position sensor BC status',
'NIX00237':'Motor 1 used',
'NIX00238':'Motor 2 used',
'NIX00239':'number of QL iterations checked',
'NIX00240':'number of yellow flags within Nbad iterations for detector to be red-flagged',
'NIX00241':'New active detector mask',
'NIX00242':'Compressed Trigger accumulator 0',
'NIX00243':'Compressed Trigger accumulator 1',
'NIX00244':'Compressed Trigger accumulator 2',
'NIX00245':'Compressed Trigger accumulator 3',
'NIX00246':'Compressed Trigger accumulator 4',
'NIX00247':'Compressed Trigger accumulator 5',
'NIX00248':'Compressed Trigger accumulator 6',
'NIX00249':'Compressed Trigger accumulator 7',
'NIX00250':'Compressed Trigger accumulator 8',
'NIX00251':'Compressed Trigger accumulator 9',
'NIX00252':'Compressed Trigger accumulator 10',
'NIX00253':'Compressed Trigger accumulator 11',
'NIX00254':'Compressed Trigger accumulator 12',
'NIX00255':'Compressed Trigger accumulator 13',
'NIX00256':'Compressed Trigger accumulator 14',
'NIX00257':'Compressed Trigger accumulator 15',
'NIX00258':'Number of energy groups',
'NIX00259':'Number of data elements D',
'NIX00260':'Compressed pixels counts',
'NIX00261':'Flux',
'NIX00262':'Number of detectors',
'NIX00263':'Real visibility component',
'NIX00264':'Imaginary visibility component',
'NIX00265':'Base pixel mask (RCR0)',
'NIX00266':'Energy bin edge mask - low boundary',
'NIX00267':'Compressed combined trigger accumulator',
'NIX00268':'Compressed summed counts',
'NIX00269':'Closing time offset',
'NIX00270':'Number of energies',
'NIX00271':'Number of data points Lightcurves',
'NIX00272':'Compressed lightcurves',
'NIX00273':'Number of data points Triggers',
'NIX00274':'Compressed triggers',
'NIX00275':'Number of data points RCR',
'NIX00276':'RCR',
'NIX00277':'Number of data points Background',
'NIX00278':'Compressed background',
'NIX00279':'Samples per variance values',
'NIX00280':'Number of samples Variance',
'NIX00281':'Compressed Variance',
'NIX00282':'Energy mask',
'NIX00283':'Flare Location Z (arcmin)',
'NIX00284':'Flare Location Y (arcmin)',
'NIX00285':'UBSD counter',
'NIX00286':'PALD counter',
'NIX00287':'Start time coarse SCET',
'NIX00288':'End time coarse SCET',
'NIX00289':'Highest flare flag',
'NIX00290':'TM byte volume',
'NIX00291':'Average Z location',
'NIX00292':'Average Y location',
'NIX00293':'Flare TM processing status',
'NIX00294':'Number of listed flares',
'NIX00297':'Config parameter 236,16',
'NIX00298':'Config parameter ID 236,16',
'NIX00299':'EID',
'NIX00300':'Footprints to identify which test has been executed 0-not executed, 1-executed.',
'NIX00301':'Test result - success/failure flags',
'NIX00303':'Software version',
'NIX00304':'Previous mode',
'NIX00305':'Actual mode',
'NIX00306':'Mode transition reason',
'NIX00307':'CPU load',
'NIX00308':'HV PSU identification (Bit mask 0x01)',
'NIX00309':'Flare strength',
'NIX00311':'Timer IRQ counter',
'NIX00312':'Space Wire IRQ counter',
'NIX00313':'ADC Read IRQ counter',
'NIX00323':'CPU load in percentages - CPU overload condition detected warning report',
'NIX00324':'Limit T1',
'NIX00325':'Limit T2',
'NIX00326':'Limit N1',
'NIX00327':'Limit N2',
'NIX00328':'Current N1',
'NIX00329':'Current N2',
'NIX00333':'Failed temperature sensor',
'NIX00334':'Failed regulators',
'NIX00336':'Requested mode',
'NIX00337':'Detector IRQ counter',
'NIX00338':'Current time in ms',
'NIX00339':'Memory ID',
'NIX00340':'Direction of the attenuator move',
'NIX00341':'Current status which motor was used',
'NIX00342':'Status of attenuator position sensors',
'NIX00344':'Current working timeout',
'NIX00345':'Bitmask of detectors above the limit (32 detectors)',
'NIX00346':'Identification of a detector with the highest rate',
'NIX00347':'Limit of the high rate',
'NIX00348':'Bitmask of quadrants with overcurrent detected (log. 1 ... overcurrent)',
'NIX00349':'Actual current quadrant 1',
'NIX00350':'Actual current quadrant 2',
'NIX00351':'Actual current quadrant 3',
'NIX00352':'Actual current quadrant 4',
'NIX00353':'Limit of detectors quadrant overcurrent',
'NIX00354':'Quadrant identification (1..4)',
'NIX00355':'Temperature (actual, leading to generation of this event)',
'NIX00357':'Counter of HV PSU failures since the instrument power-on',
'NIX00361':'Actual rate of the detector with the highest rate',
'NIX00362':'Quarters requested for operations',
'NIX00363':'Powered quarters',
'NIX00364':'Groups requested for operations',
'NIX00365':'Enabled groups',
'NIX00375':'Register 4 (SEL_TEST)',
'NIX00383':'Register 12 (ALIMON)',
'NIX00385':'Number of structures',
'NIX00386':'Parameter indicating if failure occurred during enabling (1) or disabling (0) of file transfer to SSMM ie',
'NIX00387':'Context segment counter of TC(22,3)',
'NIX00388':'LUT type',
'NIX00389':'Selected configuration',
'NIX00390':'Highest configuration possible',
'NIX00391':'Limit T3',
'NIX00392':'Actual quiet (non-movement) time T3',
'NIX00393':'Actual value of parameter out of bounds',
'NIX00394':'Limit value of parameter that is out of bounds',
'NIX00399':'Number of time samples',
'NIX00401':'Rate control regime',
'NIX00402':'SCET time stamp of the first sampl',
'NIX00403':'Number of substructures',
'NIX00404':'Starting time relative to timestamp in units of 1/10 seconds',
'NIX00405':'Duration in units of 0.1',
'NIX00406':'Number science data samples',
'NIX00407':'Detectors mask',
'NIX00408':'Trigger accumulator 0',
'NIX00409':'Trigger accumulator 1',
'NIX00410':'Trigger accumulator 2',
'NIX00411':'Trigger accumulator 3',
'NIX00412':'Trigger accumulator 4',
'NIX00413':'Trigger accumulator 5',
'NIX00414':'Trigger accumulator 6',
'NIX00415':'Trigger accumulator 7',
'NIX00416':'Trigger accumulator 8',
'NIX00417':'Trigger accumulator 9',
'NIX00418':'Trigger accumulator 10',
'NIX00419':'Trigger accumulator 11',
'NIX00420':'Trigger accumulator 12',
'NIX00421':'Trigger accumulator 13',
'NIX00422':'Trigger accumulator 14',
'NIX00423':'Trigger accumulator 15',
'NIX00436':'HK_DPU_1V5_V',