-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathfserr.ctl
More file actions
8067 lines (8050 loc) · 154 KB
/
Copy pathfserr.ctl
File metadata and controls
8067 lines (8050 loc) · 154 KB
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
""
2A -301
Parameters must since single characters
""
2A -302
Parameters must be 'a', 'b', ..., 'd' (to maximum possible number of RDBEs).
""
2B -201
Error decoding IF value, must be both, 0, or 1.
""
2B -202
Error decoding attenuator value, must be auto, 0, 0.5, 1.0, ..., 31.0,31.5.
""
2B -203
Error decoding target RMS value, must be between 0.0 and 128.0, inclusive.
""
2B -301
No RDBEs active, see active_rdbes command.
""
2B -302
IF 0 RMS too low, rdb?W
""
2B -303
IF 1 RMS too low, rdb?W
""
2B -304
IF 0 RMS too high, rdb?W
""
2B -305
IF 1 RMS too high, rdb?W
""
2B -401
error retrieving class for IF0 query for dbe_atten, rdb?W
""
2B -402
error retrieving class for IF1 query for dbe_atten, rdb?W
""
2B -501
error decording first IF for dbe_atten, rdb?W
""
2B -502
error decording first attenuator for dbe_atten, rdb?W
""
2B -503
error decording first RMS for dbe_atten, rdb?W
""
2B -504
error decording second IF for dbe_atten, rdb?W
""
2B -502
error decording second attenuator for dbe_atten, rdb?W
""
2B -503
error decording second RMS for dbe_atten, rdb?W
""
2B -603
can't specific numberic attenuation and target
""
2B -901
response not received for dbe_atten
""
2B -902
program error: strdup() failed for dbe_atten
""
2M -301
must specify at least 1 argument for rdbe command
""
2M -302
No RDBEs active, see active_rdbes command.
""
2M -401
error retrieving class from ?W
""
2T -501
Error decoding dbe_tsys response from rdb?W.
""
2T -502
Non-zero return code in dbe_tsys response from rdb?W.
""
2T -503
Internal error in decoding dbe_tsys response from rdb?W.
""
2T -504
Wrong number of channels in dbe_tsys response from rdb?W.
""
3A -301
Error decoding argument
""
3A -302
Argument must be 1 ... 4 (maximum possible number of Mark 5Cs).
""
35 -401
error retrieving class for dot query in get_RDBEtime
""
35 -402
error decoding time in get_RDBEtime
""
35 -403
unknown RDBE unit in get_RDBEtime
""
3E -501
error decoding dot? time parameter
""
3E -502
error decoding dot? status parameter
""
3E -503
error decoding dot? OS_time parameter
""
3E -504
error decoding dot? DOT_OS_time_diff parameter
""
3E -505
error decoding dot? vdif_epoch parameter
""
3E -901
query response not received
""
3E -902
program error: strdup() failed
""
3K -301
command does not accept parameters
""
3K -302
No Mark 6s active, see active_mk6s command.
""
3K -401
error retrieving class for scan_check response, ?W
""
3K -501
error decoding scan_check? scan parameter
""
3K -502
error decoding scan_check? label parameter
""
3K -503
error decoding scan_check? data type parameter
""
3K -504
error decoding scan_check? date code parameter
""
3K -505
error decoding scan_check? start parameter
""
3K -506
error decoding scan_check? length parameter
""
3K -507
error decoding scan_check? total rate parameter
""
3K -508
error decoding scan_check? missing parameter
""
3K -509
error decoding scan_check? error parameter
""
3K -601
SCAN_CHECK failed
""
3K -602
SCAN_CHECK missing bytes is not zero.
""
3K -603
SCAN_CHECK (trailing) error field is not empty.
""
3K -901
query response not received
""
3K -902
program error: strdup() failed
""
3M -301
must specify at least 1 argument for mk5c command
""
3M -302
No Mark 6s active, see active_mk6s command.
""
3M -401
error retrieving class from ?W
""
3P -301
command does not accept parameters
""
3P -302
No Mark 6s active, see active_mk6s command.
""
3P -401
error retrieving class, ?W
""
3P -501
error decoding pointers? record position, ?W
""
3P -502
error decoding pointers? scan start position, ?W
""
3P -503
error decoding pointers? scan stop position, ?W
""
3P -901
query response not found, ?W
""
3P -902
program error: strdup() failed, ?W
""
3R -101
no default for record parameter
""
3R -201
record parameter must be 'on' or 'off'.
""
3R -202
scan label parameter too long
""
3R -301
No Mark 6s active, see active_mk6s command.
""
3R -302
scan_name defined scan label too long
""
3R -400
error retrieving acknowledgement of command, ?W
""
3R -401
error retrieving class, ?W
""
3R -501
error decoding record? status parameter, ?W
""
3R -502
error decoding record? scan number parameter, ?W
""
3R -503
error decoding record? scan label parameter, ?W
""
3R -901
query response not found, ?W
""
3R -902
program error: strdup() failed, ?W
""
4F -101
No default for mode.
""
4F -201
Mode must be one of: a, b1, b2, c1, c2, d1, ..., d28, e1, ..., e4.
""
4F -202
Rate must be one of: 0.125, 0.25, 0.5, 1, 2, 4, 8, 16, 32.
""
4F -203
Fan must be on of 1:1, 1:2, 1:4.
""
4F -204
Barrel-roll must be off, 8, 16, or m.
""
4F -205
Data modulation must be "off" or "on".
""
4F -206
Synch must be off (or -1) or 0, ..., 16.
""
4F -303
Trackform incompatable with VLBA fan-out.
""
4F -500
No corresponding canned mode to prime formatter with.
""
4F -501
Formatter was failing the synch test.
""
4F -503
Rack ID does not have at least two zero bits.
""
4F -504
Formatter and equip.ctl firmware versions disagree, formatter reports ?W
""
4F -505
Can't use 1:4 fan-out with magnitude bits from VCs 9-14.
""
4F -506
Formatter firmware version in equip.ctl doesn't support barrel rolling.
""
4F -507
Formatter firmware version in equip.ctl doesn't support data modulation.
""
4F -508
Rack ID is odd and Mark 5 record is in use, formatter reports rack ID ?W
""
4F -509
Possible bit slip, Altera clock and sync misalign errors.
""
4M -100
no default for trackform track number
""
4M -200
trackform track must be 2-33, 102-133.
""
4M -301
trackform internal error, bsfo2code bs=NULL
""
4M -302
no default for trackform bitstream
""
4M -303
unknown trackform bit-stream
""
4N -100
no default for tracks track number
""
4N -200
tracks track must be an v(0-7), m(0-7), 2-33, or 102-133.
""
4R -101
No default for headstack.
""
4R -102
No default for home track.
""
4R -201
Rollform headstack must be 1 or 2.
""
4R -202
Rollform home tracks, must be 2-33.
""
4R -203
Rollform output tracks must be null, -1, or 2-23.
""
4R -301
Rollform can not have more than 16 output tracks.
""
55 -401
error retrieving class for dot query in get_5btime
""
55 -402
error decoding time in get_5btime
""
55 -403
error retrieving class for 1pps_source/clock_set queries in get_5btime
""
5B -301
command does not accept parameters
""
5B -302
VSN does not contain + or - in first seven characters
""
5B -401
error retrieving class
""
5B -402
Use "bank_check" and "bank_status" for Mark 5A, 5B, and 5C recorders only.
""
5B -411
error retrieving class, rtime/bank_set
""
5B -501
error decoding rtime? seconds parameter
""
5B -502
error decoding rtime? gb parameter
""
5B -503
error decoding rtime? percent parameter
""
5B -504
error decoding rtime? mode parameter
""
5B -505
error decoding rtime? sub-mode parameter
""
5B -506
error decoding rtime? track rate parameter
""
5B -507
error decoding rtime? total rate parameter
""
5B -511
error decoding bank_set? active bank parameter
""
5B -512
error decoding bank_set? active vsn parameter
""
5B -513
error decoding bank_set? inactive bank parameter
""
5B -514
error decoding bank_set? inactive vsn parameter
""
5B -521
error decoding vsn? vsn parameter
""
5B -522
error decoding vsn? check parameter
""
5B -523
error decoding vsn? disk parameter
""
5B -524
error decoding vsn? original vsn parameter
""
5B -525
error decoding vsn? new vsn parameter
""
5B -534
error decoding rtime? source parameter
""
5B -535
error decoding rtime? mask parameter
""
5B -534
error decoding rtime? decimate parameter
""
5B -901
query response not received
""
5B -902
program error: strdup() failed
""
5B -911
query response not received
""
5B -912
program error: strdup() failed
""
5B -921
query response not received
""
5B -922
program error: strdup() failed
""
5C -301
command does not accept parameters
""
5D -301
data_check command does not accept parameters
""
5D -403
error retrieving class for data_check response
""
5D -404
Use "data_check" for Mark 5A, 5B, and 5C recorders only.
""
5D -501
error decoding data_check? mode parameter
""
5D -502
error decoding data_check? submode parameter
""
5D -503
error decoding data_check? time parameter
""
5D -504
error decoding data_check? offset parameter
""
5D -505
error decoding data_check? period parameter
""
5D -506
error decoding data_check? bytes parameter
""
5D -507
error decoding data_check? missing parameter
""
5D -511
error decoding data_check? source parameter
""
5D -512
error decoding data_check? start parameter
""
5D -513
error decoding data_check? date code parameter
""
5D -514
error decoding data_check? frames parameter
""
5D -515
error decoding data_check? frame header period parameter
""
5D -516
error decoding data_check? total recording rate parameter
""
5D -517
error decoding data_check? byte offset parameter
""
5D -518
error decoding data_check? total missing bytes parameter
""
5D -522
error decoding data_check? submode parameter
""
5D -523
error decoding data_check? time parameter
""
5D -524
error decoding data_check? offset parameter
""
5D -601
DATA_CHECK failed
""
5D -901
query response not received
""
5D -902
program error: strdup() failed
""
5E -501
error decoding dot? time parameter
""
5E -502
error decoding dot? status parameter
""
5E -503
error decoding dot? FHG_status parameter
""
5E -504
error decoding dot? OS_time parameter
""
5E -505
error decoding dot? DOT_OS_time_diff parameter
""
5E -511
error decoding 1pps_source? source parameter
""
5E -521
error decoding clock_set? freq parameter
""
5E -522
error decoding clock_set? source parameter
""
5E -523
error decoding clock_set? clock_gen parameter
""
5E -901
query response not received
""
5E -902
program error: strdup() failed
""
5E -903
query response not received
""
5E -904
program error: strdup() failed
""
5E -905
query response not received
""
5E -906
program error: strdup() failed
""
5F -201
scan name too long (maximum 32 characters)
""
5F -202
destinaton file name too long (maximum 64 characters)
""
5F -203
start time too long (maximum 32 characters)
""
5F -204
end time too long (maximum 32 characters)
""
5F -205
options too long (maximum 32 characters)
""
5F -301
fork to create child (to run autoftp script) failed, see above error.
""
5F -302
Exec of xterm (to run autoftp script) failed, see above error.
""
5F -303
fork to create grandchild (to run autoftp script) failed, see above error.
""
5F -304
Child did not exit normally when trying to run autoftp script.
""
5F -305
No locally defined file name and Mark5 system did not return file name.
""
5F -306
Non-zero exist status ?WWW.
""
5F -307
Non-zero exist status from child when trying to run autoftp script, see above.
""
5F -308
Parameter after 'abort' must be 'autoftp' or null (empty).
""
5F -400
Error retrieving class for response to commands.
""
5F -401
Error retrieving class for response to query.
""
5F -402
Use "disk2file" for Mark 5 and FlexBuff (including Mark 6) recorders only.
""
5F -501
error decoding disk2file? status parameter
""
5F -502
error decoding disk2file? destination file name parameter
""
5F -503
error decoding disk2file? start byte parameter
""
5F -504
error decoding disk2file? current byte parameter
""
5F -505
error decoding disk2file? end byte parameter
""
5F -506
error decoding disk2file? option parameter
""
5F -511
error decoding scan_set? scan number parameter
""
5F -512
error decoding scan_set? scan label parameter
""
5F -513
error decoding scan_set? start byte parameter
""
5F -514
error decoding scan_set? end byte parameter
""
5F -521
error decoding scan_set? scan label parameter
""
5F -522
error decoding scan_set? start time parameter
""
5F -523
error decoding scan_set? end time parameter
""
5F -901
query response not found for disk2file?
""
5F -902
program error: strdup() failed for diskfile?
""
5F -911
query response not found for scan_set?
""
5F -912
program error: strdup() failed for scan_set?
""
5H -301
command does not accept parameters
""
5H -302
background Mark 5 error(s) detected - see below
""
5H -303
more Mark 5 error messages are pending
""
5H -401
error retrieving class in mk5cn_exec
""
5H -501
unexpected number of replies (expected 1) from mk5cn
""
5H -900
status? query response not received
""
5H -901
error decoding status word: overflow or not hex number or too big
""
5H -910
error? query response not received
""
5H -912
strdup failed initializing get_error
""
5I -101
No default for control parameter
""
5I -102
No default for destination parameter if control is connect.
""
5I -201
Control parameter must be one of: off, on, disconnect, connect
""
5I -202
Destination parameter too long (maximum 64 characters)
""
5I -400
Error retrieving class for response to commands.
""
5I -401
error retrieving class
""
5I -501
error decoding in2net? status parameter
""
5I -502
error decoding in2net? destination parameter
""
5I -503
error decoding in2net? received parameter
""
5I -504
error decoding in2net? buffered parameter
""
5I -901
query response not found
""
5I -902
program error: strdup() failed
""
5K -301
scan_check command does not accept parameters, except 'force'
""
5K 302
There have not been two scan_name=... commands since the schedule started, use scan_check=force to force check
""
5K -401
error retrieving class for scan_check response
""
5K -402
Use "scan_check" for Mark 5 and FlexBuff (including Mark 6) recorders only.
""
5K -501
error decoding scan_check? scan parameter
""
5K -502
error decoding scan_check? label parameter
""
5K -503
error decoding scan_check? mode parameter
""
5K -504
error decoding scan_check? submode parameter
""
5K -505
error decoding scan_check? start parameter
""
5K -506
error decoding scan_check? length parameter
""
5K -507
error decoding scan_check? track rate parameter
""
5K -508
error decoding scan_check? missing parameter
""
5K -513
error decoding scan_check? data type parameter
""
5K -514
error decoding scan_check? data code parameter
""
5K -517
error decoding scan_check? total rate parameter
""
5K -519
error decoding scan_check? error parameter
""
5K -601
SCAN_CHECK failed
""
5K -602
SCAN_CHECK missing bytes is not zero.
""
5K 602
Warning: SCAN_CHECK missing bytes is not zero, but recorder is Mark 5C or FlexBuff.
""
5K -901
query response not received
""
5K -902
program error: strdup() failed
""
5L -301
command does not accept parameters
""
5M -301
must specify at least 1 argument for mk5 command
""
5M -401
error retrieving class
""
5P -301
command does not accept parameters
""
5P -401
error retrieving class
""
5P -402
Use "disk_pos" for Mark 5A, 5B, and 5C recorders only.
""
5P -501
error decoding position? record position
""
5P -502
error decoding position? play position
""
5P -511
error decoding pointers? record position
""
5P -512
error decoding pointers? scan start position
""
5P -513
error decoding pointers? scan stop position
""
5P -901
query response not found
""
5P -902
program error: strdup() failed
""
5R -101
no default for record parameter
""
5R -201
record parameter must be 'on' or 'off'.
""
5R -202
scan label parameter too long
""
5R -302
scan_name defined scan label too long
""
5R -400
error retrieving acknowledgement of command
""
5R -401
error retrieving class
""
5R -501
error decoding record? status parameter
""
5R -502
error decoding record? scan number parameter
""
5R -503
error decoding record? scan label parameter
""
5R -901
query response not found
""
5R -902
program error: strdup() failed
""
5S -301
command does not accept parameters
""
5S -401
error retrieving class
""
5S -501
error decode disk_serial? serial number parameter
""
5S -901
query response not found
""
5S -902
program error: strdup() failed
""
5S -903
program error: too many serial numbers
""
5T -104
No default sample rate if clock rate (from equip.ctl) is "none".
""
5T -114
No default sample rate for Ethernet recorders unless decimate was specified with mark5b.
""
5T -201
source parameter must be 'vdif' or 'mark5b' for Mark 5C/FlexBuff.
""
5T -202
mask parameter must specify a non-zero integer, maximum 64 bits, usually as a hex value, e.g., 0xf
""
5T -203
decimate parameter must be one of 1, 2, 4, 8, or 16
""
5T -204
Mark 5B recorder sample rate must be integer 2, 4, 8, 16, 32, or 64 (Ms/s).
""
5T -205
fpdp parameter, if specified, must be 1 or 2.
""
5T -206
okay parameter must be 'disk_record_ok' or null.
""
5T -211
Source parameter must be 'ext', 'tvg', or 'ramp' for Mark 5B.
""
5T -212
Upper or lower 32 bits of mask must be zero for Mark 5B.
""
5T -213
For Mark 5B recorder minimum implied sample rate is 2 MHz. Check Mark 5B clock rate in equip.ctl.
""
5T -214
For Mark 5B recorder implied decimation must be integer 1, 2, 4, 8, or 16. Check Mark 5B clock rate in equip.ctl.
""
5T -222
Mask must be null for DBBC3.
""
5T -223
Decimation is not supported for Mark 5C and FlexBuff recorders.
""
5T -224
For Ethernet recorders, total date rate must be an integer multiple of 1 Mbps.
""
5T -234
Can't specify sample rate and decimate parameters simultaneously
""
5T -244
Sample rate must be a positive integer s/s.
""
5T -301
Don't change mode while recording, use disk_record=off first or (dangerous) use disk_record_ok as the sixth parameter.
""
5T -302
Mixed decimations for DBBC3 racks are not supported at this time for mk5c_mode/fb_mode.
""
5T -303
Can't configure the recorder if no DBBC3 channels are selected.
""
5T -400
error retrieving acknowledgement of command
""
5T -401
error retrieving class
""
5T -402
Use "mk5b_mode" for Mark 5B recorders only.
""
5T -403
Use "mk5c_mode" for Mark 5C and Flexbuff recorders only.
""
5T -501
error decoding mode? source/magic parameter
""
5T -502
error decoding mode? mask or format parameter
""
5T -503
error decoding mode? decimate or tracks parameter
""
5T -504
error decoding mode? fpdp or track bit rate parameter
""
5T -505
error decoding mode? vdif frame size parameter
""
5T -512
error decoding mode? format parameter
""
5T -513
error decoding mode? tracks parameter
""
5T -514
error decoding mode? track bit rate parameter
""
5T -901
query response not found
""
5T -902
program error: strdup() failed
""
10 -401
error retrieving class for time query in get_fila10gtime
""
10 -402
error decoding time in get_fila10gtime
""
AN -1
Illegal or unimplemented mode
""
AN -2
Time-out while waiting for a response
""
AN -3
Antenna response garbled.
""
AN -4
Interface not set to remote.
""
AN -5
Error return from antenna.
""
AN -6
Antenna LU is down, please UP it.
""
AN -7
Antenna communications restored.
""
AN -8
Pointing system NOT present.
""
AN -9
antenna=... command error, see above errors.
""