-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdji.json
More file actions
1500 lines (1498 loc) · 124 KB
/
dji.json
File metadata and controls
1500 lines (1498 loc) · 124 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
{
"log": {
"default_level": "info",
"default_channel": "console",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 2,
"base_dir" : "/blackbox/misc",
"prefix" : "",
"demuxed" : 0,
"file_num_limit" : 100,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8919,
"channels": [
{"name": "duss_file_id", "active": 0, "id": 0, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "", "file_num_limit" : 10, "file_max_size_m" : 2, "space_limit_m" : 16, "self_inc_index" : 1},
{"name": "duss_osal_info", "active": 0, "id": 1, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "", "file_num_limit" : 10, "file_max_size_m" : 2, "space_limit_m" : 16, "self_inc_index" : 1},
{"name": "duss_tm_msg", "active": 0, "id": 3, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "", "file_num_limit" : 10, "file_max_size_m" : 2, "space_limit_m" : 16, "self_inc_index" : 1},
{"name": "duss_data_info", "active": 0, "id": 5, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "", "file_num_limit" : 10, "file_max_size_m" : 2, "space_limit_m" : 16, "self_inc_index" : 1},
{"name": "gimbal", "active": 1, "id": 7, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "GIMBAL", "file_num_limit" : 20, "file_max_size_m" : 30, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "armor1", "active": 1, "id": 9, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR1", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "armor2", "active": 1, "id": 11, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR2", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "armor3", "active": 1, "id": 2, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR3", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "armor4", "active": 1, "id": 4, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR4", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "armor5", "active": 1, "id": 6, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR5", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "armor6", "active": 1, "id": 8, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "ARMOR6", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 30, "self_inc_index" : 1},
{"name": "gamesystem", "active": 1, "id": 10, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "GAMESYSTEM", "file_num_limit" : 20, "file_max_size_m" : 30, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "gun", "active": 1, "id": 12, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "GUN", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "camera", "active": 1, "id": 14, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "CAMERA", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 50, "self_inc_index" : 1},
{"name": "vision", "active": 1, "id": 13, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "VISION", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "scratch_sys", "active": 1, "id": 15, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "SCRATCH_SYS", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "scratch_script", "active": 1, "id": 16, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "SCRATCH_SCRIPT", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "chassis", "active": 1, "id": 17, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "CHASSIS", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "network", "active": 1, "id": 18, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "NETWORK", "file_num_limit" : 20, "file_max_size_m" : 30, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "dji_system", "active": 1, "id": 19, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "SYSTEM", "file_num_limit" : 20, "file_max_size_m" : 30, "space_limit_m" : 100, "self_inc_index" : 1},
{"name": "stick", "active": 1, "id": 20, "checksum": "no", "high_priority": 0, "sync": 0, "dma": 0, "shm": 0, "prefix": "STICK", "file_num_limit" : 20, "file_max_size_m" : 10, "space_limit_m" : 200, "self_inc_index" : 1}
]
},
"platform": {
"name": "common",
"pairing_gpio": 185,
"dev_info": "xw0607edu robot",
"hw_str": "xw0607edu robot",
"system_init": "sys_platform_xw607_init"
},
"hal": {
"device_list": [
{"name": "/dev/video0", "attach": "duss_hal_attach_p1_v4l2", "detach": "duss_hal_detach_p1_v4l2" },
{"name": "/dev/ienc0", "attach": "duss_hal_attach_p1_ienc", "detach": "duss_hal_detach_p1_ienc" },
{"name": "/dev/iencv", "attach": "duss_hal_attach_p1_ienc", "detach": "duss_hal_detach_p1_ienc" },
{"name": "/dev/venc0", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/venc1", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/venc2", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/venc3", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/vencvf", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/vencvb", "attach": "duss_hal_attach_p1_venc", "detach": "duss_hal_detach_p1_venc" },
{"name": "/dev/vdec0", "attach": "duss_hal_attach_p1_vdec", "detach": "duss_hal_detach_p1_vdec" },
{"name": "/dev/vmem", "attach": "duss_hal_attach_p1_vmem", "detach": "duss_hal_detach_p1_vmem" },
{"name": "/dev/vmem_cache", "attach": "duss_hal_attach_p1_vmem", "detach": "duss_hal_detach_p1_vmem" },
{"name": "/dev/omem", "attach": "duss_hal_attach_p1_vmem", "detach": "duss_hal_detach_p1_vmem" },
{"name": "/dev/o2d", "attach": "duss_hal_attach_p1_o2d", "detach": "duss_hal_detach_p1_o2d" },
{"name": "/dev/o2d2", "attach": "duss_hal_attach_p1_o2d", "detach": "duss_hal_detach_p1_o2d" },
{"name": "/dev/v2d", "attach": "duss_hal_attach_p1_v2d", "detach": "duss_hal_detach_p1_v2d" },
{"name": "/dev/ttyS0", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyS1", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyS2", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyS3", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM:v4255p0052", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM:vFFF0p0008", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM0", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM1", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM2", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/ttyACM3", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" },
{"name": "/dev/i2c-0", "attach": "duss_hal_attach_linux_i2c", "detach": "duss_hal_detach_linux_i2c" },
{"name": "/dev/i2c-1", "attach": "duss_hal_attach_linux_i2c", "detach": "duss_hal_detach_linux_i2c" },
{"name": "/dev/i2c-4", "attach": "duss_hal_attach_linux_i2c", "detach": "duss_hal_detach_linux_i2c" },
{"name": "/dev/spidev0.0", "attach": "duss_hal_attach_linux_spi", "detach": "duss_hal_detach_linux_spi" },
{"name": "/dev/spidev1.0", "attach": "duss_hal_attach_linux_spi", "detach": "duss_hal_detach_linux_spi" },
{"name": "/sys/class/gpio", "attach": "duss_hal_attach_linux_gpio", "detach": "duss_hal_detach_linux_gpio" },
{"name": "/dev/speaker0", "attach": "duss_hal_attach_speaker", "detach": "duss_hal_detach_speaker" },
{"name": "/dev/ttyGS0", "attach": "duss_hal_attach_linux_tty", "detach": "duss_hal_detach_linux_tty" }
]
},
"process": {
"dji_monitor": {
"log": {
"default_level": "error",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_monitor",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 1,
"space_limit_m" : 8,
"cache_size_m" : 1,
"output_port" : 8905
}
},
"dji_sys": {
"log": {
"default_level": "info",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_module": [
{"upgrade": "info"}
],
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_system",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8906
}
},
"dji_camera": {
"log": {
"default_level": "error",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_module": [
{"network": "info"}
],
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_camera",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8907
}
},
"dji_vision": {
"log": {
"default_level": "error",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_vision",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 16,
"space_limit_m" : 512,
"cache_size_m" : 1,
"output_port" : 8909
}
},
"dji_hdvt_uav": {
"log": {
"default_level": "error",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_module": [
{"upgrade": "info"},
{"network": "info"}
],
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_hdvt_uav",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8910
}
},
"dji_mb_ctrl": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_mb_ctrl",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 1,
"space_limit_m" : 4,
"cache_size_m" : 1,
"output_port" : 8911
}
},
"dji_network": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_network",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8912
}
},
"dji_sw_uav": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_sw_uav_monitor",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 2,
"space_limit_m" : 16,
"cache_size_m" : 1,
"output_port" : 8913
}
},
"sdrs": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/sdrs",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 1,
"space_limit_m" : 4,
"cache_size_m" : 1,
"output_port" : 8914
}
},
"sdrs_log": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/sdrs_log",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 1,
"space_limit_m" : 4,
"cache_size_m" : 1,
"output_port" : 8915
}
},
"dji_blackbox": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox",
"prefix" : "FLY",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 700,
"space_limit_m" : 2200,
"cache_size_m" : 16,
"output_port" : 8916
}
},
"dji_perception": {
"log": {
"default_level": "warning",
"default_channel": "android_log",
"default_mask": "enable_all",
"default_format": [
"basic"
]
},
"blackbox": {
"active" : 3,
"base_dir" : "/blackbox/dji_perception",
"prefix" : "",
"demuxed" : 1,
"file_num_limit" : 10,
"file_max_size_m" : 16,
"space_limit_m" : 512,
"cache_size_m" : 1,
"output_port" : 8925
}
}
},
"vtair_service": {
"mb_route_table": {
"vt_sdr_fc": {
"host": "vt_air", "index": 0,
"1": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "camera", "index": 0}},
"2": {"status": 1, "target": "vt_gnd", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"3": {"status": 1, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"4": {"status": 1, "target": "glass", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"5": {"status": 1, "target": "rc", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"6": {"status": 1, "target": "ve_gnd", "index": 1, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"7": {"status": 1, "target": "vt_gnd", "index": 1, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"8": {"status": 1, "target": "ve_gnd", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 1, "server": true, "protocol": "dmp_v2"}},
"9": {"status": 1, "target": "vt_gnd", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 1, "server": true, "protocol": "dmp_v2"}},
"10": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"11": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"12": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 0}},
"13": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"14": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"15": {"status": 1, "target": "pc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"16": {"status": 1, "target": "flight", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"17": {"status": 1, "target": "flight", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"18": {"status": 1, "target": "flight", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"19": {"status": 1, "target": "battery", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity":0, "stopbit": 0, "wordlen": 8}},
"20": {"status": 1, "target": "esc", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"21": {"status": 1, "target": "esc", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"22": {"status": 1, "target": "esc", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"23": {"status": 1, "target": "esc", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"24": {"status": 1, "target": "armor", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"25": {"status": 1, "target": "armor", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"26": {"status": 1, "target": "armor", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"27": {"status": 1, "target": "armor", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"28": {"status": 1, "target": "armor", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"29": {"status": 1, "target": "armor", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"30": {"status": 1, "target": "gun", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"31": {"status": 1, "target": "gimbal", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"32": {"status": 1, "target": "gimbal", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"33": {"status": 1, "target": "vt_air", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"34": {"status": 1, "target": "blackbox", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "blackbox", "index": 0}},
"35": {"status": 1, "target": "armor", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"36": {"status": 1, "target": "robotic_part", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"37": {"status": 1, "target": "robotic_part", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"38": {"status": 1, "target": "robotic_part", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"39": {"status": 1, "target": "robotic_part", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"40": {"status": 1, "target": "robotic_part", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"41": {"status": 1, "target": "robotic_part", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"42": {"status": 1, "target": "robotic_part", "index": 7, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"43": {"status": 1, "target": "vt_air", "index": 5, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 5}},
"44": {"status": 1, "target": "vt_air", "index": 6, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 6}},
"45": {"status": 1, "target": "ve_air", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"46": {"status": 1, "target": "gun", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}}
},
"vt_sdr_mdl": {
"host": "vt_air", "index": 0,
"1": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "camera", "index": 0}},
"2": {"status": 1, "target": "flight", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"3": {"status": 1, "target": "flight", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"4": {"status": 1, "target": "flight", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"5": {"status": 1, "target": "mvision", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mvision", "index": 7}},
"6": {"status": 0, "target": "vt_gnd", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"7": {"status": 0, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"8": {"status": 0, "target": "glass", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"9": {"status": 0, "target": "rc", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"10": {"status": 0, "target": "ve_gnd", "index": 1, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"11": {"status": 0, "target": "ve_gnd", "index": 1, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"12": {"status": 0, "target": "ve_gnd", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"13": {"status": 0, "target": "vt_gnd", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"14": {"status": 0, "target": "glass", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp_v2"}},
"15": {"status": 0, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 0}},
"16": {"status": 1, "target": "ve_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 0}},
"17": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"18": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"19": {"status": 1, "target": "vt_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 7}},
"20": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}},
"21": {"status": 1, "target": "all", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "all", "index": 0}},
"22": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"23": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"24": {"status": 1, "target": "pc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"25": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 0}},
"26": {"status": 1, "target": "battery", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity":0, "stopbit": 0, "wordlen": 8}},
"27": {"status": 1, "target": "esc", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"28": {"status": 1, "target": "esc", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"29": {"status": 1, "target": "esc", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"30": {"status": 1, "target": "esc", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"31": {"status": 1, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 10607, "remote_address": "0.0.0.0", "remote_port": 0, "server": true,
"protocol": "sw_v2_proto", "priority": "HIGHEST", "flags": 1}},
"32": {"status": 1, "target": "mobile", "index": 7, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 10607, "remote_address": "0.0.0.0", "remote_port": 0, "server": true,
"protocol": "sw_v2_proto", "priority": "HIGHEST", "flags": 1}},
"33": {"status": 1, "target": "armor", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"34": {"status": 1, "target": "armor", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"35": {"status": 1, "target": "armor", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"36": {"status": 1, "target": "armor", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"37": {"status": 1, "target": "armor", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"38": {"status": 1, "target": "armor", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"39": {"status": 1, "target": "gun", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"40": {"status": 1, "target": "gimbal", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"41": {"status": 1, "target": "vt_air", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"42": {"status": 1, "target": "gimbal", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"43": {"status": 1, "target": "vt_air", "index": 5, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 5}},
"44": {"status": 1, "target": "vt_air", "index": 6, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 6}},
"45": {"status": 1, "target": "blackbox", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "blackbox", "index": 0}},
"46": {"status": 1, "target": "armor", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"47": {"status": 1, "target": "robotic_part", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"48": {"status": 1, "target": "robotic_part", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"49": {"status": 1, "target": "robotic_part", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"50": {"status": 1, "target": "ve_air", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"51": {"status": 1, "target": "robotic_part", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"52": {"status": 1, "target": "robotic_part", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"53": {"status": 1, "target": "robotic_part", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"54": {"status": 1, "target": "robotic_part", "index": 7, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"55": {"status": 1, "target": "gun", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"56": {"status": 1, "target": "pin_bd", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"57": {"status": 1, "target": "pin_bd", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"58": {"status": 1, "target": "pin_bd", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"59": {"status": 1, "target": "pin_bd", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"60": {"status": 1, "target": "pin_bd", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"61": {"status": 1, "target": "pin_bd", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"62": {"status": 1, "target": "pin_bd", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"63": {"status": 1, "target": "pin_bd", "index": 7, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"64": {"status": 1, "target": "pin_bd", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"65": {"status": 1, "target": "servo", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"66": {"status": 1, "target": "servo", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"67": {"status": 1, "target": "servo", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"68": {"status": 1, "target": "servo", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"69": {"status": 1, "target": "servo", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"70": {"status": 1, "target": "servo", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"71": {"status": 1, "target": "servo", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"72": {"status": 1, "target": "servo", "index": 7, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"73": {"status": 1, "target": "bvision", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"74": {"status": 1, "target": "bvision", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"75": {"status": 1, "target": "bvision", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"76": {"status": 1, "target": "bvision", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"77": {"status": 1, "target": "bvision", "index": 4, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyS3", "baudrate": 921600, "parity": 0, "stopbit": 0, "wordlen": 8}},
"78": {"status": 0, "target": "mobile", "index": 0, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "rndis0", "local_port": 20020, "remote_address": "192.168.42.3", "remote_port": 20010}},
"79": {"status": 0, "target": "mobile", "index": 0, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "wlan0", "local_port": 20020, "remote_address": "192.168.2.22", "remote_port": 20010, "server": true, "protocol": "udp"}},
"80": {"status": 0, "target": "vt_air", "index": 6, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "rndis0", "local_port": 20020, "remote_address": "192.168.42.3", "remote_port": 20010}},
"81": {"status": 0, "target": "vt_air", "index": 6, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "wlan0", "local_port": 20020, "remote_address": "192.168.2.22", "remote_port": 20010, "server": true, "protocol": "udp"}},
"82": {"status": 0, "target": "vt_air", "index": 6, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 20020, "remote_address": "0.0.0.0", "remote_port": 20010, "server": true,
"protocol": "tcp", "priority": "HIGHEST", "flags": 1}}
}
}
},
"camera_service": {
"mb_route_table": {
"camera": {
"host": "camera", "index": 0,
"1": {"status": 1, "target": "vt_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"2": {"status": 0, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"3": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"4": {"status": 1, "target": "mvision", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mvision", "index": 7}},
"5": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"6": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"7": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}},
"8": {"status": 1, "target": "pc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"9": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"10": {"status": 0, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 10607, "remote_address": "0.0.0.0", "remote_port": 0, "server": true,
"protocol": "sw_proto", "priority": "HIGHEST", "flags": 1}},
"11": {"status": 1, "target": "gimbal", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"12": {"status": 1, "target": "flight", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"13": {"status": 1, "target": "battery", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"14": {"status": 1, "target": "vt_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 7}},
"16": {"status": 1, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"17": {"status": 1, "target": "vt_gnd", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"18": {"status": 1, "target": "ve_gnd", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"19": {"status": 1, "target": "blackbox", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "blackbox", "index": 0}},
"20": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"21": {"status": 1, "target": "vt_air", "index": 6, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 0}},
"22": {"status": 1, "target": "test", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 1}},
"23": {"status": 1, "target": "vt_air", "index": 5, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 0}}
},
"camera_local": {
"host": "camera", "index": 0,
"1": {"status": 1, "target": "vt_gnd", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_gnd", "index": 0}},
"2": {"status": 1, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mobile", "index": 0}},
"3": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 0}}
},
"camera_sdr": {
"host": "camera", "index": 0,
"1": {"status": 1, "target": "vt_gnd", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"2": {"status": 1, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 9001, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "dmp"}},
"3": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"4": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"5": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}}
},
"camera_sdr_udt": {
"host": "camera", "index": 1,
"1": {"status": 1, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "192.168.41.2", "remote_port": 5555, "server": false, "protocol": "udt"}},
"2": {"status": 1, "target": "glass", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 0, "remote_address": "192.168.41.3", "remote_port": 5555, "server": false, "protocol": "udt"}}
}
}
},
"veair_service": {
"mb_route_table": {
"veair": {
"host": "ve_air", "index": 0,
"1": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"2": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"3": {"status": 1, "target": "vt_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"4": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"5": {"status": 1, "target": "gimbal", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"6": {"status": 1, "target": "mvision", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mvision", "index": 7}},
"7": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"8": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 0}},
"9": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}},
"10": {"status": 1, "target": "mobile", "index": 0, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 10607, "remote_address": "0.0.0.0", "remote_port": 0, "server": true,
"protocol": "sw_proto", "priority": "HIGHEST", "flags": 1}},
"11": {"status": 1, "target": "flight", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"12": {"status": 1, "target": "flight", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"13": {"status": 1, "target": "flight", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"14": {"status": 1, "target": "battery", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"15": {"status": 1, "target": "esc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"16": {"status": 1, "target": "esc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"17": {"status": 1, "target": "esc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"18": {"status": 1, "target": "esc", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}}
}
}
},
"vision_service": {
"mb_route_table": {
"vision": {
"host": "mvision", "index": 7,
"1": {"status": 1, "target": "vt_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"2": {"status": 1, "target": "ve_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 0}},
"3": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"4": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"5": {"status": 1, "target": "ve_air", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 5}},
"6": {"status": 1, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"7": {"status": 1, "target": "flight", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"8": {"status": 1, "target": "gimbal", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"9": {"status": 1, "target": "ve_air", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 2}},
"10": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"11": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"12": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"13": {"status": 1, "target": "pc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "pc", "index": 2}},
"14": {"status": 1, "target": "glass", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"15": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}},
"16": {"status": 1, "target": "vt_air", "index": 6, "channel": "local", "distance": 0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 0}}
}
}
},
"network_service": {
"mb_route_table": {
"network_local": {
"host": "network", "index": 0,
"1": {"status": 1, "target": "vt_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"2": {"status": 1, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"3": {"status": 1, "target": "wifi_gnd", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"4": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "camera", "index": 0}},
"5": {"status": 1, "target": "mvision", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mvision", "index": 7}},
"6": {"status": 1, "target": "battery", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"7": {"status": 1, "target": "pc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"8": {"status": 1, "target": "ve_air", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 1}},
"9": {"status": 1, "target": "esc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"10": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"11": {"status": 1, "target": "blackbox", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "blackbox", "index": 0}},
"12": {"status": 1, "target": "pc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}}
},
"sw_monitor": {
"host": "network", "index": 1,
"1": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}}
}
}
},
"system_service": {
"mb_route_table": {
"system": {
"host": "ve_air", "index": 1,
"1": {"status": 1, "target": "ve_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 0}},
"2": {"status": 1, "target": "ve_air", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 2}},
"3": {"status": 1, "target": "ve_air", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 3}},
"4": {"status": 1, "target": "ve_air", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 4}},
"5": {"status": 1, "target": "ve_air", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 5}},
"6": {"status": 1, "target": "ve_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 7}},
"7": {"status": 1, "target": "vt_air", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"8": {"status": 1, "target": "mobile", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"9": {"status": 1, "target": "flight", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"10": {"status": 1, "target": "vt_gnd", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"11": {"status": 1, "target": "ve_gnd", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"12": {"status": 1, "target": "vt_gnd", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"13": {"status": 1, "target": "glass", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"14": {"status": 1, "target": "camera", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "camera", "index": 0}},
"15": {"status": 1, "target": "vt_air", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 7}},
"16": {"status": 0, "target": "flight", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"17": {"status": 0, "target": "flight", "index": 5, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"18": {"status": 0, "target": "flight", "index": 6, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"19": {"status": 0, "target": "battery", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"20": {"status": 0, "target": "esc", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"21": {"status": 0, "target": "esc", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"22": {"status": 0, "target": "esc", "index": 2, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"23": {"status": 0, "target": "esc", "index": 3, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:vFFF0p0008", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"24": {"status": 0, "target": "camera", "index": 0, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "usb0", "local_port": 20001, "remote_address": "192.168.1.3", "remote_port": 20001}},
"25": {"status": 0, "target": "camera", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:v4255p0052", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"26": {"status": 0, "target": "camera", "index": 1, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "usb0", "local_port": 20001, "remote_address": "192.168.1.3", "remote_port": 20001}},
"27": {"status": 0, "target": "camera", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyACM:v4255p0052", "baudrate": 115200, "parity": 0, "stopbit": 0, "wordlen": 8}},
"25": {"status": 0, "target": "gimbal", "index": 0, "channel": "ip", "distance": 0, "protocol": "v1",
"ip": {"interface": "usb0", "local_port": 20001, "remote_address": "192.168.1.3", "remote_port": 20001}},
"27": {"status": 1, "target": "mvision", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "mvision", "index": 7}},
"28": {"status": 1, "target": "pc", "index": 0, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyGS0", "baudrate": 8000000, "parity": 0, "stopbit": 0, "wordlen": 8}},
"29": {"status": 1, "target": "pc", "index": 1, "channel": "uart", "distance": 0, "protocol": "v1",
"uart": {"interface": "/dev/ttyGS0", "baudrate": 8000000, "parity": 0, "stopbit": 0, "wordlen": 8}},
"30": {"status": 1, "target": "pc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "pc", "index": 2}},
"31": {"status": 0, "target": "pc", "index": 3, "channel": "wl", "distance": 0, "protocol": "v1",
"wl": {"interface": "iwlan0", "local_port": 22350, "remote_address": "0.0.0.0", "remote_port": 0, "server": true, "protocol": "tcp"}},
"32": {"status": 1, "target": "whoami", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "whoami", "index": 0}},
"33": {"status": 1, "target": "test", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "test", "index": 0}},
"34": {"status": 1, "target": "all", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "all", "index": 0}},
"35": {"status": 1, "target": "network", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "network", "index": 0}},
"36": {"status": 1, "target": "flight", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"37": {"status": 1, "target": "esc", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"38": {"status": 1, "target": "esc", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"39": {"status": 1, "target": "esc", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"40": {"status": 1, "target": "esc", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"41": {"status": 1, "target": "armor", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"42": {"status": 1, "target": "armor", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"43": {"status": 1, "target": "armor", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"44": {"status": 1, "target": "armor", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"45": {"status": 1, "target": "armor", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"46": {"status": 1, "target": "armor", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"47": {"status": 1, "target": "gun", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"48": {"status": 1, "target": "gimbal", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"49": {"status": 1, "target": "vt_air", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"50": {"status": 1, "target": "vt_air", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"51": {"status": 1, "target": "gimbal", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"52": {"status": 1, "target": "battery", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"53": {"status": 1, "target": "robotic_part", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"54": {"status": 1, "target": "robotic_part", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"55": {"status": 1, "target": "robotic_part", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"56": {"status": 1, "target": "robotic_part", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"57": {"status": 1, "target": "robotic_part", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"58": {"status": 1, "target": "robotic_part", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"59": {"status": 1, "target": "robotic_part", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"60": {"status": 1, "target": "armor", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"61": {"status": 1, "target": "blackbox", "index": 0, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "blackbox", "index": 0}},
"62": {"status": 1, "target": "ve_air", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "ve_air", "index": 6}},
"63": {"status": 1, "target": "vt_air", "index": 5, "channel": "local", "distance":0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 5}},
"64": {"status": 1, "target": "gun", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"63": {"status": 1, "target": "vt_air", "index": 6, "channel": "local", "distance":0, "protocol": "v1",
"local": {"direct_host": "vt_air", "index": 0}},
"64": {"status": 1, "target": "gun", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"65": {"status": 1, "target": "pin_bd", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"66": {"status": 1, "target": "pin_bd", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"67": {"status": 1, "target": "pin_bd", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"68": {"status": 1, "target": "pin_bd", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"69": {"status": 1, "target": "pin_bd", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"70": {"status": 1, "target": "pin_bd", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"71": {"status": 1, "target": "pin_bd", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"72": {"status": 1, "target": "servo", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"73": {"status": 1, "target": "servo", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"74": {"status": 1, "target": "servo", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"75": {"status": 1, "target": "servo", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"76": {"status": 1, "target": "servo", "index": 5, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"77": {"status": 1, "target": "servo", "index": 6, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"78": {"status": 1, "target": "servo", "index": 7, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"79": {"status": 1, "target": "bvision", "index": 1, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"80": {"status": 1, "target": "bvision", "index": 2, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"81": {"status": 1, "target": "bvision", "index": 3, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}},
"82": {"status": 1, "target": "bvision", "index": 4, "channel": "local", "distance": 0, "protocol": "logic",
"local": {"direct_host": "vt_air", "index": 0}}
},
"bvision": {