summaryrefslogtreecommitdiff
path: root/decoder/test/rfm12/rfm12.output
blob: f00e90c7ae1f56cc3ea0ff44e54cfc8b0e946cce (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
6388649-6388855 rfm12: cmd: "Status read command" "Status"
6388649-6388686 rfm12: disabled_return: "RGIT/FFIT"
6388686-6388710 rfm12: return: "POR"
6388710-6388734 rfm12: disabled_return: "RGUR/FFOV"
6388734-6388758 rfm12: disabled_return: "WKUP"
6388758-6388782 rfm12: disabled_return: "EXT"
6388782-6388807 rfm12: disabled_return: "LBD"
6388807-6388831 rfm12: disabled_return: "FFEM"
6388831-6388855 rfm12: disabled_return: "RSSI/ATS"
6389001-6389037 rfm12: disabled_return: "DQD"
6389037-6389061 rfm12: disabled_return: "CRL"
6389061-6389085 rfm12: disabled_return: "ATGL"
6388686-6388710 rfm12: interpretation: "Power on Reset"
6389085-6389208 rfm12: return: "AFC offset"
6389875-6390080 rfm12: cmd: "Power management" "Power"
6390214-6390250 rfm12: disabled: "Receiver chain" "er"
6390250-6390274 rfm12: param: "Baseband circuit" "ebb"
6390274-6390298 rfm12: disabled: "Transmission" "et"
6390298-6390323 rfm12: param: "Synthesizer" "es"
6390323-6390347 rfm12: param: "Crystal oscillator" "ex"
6390347-6390371 rfm12: param: "Low battery detector" "eb"
6390371-6390395 rfm12: disabled: "Wake-up timer" "ew"
6390395-6390419 rfm12: param: "Clock output off switch" "dc"
6390250-6390274 rfm12: interpretation: "+" "Turning on"
6390298-6390323 rfm12: interpretation: "+" "Turning on"
6390347-6390371 rfm12: interpretation: "+" "Turning on"
6390395-6390419 rfm12: interpretation: "+" "Turning on"
6390990-6391196 rfm12: cmd: "Configuration command" "Configuration"
6391330-6391366 rfm12: disabled: "Internal data register" "el"
6391366-6391390 rfm12: param: "FIFO mode" "ef"
6391366-6391390 rfm12: interpretation: "+" "Turning on"
6391390-6391439 rfm12: param: "Frequency: 868MHz" "868MHz"
6391390-6391439 rfm12: interpretation: "Changed" "~"
6391439-6391535 rfm12: param: "Capacitance: 12.5pF" "12.5pF"
6392010-6392215 rfm12: cmd: "Data rate command" "Data rate"
6392349-6392555 rfm12: cmd: "1.4kbps"
6392349-6392555 rfm12: interpretation: "Changing" "~"
6392957-6393090 rfm12: cmd: "Receiver control command"
6393090-6393114 rfm12: cmd: "pin16 = VDI output"
6393114-6393164 rfm12: cmd: "VDI: Slow"
6393296-6393381 rfm12: cmd: "Bandwidth: 134kHz"
6393381-6393430 rfm12: cmd: "LNA gain: 0dB"
6393430-6393502 rfm12: cmd: "RSSI threshold: -91"
6393903-6394109 rfm12: cmd: "Data filter command"
6394243-6394303 rfm12: cmd: "Clock recovery: auto mode"
6394327-6394351 rfm12: cmd: "Data filter: digital"
6394376-6394448 rfm12: cmd: "DQD threshold: 4"
6394886-6395093 rfm12: cmd: "FIFO and reset command"
6395225-6395335 rfm12: cmd: "FIFO trigger level: 8"
6395335-6395359 rfm12: cmd: "Synchron length: two bytes"
6395359-6395407 rfm12: cmd: "FIFO fill: After synchron pattern"
6395359-6395407 rfm12: interpretation: "Changing" "~"
6395407-6395431 rfm12: cmd: "Reset mode: non-sensitive"
6395407-6395431 rfm12: interpretation: "Changing" "~"
6395881-6396087 rfm12: cmd: "AFC command"
6396221-6396281 rfm12: cmd: "Mode: During receiving"
6396221-6396281 rfm12: interpretation: "Changing" "~"
6396281-6396330 rfm12: cmd: "Range: No limit"
6396281-6396330 rfm12: interpretation: "Changing" "~"
6396330-6396354 rfm12: disabled: "Strobe edge"
6396354-6396378 rfm12: disabled: "High accuracy mode"
6396378-6396402 rfm12: param: "Enable offset register"
6396402-6396426 rfm12: param: "Enable offset calculation"
6396354-6396378 rfm12: interpretation: "-" "Turning off"
6396827-6397033 rfm12: cmd: "Transceiver control command"
6397167-6397276 rfm12: cmd: "FSK frequency delta: 75kHz"
6397167-6397276 rfm12: interpretation: "Changing" "~"
6397300-6397374 rfm12: cmd: "Relative power: 0B"
6397774-6397980 rfm12: cmd: "PLL setting command"
6398150-6398199 rfm12: cmd: "Clock buffer rise and fall time"
6398223-6398247 rfm12: disabled: "Delay in phase detector" "dly"
6398247-6398271 rfm12: param: "Disable dithering" "ddit"
6398271-6398295 rfm12: cmd: "Max bit rate: 256kbps, high noise"
6398720-6398926 rfm12: cmd: "Low battery detector command"
6399060-6399145 rfm12: cmd: "Clock output: 1MHz" "1MHz"
6399169-6399266 rfm12: cmd: "Low battery voltage: 2.55V" "2.55V"
6401382-6401587 rfm12: cmd: "Power management" "Power"
6401720-6401756 rfm12: param: "Receiver chain" "er"
6401756-6401780 rfm12: param: "Baseband circuit" "ebb"
6401780-6401804 rfm12: disabled: "Transmission" "et"
6401804-6401828 rfm12: param: "Synthesizer" "es"
6401828-6401852 rfm12: param: "Crystal oscillator" "ex"
6401852-6401876 rfm12: param: "Low battery detector" "eb"
6401876-6401900 rfm12: disabled: "Wake-up timer" "ew"
6401900-6401924 rfm12: param: "Clock output off switch" "dc"
6401720-6401756 rfm12: interpretation: "+" "Turning on"
12211749-12211956 rfm12: cmd: "Status read command" "Status"
12211749-12211786 rfm12: return: "RGIT/FFIT"
12211786-12211810 rfm12: disabled_return: "POR"
12211810-12211834 rfm12: disabled_return: "RGUR/FFOV"
12211834-12211858 rfm12: disabled_return: "WKUP"
12211858-12211882 rfm12: disabled_return: "EXT"
12211882-12211906 rfm12: disabled_return: "LBD"
12211906-12211931 rfm12: disabled_return: "FFEM"
12211931-12211956 rfm12: return: "RSSI/ATS"
12212100-12212136 rfm12: return: "DQD"
12212136-12212160 rfm12: return: "CRL"
12212160-12212184 rfm12: return: "ATGL"
12211749-12211786 rfm12: interpretation: "Received data in FIFO"
12211931-12211956 rfm12: interpretation: "Incoming signal above limit"
12212100-12212136 rfm12: interpretation: "Data quality detector"
12212136-12212160 rfm12: interpretation: "Clock recovery locked"
12212184-12212305 rfm12: return: "AFC offset"
12213226-12213431 rfm12: cmd: "FIFO read command" "FIFO read"
12213564-12213771 rfm12: return: "Data: 0C"
12280785-12280991 rfm12: cmd: "Status read command" "Status"
12280785-12280822 rfm12: return: "RGIT/FFIT"
12280822-12280846 rfm12: disabled_return: "POR"
12280846-12280870 rfm12: disabled_return: "RGUR/FFOV"
12280870-12280894 rfm12: disabled_return: "WKUP"
12280894-12280918 rfm12: disabled_return: "EXT"
12280918-12280943 rfm12: disabled_return: "LBD"
12280943-12280967 rfm12: disabled_return: "FFEM"
12280967-12280991 rfm12: return: "RSSI/ATS"
12281136-12281173 rfm12: disabled_return: "DQD"
12281173-12281197 rfm12: return: "CRL"
12281197-12281221 rfm12: return: "ATGL"
12280785-12280822 rfm12: interpretation: "Received data in FIFO"
12280967-12280991 rfm12: interpretation: "Incoming signal above limit"
12281173-12281197 rfm12: interpretation: "Clock recovery locked"
12281221-12281342 rfm12: return: "AFC offset"
12281221-12281342 rfm12: interpretation: "Changed" "~"
12282264-12282470 rfm12: cmd: "FIFO read command" "FIFO read"
12282604-12282811 rfm12: return: "Data: 0D"
12348347-12348552 rfm12: cmd: "Status read command" "Status"
12348347-12348383 rfm12: return: "RGIT/FFIT"
12348383-12348407 rfm12: disabled_return: "POR"
12348407-12348431 rfm12: disabled_return: "RGUR/FFOV"
12348431-12348456 rfm12: disabled_return: "WKUP"
12348456-12348480 rfm12: disabled_return: "EXT"
12348480-12348504 rfm12: disabled_return: "LBD"
12348504-12348528 rfm12: disabled_return: "FFEM"
12348528-12348552 rfm12: disabled_return: "RSSI/ATS"
12348698-12348735 rfm12: disabled_return: "DQD"
12348735-12348759 rfm12: disabled_return: "CRL"
12348759-12348783 rfm12: disabled_return: "ATGL"
12348347-12348383 rfm12: interpretation: "Received data in FIFO"
12348783-12348904 rfm12: return: "AFC offset"
12348783-12348904 rfm12: interpretation: "Changed" "~"
12349838-12350043 rfm12: cmd: "FIFO and reset command"
12350177-12350286 rfm12: cmd: "FIFO trigger level: 8"
12350286-12350310 rfm12: cmd: "Synchron length: two bytes"
12350310-12350358 rfm12: cmd: "FIFO fill: Never"
12350310-12350358 rfm12: interpretation: "Changing" "~"
12350358-12350382 rfm12: cmd: "Reset mode: non-sensitive"
12350819-12351025 rfm12: cmd: "FIFO and reset command"
12351158-12351267 rfm12: cmd: "FIFO trigger level: 8"
12351267-12351291 rfm12: cmd: "Synchron length: two bytes"
12351291-12351340 rfm12: cmd: "FIFO fill: After synchron pattern"
12351291-12351340 rfm12: interpretation: "Changing" "~"
12351340-12351364 rfm12: cmd: "Reset mode: non-sensitive"
18434286-18434491 rfm12: cmd: "Status read command" "Status"
18434286-18434322 rfm12: return: "RGIT/FFIT"
18434322-18434346 rfm12: disabled_return: "POR"
18434346-18434371 rfm12: disabled_return: "RGUR/FFOV"
18434371-18434395 rfm12: disabled_return: "WKUP"
18434395-18434419 rfm12: disabled_return: "EXT"
18434419-18434443 rfm12: disabled_return: "LBD"
18434443-18434467 rfm12: disabled_return: "FFEM"
18434467-18434491 rfm12: return: "RSSI/ATS"
18434636-18434672 rfm12: return: "DQD"
18434672-18434696 rfm12: return: "CRL"
18434696-18434720 rfm12: disabled_return: "ATGL"
18434286-18434322 rfm12: interpretation: "Received data in FIFO"
18434467-18434491 rfm12: interpretation: "Incoming signal above limit"
18434636-18434672 rfm12: interpretation: "Data quality detector"
18434672-18434696 rfm12: interpretation: "Clock recovery locked"
18434720-18434841 rfm12: return: "AFC offset"
18434720-18434841 rfm12: interpretation: "Changed" "~"
18435760-18435965 rfm12: cmd: "FIFO read command" "FIFO read"
18436098-18436303 rfm12: return: "Data: 0C"
18503325-18503531 rfm12: cmd: "Status read command" "Status"
18503325-18503362 rfm12: return: "RGIT/FFIT"
18503362-18503386 rfm12: disabled_return: "POR"
18503386-18503410 rfm12: disabled_return: "RGUR/FFOV"
18503410-18503435 rfm12: disabled_return: "WKUP"
18503435-18503459 rfm12: disabled_return: "EXT"
18503459-18503483 rfm12: disabled_return: "LBD"
18503483-18503507 rfm12: disabled_return: "FFEM"
18503507-18503531 rfm12: return: "RSSI/ATS"
18503677-18503713 rfm12: disabled_return: "DQD"
18503713-18503738 rfm12: return: "CRL"
18503738-18503762 rfm12: disabled_return: "ATGL"
18503325-18503362 rfm12: interpretation: "Received data in FIFO"
18503507-18503531 rfm12: interpretation: "Incoming signal above limit"
18503713-18503738 rfm12: interpretation: "Clock recovery locked"
18503762-18503883 rfm12: return: "AFC offset"
18504806-18505011 rfm12: cmd: "FIFO read command" "FIFO read"
18505145-18505351 rfm12: return: "Data: 0D"
18572070-18572277 rfm12: cmd: "Status read command" "Status"
18572070-18572106 rfm12: return: "RGIT/FFIT"
18572106-18572130 rfm12: disabled_return: "POR"
18572130-18572155 rfm12: disabled_return: "RGUR/FFOV"
18572155-18572179 rfm12: disabled_return: "WKUP"
18572179-18572203 rfm12: disabled_return: "EXT"
18572203-18572227 rfm12: disabled_return: "LBD"
18572227-18572252 rfm12: disabled_return: "FFEM"
18572252-18572277 rfm12: disabled_return: "RSSI/ATS"
18572421-18572458 rfm12: disabled_return: "DQD"
18572458-18572482 rfm12: return: "CRL"
18572482-18572506 rfm12: return: "ATGL"
18572070-18572106 rfm12: interpretation: "Received data in FIFO"
18572458-18572482 rfm12: interpretation: "Clock recovery locked"
18572506-18572627 rfm12: return: "AFC offset"
18572506-18572627 rfm12: interpretation: "Changed" "~"
18573561-18573768 rfm12: cmd: "FIFO and reset command"
18573900-18574009 rfm12: cmd: "FIFO trigger level: 8"
18574009-18574033 rfm12: cmd: "Synchron length: two bytes"
18574033-18574082 rfm12: cmd: "FIFO fill: Never"
18574033-18574082 rfm12: interpretation: "Changing" "~"
18574082-18574106 rfm12: cmd: "Reset mode: non-sensitive"
18574543-18574748 rfm12: cmd: "FIFO and reset command"
18574882-18574991 rfm12: cmd: "FIFO trigger level: 8"
18574991-18575015 rfm12: cmd: "Synchron length: two bytes"
18575015-18575064 rfm12: cmd: "FIFO fill: After synchron pattern"
18575015-18575064 rfm12: interpretation: "Changing" "~"
18575064-18575088 rfm12: cmd: "Reset mode: non-sensitive"
24656822-24657027 rfm12: cmd: "Status read command" "Status"
24656822-24656858 rfm12: return: "RGIT/FFIT"
24656858-24656882 rfm12: disabled_return: "POR"
24656882-24656907 rfm12: disabled_return: "RGUR/FFOV"
24656907-24656931 rfm12: disabled_return: "WKUP"
24656931-24656955 rfm12: disabled_return: "EXT"
24656955-24656979 rfm12: disabled_return: "LBD"
24656979-24657003 rfm12: disabled_return: "FFEM"
24657003-24657027 rfm12: return: "RSSI/ATS"
24657172-24657208 rfm12: return: "DQD"
24657208-24657233 rfm12: return: "CRL"
24657233-24657257 rfm12: return: "ATGL"
24656822-24656858 rfm12: interpretation: "Received data in FIFO"
24657003-24657027 rfm12: interpretation: "Incoming signal above limit"
24657172-24657208 rfm12: interpretation: "Data quality detector"
24657208-24657233 rfm12: interpretation: "Clock recovery locked"
24657257-24657377 rfm12: return: "AFC offset"
24657257-24657377 rfm12: interpretation: "Changed" "~"
24658297-24658501 rfm12: cmd: "FIFO read command" "FIFO read"
24658634-24658841 rfm12: return: "Data: 0C"
24725864-24726069 rfm12: cmd: "Status read command" "Status"
24725864-24725900 rfm12: return: "RGIT/FFIT"
24725900-24725924 rfm12: disabled_return: "POR"
24725924-24725948 rfm12: disabled_return: "RGUR/FFOV"
24725948-24725972 rfm12: disabled_return: "WKUP"
24725972-24725996 rfm12: disabled_return: "EXT"
24725996-24726021 rfm12: disabled_return: "LBD"
24726021-24726045 rfm12: disabled_return: "FFEM"
24726045-24726069 rfm12: return: "RSSI/ATS"
24726214-24726250 rfm12: disabled_return: "DQD"
24726250-24726275 rfm12: return: "CRL"
24726275-24726299 rfm12: return: "ATGL"
24725864-24725900 rfm12: interpretation: "Received data in FIFO"
24726045-24726069 rfm12: interpretation: "Incoming signal above limit"
24726250-24726275 rfm12: interpretation: "Clock recovery locked"
24726299-24726421 rfm12: return: "AFC offset"
24726299-24726421 rfm12: interpretation: "Changed" "~"
24727340-24727545 rfm12: cmd: "FIFO read command" "FIFO read"
24727678-24727884 rfm12: return: "Data: 0D"
24796389-24796594 rfm12: cmd: "Status read command" "Status"
24796389-24796425 rfm12: return: "RGIT/FFIT"
24796425-24796449 rfm12: disabled_return: "POR"
24796449-24796473 rfm12: disabled_return: "RGUR/FFOV"
24796473-24796498 rfm12: disabled_return: "WKUP"
24796498-24796522 rfm12: disabled_return: "EXT"
24796522-24796546 rfm12: disabled_return: "LBD"
24796546-24796570 rfm12: disabled_return: "FFEM"
24796570-24796594 rfm12: disabled_return: "RSSI/ATS"
24796740-24796776 rfm12: disabled_return: "DQD"
24796776-24796800 rfm12: disabled_return: "CRL"
24796800-24796825 rfm12: return: "ATGL"
24796389-24796425 rfm12: interpretation: "Received data in FIFO"
24796825-24796945 rfm12: return: "AFC offset"
24796825-24796945 rfm12: interpretation: "Changed" "~"
24797880-24798085 rfm12: cmd: "FIFO and reset command"
24798218-24798327 rfm12: cmd: "FIFO trigger level: 8"
24798327-24798352 rfm12: cmd: "Synchron length: two bytes"
24798352-24798400 rfm12: cmd: "FIFO fill: Never"
24798352-24798400 rfm12: interpretation: "Changing" "~"
24798400-24798424 rfm12: cmd: "Reset mode: non-sensitive"
24798861-24799066 rfm12: cmd: "FIFO and reset command"
24799200-24799309 rfm12: cmd: "FIFO trigger level: 8"
24799309-24799333 rfm12: cmd: "Synchron length: two bytes"
24799333-24799381 rfm12: cmd: "FIFO fill: After synchron pattern"
24799333-24799381 rfm12: interpretation: "Changing" "~"
24799381-24799405 rfm12: cmd: "Reset mode: non-sensitive"
30879350-30879555 rfm12: cmd: "Status read command" "Status"
30879350-30879387 rfm12: return: "RGIT/FFIT"
30879387-30879411 rfm12: disabled_return: "POR"
30879411-30879435 rfm12: disabled_return: "RGUR/FFOV"
30879435-30879459 rfm12: disabled_return: "WKUP"
30879459-30879483 rfm12: disabled_return: "EXT"
30879483-30879507 rfm12: disabled_return: "LBD"
30879507-30879531 rfm12: disabled_return: "FFEM"
30879531-30879555 rfm12: return: "RSSI/ATS"
30879700-30879737 rfm12: return: "DQD"
30879737-30879761 rfm12: return: "CRL"
30879761-30879785 rfm12: return: "ATGL"
30879350-30879387 rfm12: interpretation: "Received data in FIFO"
30879531-30879555 rfm12: interpretation: "Incoming signal above limit"
30879700-30879737 rfm12: interpretation: "Data quality detector"
30879737-30879761 rfm12: interpretation: "Clock recovery locked"
30879785-30879905 rfm12: return: "AFC offset"
30879785-30879905 rfm12: interpretation: "Changed" "~"
30880825-30881030 rfm12: cmd: "FIFO read command" "FIFO read"
30881163-30881368 rfm12: return: "Data: 0C"
30948404-30948609 rfm12: cmd: "Status read command" "Status"
30948404-30948440 rfm12: return: "RGIT/FFIT"
30948440-30948464 rfm12: disabled_return: "POR"
30948464-30948489 rfm12: disabled_return: "RGUR/FFOV"
30948489-30948513 rfm12: disabled_return: "WKUP"
30948513-30948537 rfm12: disabled_return: "EXT"
30948537-30948561 rfm12: disabled_return: "LBD"
30948561-30948585 rfm12: disabled_return: "FFEM"
30948585-30948609 rfm12: return: "RSSI/ATS"
30948755-30948791 rfm12: disabled_return: "DQD"
30948791-30948815 rfm12: return: "CRL"
30948815-30948839 rfm12: return: "ATGL"
30948404-30948440 rfm12: interpretation: "Received data in FIFO"
30948585-30948609 rfm12: interpretation: "Incoming signal above limit"
30948791-30948815 rfm12: interpretation: "Clock recovery locked"
30948839-30948960 rfm12: return: "AFC offset"
30948839-30948960 rfm12: interpretation: "Changed" "~"
30949880-30950085 rfm12: cmd: "FIFO read command" "FIFO read"
30950219-30950424 rfm12: return: "Data: 0D"
31016247-31016452 rfm12: cmd: "Status read command" "Status"
31016247-31016283 rfm12: return: "RGIT/FFIT"
31016283-31016307 rfm12: disabled_return: "POR"
31016307-31016331 rfm12: disabled_return: "RGUR/FFOV"
31016331-31016356 rfm12: disabled_return: "WKUP"
31016356-31016380 rfm12: disabled_return: "EXT"
31016380-31016404 rfm12: disabled_return: "LBD"
31016404-31016428 rfm12: disabled_return: "FFEM"
31016428-31016452 rfm12: disabled_return: "RSSI/ATS"
31016597-31016634 rfm12: disabled_return: "DQD"
31016634-31016658 rfm12: disabled_return: "CRL"
31016658-31016682 rfm12: disabled_return: "ATGL"
31016247-31016283 rfm12: interpretation: "Received data in FIFO"
31016682-31016804 rfm12: return: "AFC offset"
31016682-31016804 rfm12: interpretation: "Changed" "~"
31017734-31017939 rfm12: cmd: "FIFO and reset command"
31018073-31018181 rfm12: cmd: "FIFO trigger level: 8"
31018181-31018206 rfm12: cmd: "Synchron length: two bytes"
31018206-31018254 rfm12: cmd: "FIFO fill: Never"
31018206-31018254 rfm12: interpretation: "Changing" "~"
31018254-31018278 rfm12: cmd: "Reset mode: non-sensitive"
31018714-31018919 rfm12: cmd: "FIFO and reset command"
31019053-31019162 rfm12: cmd: "FIFO trigger level: 8"
31019162-31019186 rfm12: cmd: "Synchron length: two bytes"
31019186-31019234 rfm12: cmd: "FIFO fill: After synchron pattern"
31019186-31019234 rfm12: interpretation: "Changing" "~"
31019234-31019258 rfm12: cmd: "Reset mode: non-sensitive"
37101888-37102093 rfm12: cmd: "Status read command" "Status"
37101888-37101924 rfm12: return: "RGIT/FFIT"
37101924-37101948 rfm12: disabled_return: "POR"
37101948-37101972 rfm12: disabled_return: "RGUR/FFOV"
37101972-37101996 rfm12: disabled_return: "WKUP"
37101996-37102020 rfm12: disabled_return: "EXT"
37102020-37102045 rfm12: disabled_return: "LBD"
37102045-37102069 rfm12: disabled_return: "FFEM"
37102069-37102093 rfm12: return: "RSSI/ATS"
37102238-37102274 rfm12: return: "DQD"
37102274-37102298 rfm12: return: "CRL"
37102298-37102323 rfm12: disabled_return: "ATGL"
37101888-37101924 rfm12: interpretation: "Received data in FIFO"
37102069-37102093 rfm12: interpretation: "Incoming signal above limit"
37102238-37102274 rfm12: interpretation: "Data quality detector"
37102274-37102298 rfm12: interpretation: "Clock recovery locked"
37102323-37102443 rfm12: return: "AFC offset"
37103363-37103569 rfm12: cmd: "FIFO read command" "FIFO read"
37103701-37103907 rfm12: return: "Data: 0C"
37170933-37171139 rfm12: cmd: "Status read command" "Status"
37170933-37170970 rfm12: return: "RGIT/FFIT"
37170970-37170994 rfm12: disabled_return: "POR"
37170994-37171018 rfm12: disabled_return: "RGUR/FFOV"
37171018-37171042 rfm12: disabled_return: "WKUP"
37171042-37171067 rfm12: disabled_return: "EXT"
37171067-37171091 rfm12: disabled_return: "LBD"
37171091-37171115 rfm12: disabled_return: "FFEM"
37171115-37171139 rfm12: return: "RSSI/ATS"
37171285-37171321 rfm12: disabled_return: "DQD"
37171321-37171345 rfm12: return: "CRL"
37171345-37171369 rfm12: disabled_return: "ATGL"
37170933-37170970 rfm12: interpretation: "Received data in FIFO"
37171115-37171139 rfm12: interpretation: "Incoming signal above limit"
37171321-37171345 rfm12: interpretation: "Clock recovery locked"
37171369-37171490 rfm12: return: "AFC offset"
37171369-37171490 rfm12: interpretation: "Changed" "~"
37172412-37172617 rfm12: cmd: "FIFO read command" "FIFO read"
37172751-37172956 rfm12: return: "Data: 0D"
37239678-37239883 rfm12: cmd: "Status read command" "Status"
37239678-37239714 rfm12: return: "RGIT/FFIT"
37239714-37239738 rfm12: disabled_return: "POR"
37239738-37239763 rfm12: disabled_return: "RGUR/FFOV"
37239763-37239787 rfm12: disabled_return: "WKUP"
37239787-37239811 rfm12: disabled_return: "EXT"
37239811-37239835 rfm12: disabled_return: "LBD"
37239835-37239859 rfm12: disabled_return: "FFEM"
37239859-37239883 rfm12: disabled_return: "RSSI/ATS"
37240029-37240065 rfm12: return: "DQD"
37240065-37240090 rfm12: disabled_return: "CRL"
37240090-37240114 rfm12: return: "ATGL"
37239678-37239714 rfm12: interpretation: "Received data in FIFO"
37240029-37240065 rfm12: interpretation: "Data quality detector"
37240114-37240236 rfm12: return: "AFC offset"
37240114-37240236 rfm12: interpretation: "Changed" "~"
37241169-37241374 rfm12: cmd: "FIFO and reset command"
37241507-37241616 rfm12: cmd: "FIFO trigger level: 8"
37241616-37241640 rfm12: cmd: "Synchron length: two bytes"
37241640-37241689 rfm12: cmd: "FIFO fill: Never"
37241640-37241689 rfm12: interpretation: "Changing" "~"
37241689-37241714 rfm12: cmd: "Reset mode: non-sensitive"
37242149-37242354 rfm12: cmd: "FIFO and reset command"
37242487-37242596 rfm12: cmd: "FIFO trigger level: 8"
37242596-37242620 rfm12: cmd: "Synchron length: two bytes"
37242620-37242669 rfm12: cmd: "FIFO fill: After synchron pattern"
37242620-37242669 rfm12: interpretation: "Changing" "~"
37242669-37242693 rfm12: cmd: "Reset mode: non-sensitive"
43315801-43316006 rfm12: cmd: "Status read command" "Status"
43315801-43315838 rfm12: return: "RGIT/FFIT"
43315838-43315862 rfm12: disabled_return: "POR"
43315862-43315886 rfm12: disabled_return: "RGUR/FFOV"
43315886-43315910 rfm12: disabled_return: "WKUP"
43315910-43315934 rfm12: disabled_return: "EXT"
43315934-43315958 rfm12: disabled_return: "LBD"
43315958-43315982 rfm12: disabled_return: "FFEM"
43315982-43316006 rfm12: return: "RSSI/ATS"
43316152-43316188 rfm12: return: "DQD"
43316188-43316212 rfm12: return: "CRL"
43316212-43316236 rfm12: return: "ATGL"
43315801-43315838 rfm12: interpretation: "Received data in FIFO"
43315982-43316006 rfm12: interpretation: "Incoming signal above limit"
43316152-43316188 rfm12: interpretation: "Data quality detector"
43316188-43316212 rfm12: interpretation: "Clock recovery locked"
43316236-43316356 rfm12: return: "AFC offset"
43317276-43317481 rfm12: cmd: "FIFO read command" "FIFO read"
43317614-43317819 rfm12: return: "Data: 0C"
43384842-43385047 rfm12: cmd: "Status read command" "Status"
43384842-43384878 rfm12: return: "RGIT/FFIT"
43384878-43384902 rfm12: disabled_return: "POR"
43384902-43384926 rfm12: disabled_return: "RGUR/FFOV"
43384926-43384950 rfm12: disabled_return: "WKUP"
43384950-43384975 rfm12: disabled_return: "EXT"
43384975-43384999 rfm12: disabled_return: "LBD"
43384999-43385023 rfm12: disabled_return: "FFEM"
43385023-43385047 rfm12: return: "RSSI/ATS"
43385193-43385229 rfm12: disabled_return: "DQD"
43385229-43385253 rfm12: return: "CRL"
43385253-43385277 rfm12: return: "ATGL"
43384842-43384878 rfm12: interpretation: "Received data in FIFO"
43385023-43385047 rfm12: interpretation: "Incoming signal above limit"
43385229-43385253 rfm12: interpretation: "Clock recovery locked"
43385277-43385398 rfm12: return: "AFC offset"
43385277-43385398 rfm12: interpretation: "Changed" "~"
43386319-43386524 rfm12: cmd: "FIFO read command" "FIFO read"
43386657-43386864 rfm12: return: "Data: 0D"
43453592-43453797 rfm12: cmd: "Status read command" "Status"
43453592-43453628 rfm12: return: "RGIT/FFIT"
43453628-43453652 rfm12: disabled_return: "POR"
43453652-43453676 rfm12: disabled_return: "RGUR/FFOV"
43453676-43453701 rfm12: disabled_return: "WKUP"
43453701-43453725 rfm12: disabled_return: "EXT"
43453725-43453749 rfm12: disabled_return: "LBD"
43453749-43453773 rfm12: disabled_return: "FFEM"
43453773-43453797 rfm12: disabled_return: "RSSI/ATS"
43453943-43453979 rfm12: disabled_return: "DQD"
43453979-43454003 rfm12: return: "CRL"
43454003-43454027 rfm12: return: "ATGL"
43453592-43453628 rfm12: interpretation: "Received data in FIFO"
43453979-43454003 rfm12: interpretation: "Clock recovery locked"
43454027-43454148 rfm12: return: "AFC offset"
43455082-43455287 rfm12: cmd: "FIFO and reset command"
43455420-43455529 rfm12: cmd: "FIFO trigger level: 8"
43455529-43455553 rfm12: cmd: "Synchron length: two bytes"
43455553-43455602 rfm12: cmd: "FIFO fill: Never"
43455553-43455602 rfm12: interpretation: "Changing" "~"
43455602-43455626 rfm12: cmd: "Reset mode: non-sensitive"
43456062-43456268 rfm12: cmd: "FIFO and reset command"
43456401-43456510 rfm12: cmd: "FIFO trigger level: 8"
43456510-43456534 rfm12: cmd: "Synchron length: two bytes"
43456534-43456583 rfm12: cmd: "FIFO fill: After synchron pattern"
43456534-43456583 rfm12: interpretation: "Changing" "~"
43456583-43456608 rfm12: cmd: "Reset mode: non-sensitive"
49538336-49538540 rfm12: cmd: "Status read command" "Status"
49538336-49538372 rfm12: return: "RGIT/FFIT"
49538372-49538396 rfm12: disabled_return: "POR"
49538396-49538420 rfm12: disabled_return: "RGUR/FFOV"
49538420-49538444 rfm12: disabled_return: "WKUP"
49538444-49538468 rfm12: disabled_return: "EXT"
49538468-49538492 rfm12: disabled_return: "LBD"
49538492-49538516 rfm12: disabled_return: "FFEM"
49538516-49538540 rfm12: return: "RSSI/ATS"
49538686-49538722 rfm12: return: "DQD"
49538722-49538746 rfm12: return: "CRL"
49538746-49538770 rfm12: disabled_return: "ATGL"
49538336-49538372 rfm12: interpretation: "Received data in FIFO"
49538516-49538540 rfm12: interpretation: "Incoming signal above limit"
49538686-49538722 rfm12: interpretation: "Data quality detector"
49538722-49538746 rfm12: interpretation: "Clock recovery locked"
49538770-49538892 rfm12: return: "AFC offset"
49538770-49538892 rfm12: interpretation: "Changed" "~"
49539810-49540014 rfm12: cmd: "FIFO read command" "FIFO read"
49540147-49540352 rfm12: return: "Data: 0C"
49607375-49607580 rfm12: cmd: "Status read command" "Status"
49607375-49607411 rfm12: return: "RGIT/FFIT"
49607411-49607435 rfm12: disabled_return: "POR"
49607435-49607459 rfm12: disabled_return: "RGUR/FFOV"
49607459-49607484 rfm12: disabled_return: "WKUP"
49607484-49607508 rfm12: disabled_return: "EXT"
49607508-49607532 rfm12: disabled_return: "LBD"
49607532-49607556 rfm12: disabled_return: "FFEM"
49607556-49607580 rfm12: return: "RSSI/ATS"
49607726-49607762 rfm12: disabled_return: "DQD"
49607762-49607786 rfm12: return: "CRL"
49607786-49607811 rfm12: disabled_return: "ATGL"
49607375-49607411 rfm12: interpretation: "Received data in FIFO"
49607556-49607580 rfm12: interpretation: "Incoming signal above limit"
49607762-49607786 rfm12: interpretation: "Clock recovery locked"
49607811-49607931 rfm12: return: "AFC offset"
49608853-49609058 rfm12: cmd: "FIFO read command" "FIFO read"
49609191-49609397 rfm12: return: "Data: 0D"
49675833-49676038 rfm12: cmd: "Status read command" "Status"
49675833-49675869 rfm12: return: "RGIT/FFIT"
49675869-49675893 rfm12: disabled_return: "POR"
49675893-49675917 rfm12: disabled_return: "RGUR/FFOV"
49675917-49675942 rfm12: disabled_return: "WKUP"
49675942-49675966 rfm12: disabled_return: "EXT"
49675966-49675990 rfm12: disabled_return: "LBD"
49675990-49676014 rfm12: disabled_return: "FFEM"
49676014-49676038 rfm12: disabled_return: "RSSI/ATS"
49676184-49676220 rfm12: disabled_return: "DQD"
49676220-49676244 rfm12: return: "CRL"
49676244-49676269 rfm12: return: "ATGL"
49675833-49675869 rfm12: interpretation: "Received data in FIFO"
49676220-49676244 rfm12: interpretation: "Clock recovery locked"
49676269-49676389 rfm12: return: "AFC offset"
49676269-49676389 rfm12: interpretation: "Changed" "~"
49677323-49677528 rfm12: cmd: "FIFO and reset command"
49677662-49677771 rfm12: cmd: "FIFO trigger level: 8"
49677771-49677795 rfm12: cmd: "Synchron length: two bytes"
49677795-49677843 rfm12: cmd: "FIFO fill: Never"
49677795-49677843 rfm12: interpretation: "Changing" "~"
49677843-49677867 rfm12: cmd: "Reset mode: non-sensitive"
49678304-49678509 rfm12: cmd: "FIFO and reset command"
49678643-49678752 rfm12: cmd: "FIFO trigger level: 8"
49678752-49678776 rfm12: cmd: "Synchron length: two bytes"
49678776-49678825 rfm12: cmd: "FIFO fill: After synchron pattern"
49678776-49678825 rfm12: interpretation: "Changing" "~"
49678825-49678850 rfm12: cmd: "Reset mode: non-sensitive"
55752245-55752449 rfm12: cmd: "Status read command" "Status"
55752245-55752281 rfm12: return: "RGIT/FFIT"
55752281-55752305 rfm12: disabled_return: "POR"
55752305-55752329 rfm12: disabled_return: "RGUR/FFOV"
55752329-55752353 rfm12: disabled_return: "WKUP"
55752353-55752377 rfm12: disabled_return: "EXT"
55752377-55752401 rfm12: disabled_return: "LBD"
55752401-55752425 rfm12: disabled_return: "FFEM"
55752425-55752449 rfm12: return: "RSSI/ATS"
55752594-55752630 rfm12: return: "DQD"
55752630-55752655 rfm12: return: "CRL"
55752655-55752679 rfm12: disabled_return: "ATGL"
55752245-55752281 rfm12: interpretation: "Received data in FIFO"
55752425-55752449 rfm12: interpretation: "Incoming signal above limit"
55752594-55752630 rfm12: interpretation: "Data quality detector"
55752630-55752655 rfm12: interpretation: "Clock recovery locked"
55752679-55752799 rfm12: return: "AFC offset"
55752679-55752799 rfm12: interpretation: "Changed" "~"
55753718-55753922 rfm12: cmd: "FIFO read command" "FIFO read"
55754055-55754260 rfm12: return: "Data: 0C"
55821286-55821492 rfm12: cmd: "Status read command" "Status"
55821286-55821323 rfm12: return: "RGIT/FFIT"
55821323-55821347 rfm12: disabled_return: "POR"
55821347-55821371 rfm12: disabled_return: "RGUR/FFOV"
55821371-55821395 rfm12: disabled_return: "WKUP"
55821395-55821420 rfm12: disabled_return: "EXT"
55821420-55821444 rfm12: disabled_return: "LBD"
55821444-55821468 rfm12: disabled_return: "FFEM"
55821468-55821492 rfm12: return: "RSSI/ATS"
55821638-55821674 rfm12: disabled_return: "DQD"
55821674-55821698 rfm12: return: "CRL"
55821698-55821723 rfm12: disabled_return: "ATGL"
55821286-55821323 rfm12: interpretation: "Received data in FIFO"
55821468-55821492 rfm12: interpretation: "Incoming signal above limit"
55821674-55821698 rfm12: interpretation: "Clock recovery locked"
55821723-55821845 rfm12: return: "AFC offset"
55821723-55821845 rfm12: interpretation: "Changed" "~"
55822766-55822971 rfm12: cmd: "FIFO read command" "FIFO read"
55823105-55823312 rfm12: return: "Data: 0D"
55890632-55890837 rfm12: cmd: "Status read command" "Status"
55890632-55890668 rfm12: return: "RGIT/FFIT"
55890668-55890692 rfm12: disabled_return: "POR"
55890692-55890716 rfm12: disabled_return: "RGUR/FFOV"
55890716-55890741 rfm12: disabled_return: "WKUP"
55890741-55890765 rfm12: disabled_return: "EXT"
55890765-55890789 rfm12: disabled_return: "LBD"
55890789-55890813 rfm12: disabled_return: "FFEM"
55890813-55890837 rfm12: disabled_return: "RSSI/ATS"
55890983-55891019 rfm12: disabled_return: "DQD"
55891019-55891044 rfm12: return: "CRL"
55891044-55891068 rfm12: disabled_return: "ATGL"
55890632-55890668 rfm12: interpretation: "Received data in FIFO"
55891019-55891044 rfm12: interpretation: "Clock recovery locked"
55891068-55891189 rfm12: return: "AFC offset"
55891068-55891189 rfm12: interpretation: "Changed" "~"
55892124-55892330 rfm12: cmd: "FIFO and reset command"
55892464-55892572 rfm12: cmd: "FIFO trigger level: 8"
55892572-55892597 rfm12: cmd: "Synchron length: two bytes"
55892597-55892645 rfm12: cmd: "FIFO fill: Never"
55892597-55892645 rfm12: interpretation: "Changing" "~"
55892645-55892669 rfm12: cmd: "Reset mode: non-sensitive"
55893106-55893312 rfm12: cmd: "FIFO and reset command"
55893446-55893555 rfm12: cmd: "FIFO trigger level: 8"
55893555-55893579 rfm12: cmd: "Synchron length: two bytes"
55893579-55893627 rfm12: cmd: "FIFO fill: After synchron pattern"
55893579-55893627 rfm12: interpretation: "Changing" "~"
55893627-55893651 rfm12: cmd: "Reset mode: non-sensitive"
61974776-61974983 rfm12: cmd: "Status read command" "Status"
61974776-61974813 rfm12: return: "RGIT/FFIT"
61974813-61974837 rfm12: disabled_return: "POR"
61974837-61974861 rfm12: disabled_return: "RGUR/FFOV"
61974861-61974885 rfm12: disabled_return: "WKUP"
61974885-61974909 rfm12: disabled_return: "EXT"
61974909-61974933 rfm12: disabled_return: "LBD"
61974933-61974958 rfm12: disabled_return: "FFEM"
61974958-61974983 rfm12: return: "RSSI/ATS"
61975127-61975163 rfm12: return: "DQD"
61975163-61975187 rfm12: return: "CRL"
61975187-61975211 rfm12: disabled_return: "ATGL"
61974776-61974813 rfm12: interpretation: "Received data in FIFO"
61974958-61974983 rfm12: interpretation: "Incoming signal above limit"
61975127-61975163 rfm12: interpretation: "Data quality detector"
61975163-61975187 rfm12: interpretation: "Clock recovery locked"
61975211-61975332 rfm12: return: "AFC offset"
61975211-61975332 rfm12: interpretation: "Changed" "~"
61976252-61976457 rfm12: cmd: "FIFO read command" "FIFO read"
61976590-61976795 rfm12: return: "Data: 0C"
62043823-62044029 rfm12: cmd: "Status read command" "Status"
62043823-62043860 rfm12: return: "RGIT/FFIT"
62043860-62043884 rfm12: disabled_return: "POR"
62043884-62043908 rfm12: disabled_return: "RGUR/FFOV"
62043908-62043932 rfm12: disabled_return: "WKUP"
62043932-62043957 rfm12: disabled_return: "EXT"
62043957-62043981 rfm12: disabled_return: "LBD"
62043981-62044005 rfm12: disabled_return: "FFEM"
62044005-62044029 rfm12: return: "RSSI/ATS"
62044175-62044211 rfm12: disabled_return: "DQD"
62044211-62044235 rfm12: return: "CRL"
62044235-62044260 rfm12: disabled_return: "ATGL"
62043823-62043860 rfm12: interpretation: "Received data in FIFO"
62044005-62044029 rfm12: interpretation: "Incoming signal above limit"
62044211-62044235 rfm12: interpretation: "Clock recovery locked"
62044260-62044382 rfm12: return: "AFC offset"
62045304-62045509 rfm12: cmd: "FIFO read command" "FIFO read"
62045643-62045850 rfm12: return: "Data: 0D"
62112870-62113076 rfm12: cmd: "Status read command" "Status"
62112870-62112907 rfm12: return: "RGIT/FFIT"
62112907-62112931 rfm12: disabled_return: "POR"
62112931-62112955 rfm12: disabled_return: "RGUR/FFOV"
62112955-62112979 rfm12: disabled_return: "WKUP"
62112979-62113004 rfm12: disabled_return: "EXT"
62113004-62113028 rfm12: disabled_return: "LBD"
62113028-62113052 rfm12: disabled_return: "FFEM"
62113052-62113076 rfm12: disabled_return: "RSSI/ATS"
62113222-62113258 rfm12: disabled_return: "DQD"
62113258-62113282 rfm12: return: "CRL"
62113282-62113306 rfm12: disabled_return: "ATGL"
62112870-62112907 rfm12: interpretation: "Received data in FIFO"
62113258-62113282 rfm12: interpretation: "Clock recovery locked"
62113306-62113427 rfm12: return: "AFC offset"
62113306-62113427 rfm12: interpretation: "Changed" "~"
62114361-62114567 rfm12: cmd: "FIFO and reset command"
62114701-62114810 rfm12: cmd: "FIFO trigger level: 8"
62114810-62114834 rfm12: cmd: "Synchron length: two bytes"
62114834-62114882 rfm12: cmd: "FIFO fill: Never"
62114834-62114882 rfm12: interpretation: "Changing" "~"
62114882-62114906 rfm12: cmd: "Reset mode: non-sensitive"
62115343-62115550 rfm12: cmd: "FIFO and reset command"
62115682-62115791 rfm12: cmd: "FIFO trigger level: 8"
62115791-62115815 rfm12: cmd: "Synchron length: two bytes"
62115815-62115863 rfm12: cmd: "FIFO fill: After synchron pattern"
62115815-62115863 rfm12: interpretation: "Changing" "~"
62115863-62115887 rfm12: cmd: "Reset mode: non-sensitive"
68188687-68188892 rfm12: cmd: "Status read command" "Status"
68188687-68188723 rfm12: return: "RGIT/FFIT"
68188723-68188747 rfm12: disabled_return: "POR"
68188747-68188772 rfm12: disabled_return: "RGUR/FFOV"
68188772-68188796 rfm12: disabled_return: "WKUP"
68188796-68188820 rfm12: disabled_return: "EXT"
68188820-68188844 rfm12: disabled_return: "LBD"
68188844-68188868 rfm12: disabled_return: "FFEM"
68188868-68188892 rfm12: return: "RSSI/ATS"
68189037-68189074 rfm12: return: "DQD"
68189074-68189098 rfm12: return: "CRL"
68189098-68189122 rfm12: disabled_return: "ATGL"
68188687-68188723 rfm12: interpretation: "Received data in FIFO"
68188868-68188892 rfm12: interpretation: "Incoming signal above limit"
68189037-68189074 rfm12: interpretation: "Data quality detector"
68189074-68189098 rfm12: interpretation: "Clock recovery locked"
68189122-68189242 rfm12: return: "AFC offset"
68189122-68189242 rfm12: interpretation: "Changed" "~"
68190162-68190367 rfm12: cmd: "FIFO read command" "FIFO read"
68190500-68190705 rfm12: return: "Data: 0C"
68257736-68257941 rfm12: cmd: "Status read command" "Status"
68257736-68257772 rfm12: return: "RGIT/FFIT"
68257772-68257796 rfm12: disabled_return: "POR"
68257796-68257820 rfm12: disabled_return: "RGUR/FFOV"
68257820-68257844 rfm12: disabled_return: "WKUP"
68257844-68257869 rfm12: disabled_return: "EXT"
68257869-68257893 rfm12: disabled_return: "LBD"
68257893-68257917 rfm12: disabled_return: "FFEM"
68257917-68257941 rfm12: return: "RSSI/ATS"
68258087-68258123 rfm12: disabled_return: "DQD"
68258123-68258147 rfm12: return: "CRL"
68258147-68258171 rfm12: disabled_return: "ATGL"
68257736-68257772 rfm12: interpretation: "Received data in FIFO"
68257917-68257941 rfm12: interpretation: "Incoming signal above limit"
68258123-68258147 rfm12: interpretation: "Clock recovery locked"
68258171-68258292 rfm12: return: "AFC offset"
68259214-68259419 rfm12: cmd: "FIFO read command" "FIFO read"
68259553-68259758 rfm12: return: "Data: 0D"
68327066-68327271 rfm12: cmd: "Status read command" "Status"
68327066-68327102 rfm12: return: "RGIT/FFIT"
68327102-68327126 rfm12: disabled_return: "POR"
68327126-68327151 rfm12: disabled_return: "RGUR/FFOV"
68327151-68327175 rfm12: disabled_return: "WKUP"
68327175-68327199 rfm12: disabled_return: "EXT"
68327199-68327223 rfm12: disabled_return: "LBD"
68327223-68327247 rfm12: disabled_return: "FFEM"
68327247-68327271 rfm12: disabled_return: "RSSI/ATS"
68327417-68327453 rfm12: disabled_return: "DQD"
68327453-68327478 rfm12: return: "CRL"
68327478-68327502 rfm12: return: "ATGL"
68327066-68327102 rfm12: interpretation: "Received data in FIFO"
68327453-68327478 rfm12: interpretation: "Clock recovery locked"
68327502-68327622 rfm12: return: "AFC offset"
68327502-68327622 rfm12: interpretation: "Changed" "~"
68328555-68328760 rfm12: cmd: "FIFO and reset command"
68328894-68329002 rfm12: cmd: "FIFO trigger level: 8"
68329002-68329027 rfm12: cmd: "Synchron length: two bytes"
68329027-68329075 rfm12: cmd: "FIFO fill: Never"
68329027-68329075 rfm12: interpretation: "Changing" "~"
68329075-68329099 rfm12: cmd: "Reset mode: non-sensitive"
68329535-68329740 rfm12: cmd: "FIFO and reset command"
68329874-68329982 rfm12: cmd: "FIFO trigger level: 8"
68329982-68330007 rfm12: cmd: "Synchron length: two bytes"
68330007-68330055 rfm12: cmd: "FIFO fill: After synchron pattern"
68330007-68330055 rfm12: interpretation: "Changing" "~"
68330055-68330079 rfm12: cmd: "Reset mode: non-sensitive"
74411225-74411432 rfm12: cmd: "Status read command" "Status"
74411225-74411262 rfm12: return: "RGIT/FFIT"
74411262-74411286 rfm12: disabled_return: "POR"
74411286-74411310 rfm12: disabled_return: "RGUR/FFOV"
74411310-74411334 rfm12: disabled_return: "WKUP"
74411334-74411358 rfm12: disabled_return: "EXT"
74411358-74411382 rfm12: disabled_return: "LBD"
74411382-74411407 rfm12: disabled_return: "FFEM"
74411407-74411432 rfm12: return: "RSSI/ATS"
74411576-74411612 rfm12: return: "DQD"
74411612-74411636 rfm12: return: "CRL"
74411636-74411661 rfm12: return: "ATGL"
74411225-74411262 rfm12: interpretation: "Received data in FIFO"
74411407-74411432 rfm12: interpretation: "Incoming signal above limit"
74411576-74411612 rfm12: interpretation: "Data quality detector"
74411612-74411636 rfm12: interpretation: "Clock recovery locked"
74411661-74411781 rfm12: return: "AFC offset"
74411661-74411781 rfm12: interpretation: "Changed" "~"
74412701-74412906 rfm12: cmd: "FIFO read command" "FIFO read"
74413040-74413245 rfm12: return: "Data: 0C"
74480264-74480470 rfm12: cmd: "Status read command" "Status"
74480264-74480301 rfm12: return: "RGIT/FFIT"
74480301-74480325 rfm12: disabled_return: "POR"
74480325-74480349 rfm12: disabled_return: "RGUR/FFOV"
74480349-74480373 rfm12: disabled_return: "WKUP"
74480373-74480397 rfm12: disabled_return: "EXT"
74480397-74480422 rfm12: disabled_return: "LBD"
74480422-74480446 rfm12: disabled_return: "FFEM"
74480446-74480470 rfm12: return: "RSSI/ATS"
74480616-74480652 rfm12: disabled_return: "DQD"
74480652-74480676 rfm12: return: "CRL"
74480676-74480700 rfm12: return: "ATGL"
74480264-74480301 rfm12: interpretation: "Received data in FIFO"
74480446-74480470 rfm12: interpretation: "Incoming signal above limit"
74480652-74480676 rfm12: interpretation: "Clock recovery locked"
74480700-74480821 rfm12: return: "AFC offset"
74481744-74481950 rfm12: cmd: "FIFO read command" "FIFO read"
74482083-74482289 rfm12: return: "Data: 0D"
74549309-74549515 rfm12: cmd: "Status read command" "Status"
74549309-74549345 rfm12: return: "RGIT/FFIT"
74549345-74549369 rfm12: disabled_return: "POR"
74549369-74549394 rfm12: disabled_return: "RGUR/FFOV"
74549394-74549418 rfm12: disabled_return: "WKUP"
74549418-74549442 rfm12: disabled_return: "EXT"
74549442-74549467 rfm12: disabled_return: "LBD"
74549467-74549491 rfm12: disabled_return: "FFEM"
74549491-74549515 rfm12: disabled_return: "RSSI/ATS"
74549661-74549697 rfm12: disabled_return: "DQD"
74549697-74549721 rfm12: disabled_return: "CRL"
74549721-74549745 rfm12: return: "ATGL"
74549309-74549345 rfm12: interpretation: "Received data in FIFO"
74549745-74549866 rfm12: return: "AFC offset"
74550801-74551007 rfm12: cmd: "FIFO and reset command"
74551140-74551249 rfm12: cmd: "FIFO trigger level: 8"
74551249-74551273 rfm12: cmd: "Synchron length: two bytes"
74551273-74551322 rfm12: cmd: "FIFO fill: Never"
74551273-74551322 rfm12: interpretation: "Changing" "~"
74551322-74551346 rfm12: cmd: "Reset mode: non-sensitive"
74551783-74551989 rfm12: cmd: "FIFO and reset command"
74552122-74552231 rfm12: cmd: "FIFO trigger level: 8"
74552231-74552256 rfm12: cmd: "Synchron length: two bytes"
74552256-74552304 rfm12: cmd: "FIFO fill: After synchron pattern"
74552256-74552304 rfm12: interpretation: "Changing" "~"
74552304-74552328 rfm12: cmd: "Reset mode: non-sensitive"
80642385-80642589 rfm12: cmd: "Status read command" "Status"
80642385-80642421 rfm12: return: "RGIT/FFIT"
80642421-80642445 rfm12: disabled_return: "POR"
80642445-80642469 rfm12: disabled_return: "RGUR/FFOV"
80642469-80642493 rfm12: disabled_return: "WKUP"
80642493-80642517 rfm12: disabled_return: "EXT"
80642517-80642541 rfm12: disabled_return: "LBD"
80642541-80642565 rfm12: disabled_return: "FFEM"
80642565-80642589 rfm12: return: "RSSI/ATS"
80642735-80642771 rfm12: return: "DQD"
80642771-80642795 rfm12: return: "CRL"
80642795-80642819 rfm12: return: "ATGL"
80642385-80642421 rfm12: interpretation: "Received data in FIFO"
80642565-80642589 rfm12: interpretation: "Incoming signal above limit"
80642735-80642771 rfm12: interpretation: "Data quality detector"
80642771-80642795 rfm12: interpretation: "Clock recovery locked"
80642819-80642939 rfm12: return: "AFC offset"
80643858-80644063 rfm12: cmd: "FIFO read command" "FIFO read"
80644196-80644401 rfm12: return: "Data: 0C"
80711437-80711643 rfm12: cmd: "Status read command" "Status"
80711437-80711474 rfm12: return: "RGIT/FFIT"
80711474-80711498 rfm12: disabled_return: "POR"
80711498-80711522 rfm12: disabled_return: "RGUR/FFOV"
80711522-80711546 rfm12: disabled_return: "WKUP"
80711546-80711571 rfm12: disabled_return: "EXT"
80711571-80711595 rfm12: disabled_return: "LBD"
80711595-80711619 rfm12: disabled_return: "FFEM"
80711619-80711643 rfm12: return: "RSSI/ATS"
80711789-80711825 rfm12: disabled_return: "DQD"
80711825-80711849 rfm12: return: "CRL"
80711849-80711874 rfm12: return: "ATGL"
80711437-80711474 rfm12: interpretation: "Received data in FIFO"
80711619-80711643 rfm12: interpretation: "Incoming signal above limit"
80711825-80711849 rfm12: interpretation: "Clock recovery locked"
80711874-80711994 rfm12: return: "AFC offset"
80711874-80711994 rfm12: interpretation: "Changed" "~"
80712917-80713122 rfm12: cmd: "FIFO read command" "FIFO read"
80713256-80713463 rfm12: return: "Data: 0D"
80781072-80781278 rfm12: cmd: "Status read command" "Status"
80781072-80781108 rfm12: return: "RGIT/FFIT"
80781108-80781133 rfm12: disabled_return: "POR"
80781133-80781157 rfm12: disabled_return: "RGUR/FFOV"
80781157-80781181 rfm12: disabled_return: "WKUP"
80781181-80781205 rfm12: disabled_return: "EXT"
80781205-80781230 rfm12: disabled_return: "LBD"
80781230-80781254 rfm12: disabled_return: "FFEM"
80781254-80781278 rfm12: disabled_return: "RSSI/ATS"
80781423-80781460 rfm12: disabled_return: "DQD"
80781460-80781484 rfm12: return: "CRL"
80781484-80781508 rfm12: return: "ATGL"
80781072-80781108 rfm12: interpretation: "Received data in FIFO"
80781460-80781484 rfm12: interpretation: "Clock recovery locked"
80781508-80781629 rfm12: return: "AFC offset"
80781508-80781629 rfm12: interpretation: "Changed" "~"
80782564-80782769 rfm12: cmd: "FIFO and reset command"
80782903-80783012 rfm12: cmd: "FIFO trigger level: 8"
80783012-80783036 rfm12: cmd: "Synchron length: two bytes"
80783036-80783084 rfm12: cmd: "FIFO fill: Never"
80783036-80783084 rfm12: interpretation: "Changing" "~"
80783084-80783108 rfm12: cmd: "Reset mode: non-sensitive"
80783546-80783751 rfm12: cmd: "FIFO and reset command"
80783885-80783994 rfm12: cmd: "FIFO trigger level: 8"
80783994-80784018 rfm12: cmd: "Synchron length: two bytes"
80784018-80784067 rfm12: cmd: "FIFO fill: After synchron pattern"
80784018-80784067 rfm12: interpretation: "Changing" "~"
80784067-80784091 rfm12: cmd: "Reset mode: non-sensitive"
86864922-86865127 rfm12: cmd: "Status read command" "Status"
86864922-86864958 rfm12: return: "RGIT/FFIT"
86864958-86864982 rfm12: disabled_return: "POR"
86864982-86865006 rfm12: disabled_return: "RGUR/FFOV"
86865006-86865030 rfm12: disabled_return: "WKUP"
86865030-86865055 rfm12: disabled_return: "EXT"
86865055-86865079 rfm12: disabled_return: "LBD"
86865079-86865103 rfm12: disabled_return: "FFEM"
86865103-86865127 rfm12: return: "RSSI/ATS"
86865272-86865308 rfm12: return: "DQD"
86865308-86865333 rfm12: return: "CRL"
86865333-86865357 rfm12: disabled_return: "ATGL"
86864922-86864958 rfm12: interpretation: "Received data in FIFO"
86865103-86865127 rfm12: interpretation: "Incoming signal above limit"
86865272-86865308 rfm12: interpretation: "Data quality detector"
86865308-86865333 rfm12: interpretation: "Clock recovery locked"
86865357-86865477 rfm12: return: "AFC offset"
86865357-86865477 rfm12: interpretation: "Changed" "~"
86866397-86866602 rfm12: cmd: "FIFO read command" "FIFO read"
86866735-86866940 rfm12: return: "Data: 0C"
86933973-86934178 rfm12: cmd: "Status read command" "Status"
86933973-86934009 rfm12: return: "RGIT/FFIT"
86934009-86934033 rfm12: disabled_return: "POR"
86934033-86934057 rfm12: disabled_return: "RGUR/FFOV"
86934057-86934081 rfm12: disabled_return: "WKUP"
86934081-86934106 rfm12: disabled_return: "EXT"
86934106-86934130 rfm12: disabled_return: "LBD"
86934130-86934154 rfm12: disabled_return: "FFEM"
86934154-86934178 rfm12: return: "RSSI/ATS"
86934323-86934359 rfm12: disabled_return: "DQD"
86934359-86934383 rfm12: return: "CRL"
86934383-86934408 rfm12: disabled_return: "ATGL"
86933973-86934009 rfm12: interpretation: "Received data in FIFO"
86934154-86934178 rfm12: interpretation: "Incoming signal above limit"
86934359-86934383 rfm12: interpretation: "Clock recovery locked"
86934408-86934528 rfm12: return: "AFC offset"
86935449-86935654 rfm12: cmd: "FIFO read command" "FIFO read"
86935788-86935993 rfm12: return: "Data: 0D"
87002123-87002328 rfm12: cmd: "Status read command" "Status"
87002123-87002159 rfm12: return: "RGIT/FFIT"
87002159-87002183 rfm12: disabled_return: "POR"
87002183-87002208 rfm12: disabled_return: "RGUR/FFOV"
87002208-87002232 rfm12: disabled_return: "WKUP"
87002232-87002256 rfm12: disabled_return: "EXT"
87002256-87002280 rfm12: disabled_return: "LBD"
87002280-87002304 rfm12: disabled_return: "FFEM"
87002304-87002328 rfm12: disabled_return: "RSSI/ATS"
87002474-87002510 rfm12: disabled_return: "DQD"
87002510-87002535 rfm12: disabled_return: "CRL"
87002535-87002559 rfm12: return: "ATGL"
87002123-87002159 rfm12: interpretation: "Received data in FIFO"
87002559-87002681 rfm12: return: "AFC offset"
87002559-87002681 rfm12: interpretation: "Changed" "~"
87003614-87003819 rfm12: cmd: "FIFO and reset command"
87003953-87004062 rfm12: cmd: "FIFO trigger level: 8"
87004062-87004086 rfm12: cmd: "Synchron length: two bytes"
87004086-87004134 rfm12: cmd: "FIFO fill: Never"
87004086-87004134 rfm12: interpretation: "Changing" "~"
87004134-87004158 rfm12: cmd: "Reset mode: non-sensitive"
87004595-87004802 rfm12: cmd: "FIFO and reset command"
87004934-87005043 rfm12: cmd: "FIFO trigger level: 8"
87005043-87005067 rfm12: cmd: "Synchron length: two bytes"
87005067-87005116 rfm12: cmd: "FIFO fill: After synchron pattern"
87005067-87005116 rfm12: interpretation: "Changing" "~"
87005116-87005141 rfm12: cmd: "Reset mode: non-sensitive"
93087464-93087669 rfm12: cmd: "Status read command" "Status"
93087464-93087500 rfm12: return: "RGIT/FFIT"
93087500-93087524 rfm12: disabled_return: "POR"
93087524-93087549 rfm12: disabled_return: "RGUR/FFOV"
93087549-93087573 rfm12: disabled_return: "WKUP"
93087573-93087597 rfm12: disabled_return: "EXT"
93087597-93087621 rfm12: disabled_return: "LBD"
93087621-93087645 rfm12: disabled_return: "FFEM"
93087645-93087669 rfm12: return: "RSSI/ATS"
93087815-93087851 rfm12: return: "DQD"
93087851-93087875 rfm12: return: "CRL"
93087875-93087899 rfm12: return: "ATGL"
93087464-93087500 rfm12: interpretation: "Received data in FIFO"
93087645-93087669 rfm12: interpretation: "Incoming signal above limit"
93087815-93087851 rfm12: interpretation: "Data quality detector"
93087851-93087875 rfm12: interpretation: "Clock recovery locked"
93087899-93088020 rfm12: return: "AFC offset"
93087899-93088020 rfm12: interpretation: "Changed" "~"
93088941-93089146 rfm12: cmd: "FIFO read command" "FIFO read"
93089279-93089484 rfm12: return: "Data: 0C"
93156503-93156709 rfm12: cmd: "Status read command" "Status"
93156503-93156540 rfm12: return: "RGIT/FFIT"
93156540-93156564 rfm12: disabled_return: "POR"
93156564-93156588 rfm12: disabled_return: "RGUR/FFOV"
93156588-93156612 rfm12: disabled_return: "WKUP"
93156612-93156636 rfm12: disabled_return: "EXT"
93156636-93156661 rfm12: disabled_return: "LBD"
93156661-93156685 rfm12: disabled_return: "FFEM"
93156685-93156709 rfm12: return: "RSSI/ATS"
93156854-93156891 rfm12: disabled_return: "DQD"
93156891-93156915 rfm12: return: "CRL"
93156915-93156939 rfm12: return: "ATGL"
93156503-93156540 rfm12: interpretation: "Received data in FIFO"
93156685-93156709 rfm12: interpretation: "Incoming signal above limit"
93156891-93156915 rfm12: interpretation: "Clock recovery locked"
93156939-93157061 rfm12: return: "AFC offset"
93156939-93157061 rfm12: interpretation: "Changed" "~"
93157980-93158187 rfm12: cmd: "FIFO read command" "FIFO read"
93158319-93158524 rfm12: return: "Data: 0D"
93226146-93226352 rfm12: cmd: "Status read command" "Status"
93226146-93226183 rfm12: return: "RGIT/FFIT"
93226183-93226207 rfm12: disabled_return: "POR"
93226207-93226231 rfm12: disabled_return: "RGUR/FFOV"
93226231-93226256 rfm12: disabled_return: "WKUP"
93226256-93226280 rfm12: disabled_return: "EXT"
93226280-93226304 rfm12: disabled_return: "LBD"
93226304-93226328 rfm12: disabled_return: "FFEM"
93226328-93226352 rfm12: disabled_return: "RSSI/ATS"
93226498-93226534 rfm12: disabled_return: "DQD"
93226534-93226558 rfm12: return: "CRL"
93226558-93226583 rfm12: return: "ATGL"
93226146-93226183 rfm12: interpretation: "Received data in FIFO"
93226534-93226558 rfm12: interpretation: "Clock recovery locked"
93226583-93226703 rfm12: return: "AFC offset"
93226583-93226703 rfm12: interpretation: "Changed" "~"
93227637-93227842 rfm12: cmd: "FIFO and reset command"
93227976-93228084 rfm12: cmd: "FIFO trigger level: 8"
93228084-93228109 rfm12: cmd: "Synchron length: two bytes"
93228109-93228157 rfm12: cmd: "FIFO fill: Never"
93228109-93228157 rfm12: interpretation: "Changing" "~"
93228157-93228181 rfm12: cmd: "Reset mode: non-sensitive"
93228618-93228823 rfm12: cmd: "FIFO and reset command"
93228957-93229066 rfm12: cmd: "FIFO trigger level: 8"
93229066-93229090 rfm12: cmd: "Synchron length: two bytes"
93229090-93229138 rfm12: cmd: "FIFO fill: After synchron pattern"
93229090-93229138 rfm12: interpretation: "Changing" "~"
93229138-93229162 rfm12: cmd: "Reset mode: non-sensitive"
99309996-99310200 rfm12: cmd: "Status read command" "Status"
99309996-99310032 rfm12: return: "RGIT/FFIT"
99310032-99310056 rfm12: disabled_return: "POR"
99310056-99310080 rfm12: disabled_return: "RGUR/FFOV"
99310080-99310104 rfm12: disabled_return: "WKUP"
99310104-99310128 rfm12: disabled_return: "EXT"
99310128-99310152 rfm12: disabled_return: "LBD"
99310152-99310176 rfm12: disabled_return: "FFEM"
99310176-99310200 rfm12: return: "RSSI/ATS"
99310345-99310382 rfm12: return: "DQD"
99310382-99310406 rfm12: return: "CRL"
99310406-99310430 rfm12: return: "ATGL"
99309996-99310032 rfm12: interpretation: "Received data in FIFO"
99310176-99310200 rfm12: interpretation: "Incoming signal above limit"
99310345-99310382 rfm12: interpretation: "Data quality detector"
99310382-99310406 rfm12: interpretation: "Clock recovery locked"
99310430-99310550 rfm12: return: "AFC offset"
99310430-99310550 rfm12: interpretation: "Changed" "~"
99311469-99311675 rfm12: cmd: "FIFO read command" "FIFO read"
99311807-99312011 rfm12: return: "Data: 0C"
99379045-99379251 rfm12: cmd: "Status read command" "Status"
99379045-99379082 rfm12: return: "RGIT/FFIT"
99379082-99379106 rfm12: disabled_return: "POR"
99379106-99379130 rfm12: disabled_return: "RGUR/FFOV"
99379130-99379154 rfm12: disabled_return: "WKUP"
99379154-99379179 rfm12: disabled_return: "EXT"
99379179-99379203 rfm12: disabled_return: "LBD"
99379203-99379227 rfm12: disabled_return: "FFEM"
99379227-99379251 rfm12: return: "RSSI/ATS"
99379397-99379433 rfm12: disabled_return: "DQD"
99379433-99379457 rfm12: return: "CRL"
99379457-99379481 rfm12: return: "ATGL"
99379045-99379082 rfm12: interpretation: "Received data in FIFO"
99379227-99379251 rfm12: interpretation: "Incoming signal above limit"
99379433-99379457 rfm12: interpretation: "Clock recovery locked"
99379481-99379602 rfm12: return: "AFC offset"
99379481-99379602 rfm12: interpretation: "Changed" "~"
99380525-99380730 rfm12: cmd: "FIFO read command" "FIFO read"
99380864-99381071 rfm12: return: "Data: 0D"
99446594-99446799 rfm12: cmd: "Status read command" "Status"
99446594-99446630 rfm12: return: "RGIT/FFIT"
99446630-99446654 rfm12: disabled_return: "POR"
99446654-99446678 rfm12: disabled_return: "RGUR/FFOV"
99446678-99446703 rfm12: disabled_return: "WKUP"
99446703-99446727 rfm12: disabled_return: "EXT"
99446727-99446751 rfm12: disabled_return: "LBD"
99446751-99446775 rfm12: disabled_return: "FFEM"
99446775-99446799 rfm12: disabled_return: "RSSI/ATS"
99446945-99446981 rfm12: disabled_return: "DQD"
99446981-99447006 rfm12: disabled_return: "CRL"
99447006-99447030 rfm12: disabled_return: "ATGL"
99446594-99446630 rfm12: interpretation: "Received data in FIFO"
99447030-99447151 rfm12: return: "AFC offset"
99447030-99447151 rfm12: interpretation: "Changed" "~"
99448085-99448290 rfm12: cmd: "FIFO and reset command"
99448424-99448533 rfm12: cmd: "FIFO trigger level: 8"
99448533-99448557 rfm12: cmd: "Synchron length: two bytes"
99448557-99448605 rfm12: cmd: "FIFO fill: Never"
99448557-99448605 rfm12: interpretation: "Changing" "~"
99448605-99448629 rfm12: cmd: "Reset mode: non-sensitive"
99449066-99449272 rfm12: cmd: "FIFO and reset command"
99449406-99449515 rfm12: cmd: "FIFO trigger level: 8"
99449515-99449539 rfm12: cmd: "Synchron length: two bytes"
99449539-99449587 rfm12: cmd: "FIFO fill: After synchron pattern"
99449539-99449587 rfm12: interpretation: "Changing" "~"
99449587-99449611 rfm12: cmd: "Reset mode: non-sensitive"