-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchassis_pb2.py
1105 lines (1071 loc) · 52.5 KB
/
chassis_pb2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: modules/canbus/proto/chassis.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
from google.protobuf import descriptor_pb2
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
from modules.common.proto import header_pb2 as modules_dot_common_dot_proto_dot_header__pb2
from modules.common.proto import vehicle_signal_pb2 as modules_dot_common_dot_proto_dot_vehicle__signal__pb2
from modules.common.proto import drive_state_pb2 as modules_dot_common_dot_proto_dot_drive__state__pb2
from modules.common.proto import geometry_pb2 as modules_dot_common_dot_proto_dot_geometry__pb2
from modules.common.configs.proto import vehicle_config_pb2 as modules_dot_common_dot_configs_dot_proto_dot_vehicle__config__pb2
DESCRIPTOR = _descriptor.FileDescriptor(
name='modules/canbus/proto/chassis.proto',
package='apollo.canbus',
syntax='proto2',
serialized_pb=_b('\n\"modules/canbus/proto/chassis.proto\x12\rapollo.canbus\x1a!modules/common/proto/header.proto\x1a)modules/common/proto/vehicle_signal.proto\x1a&modules/common/proto/drive_state.proto\x1a#modules/common/proto/geometry.proto\x1a\x31modules/common/configs/proto/vehicle_config.proto\"\xec\x0c\n\x07\x43hassis\x12\x16\n\x0e\x65ngine_started\x18\x03 \x01(\x08\x12\x17\n\nengine_rpm\x18\x04 \x01(\x02:\x03nan\x12\x16\n\tspeed_mps\x18\x05 \x01(\x02:\x03nan\x12\x17\n\nodometer_m\x18\x06 \x01(\x02:\x03nan\x12\x14\n\x0c\x66uel_range_m\x18\x07 \x01(\x05\x12 \n\x13throttle_percentage\x18\x08 \x01(\x02:\x03nan\x12\x1d\n\x10\x62rake_percentage\x18\t \x01(\x02:\x03nan\x12 \n\x13steering_percentage\x18\x0b \x01(\x02:\x03nan\x12\x1f\n\x12steering_torque_nm\x18\x0c \x01(\x02:\x03nan\x12\x15\n\rparking_brake\x18\r \x01(\x08\x12\x1c\n\x10high_beam_signal\x18\x0e \x01(\x08\x42\x02\x18\x01\x12\x1b\n\x0flow_beam_signal\x18\x0f \x01(\x08\x42\x02\x18\x01\x12\x1c\n\x10left_turn_signal\x18\x10 \x01(\x08\x42\x02\x18\x01\x12\x1d\n\x11right_turn_signal\x18\x11 \x01(\x08\x42\x02\x18\x01\x12\x10\n\x04horn\x18\x12 \x01(\x08\x42\x02\x18\x01\x12\r\n\x05wiper\x18\x13 \x01(\x08\x12\x1c\n\x10\x64isengage_status\x18\x14 \x01(\x08\x42\x02\x18\x01\x12I\n\x0c\x64riving_mode\x18\x15 \x01(\x0e\x32\".apollo.canbus.Chassis.DrivingMode:\x0f\x43OMPLETE_MANUAL\x12>\n\nerror_code\x18\x16 \x01(\x0e\x32 .apollo.canbus.Chassis.ErrorCode:\x08NO_ERROR\x12:\n\rgear_location\x18\x17 \x01(\x0e\x32#.apollo.canbus.Chassis.GearPosition\x12\x1a\n\x12steering_timestamp\x18\x18 \x01(\x01\x12%\n\x06header\x18\x19 \x01(\x0b\x32\x15.apollo.common.Header\x12\x1d\n\x12\x63hassis_error_mask\x18\x1a \x01(\x05:\x01\x30\x12,\n\x06signal\x18\x1b \x01(\x0b\x32\x1c.apollo.common.VehicleSignal\x12.\n\x0b\x63hassis_gps\x18\x1c \x01(\x0b\x32\x19.apollo.canbus.ChassisGPS\x12\x32\n\rengage_advice\x18\x1d \x01(\x0b\x32\x1b.apollo.common.EngageAdvice\x12.\n\x0bwheel_speed\x18\x1e \x01(\x0b\x32\x19.apollo.canbus.WheelSpeed\x12)\n\x08surround\x18\x1f \x01(\x0b\x32\x17.apollo.canbus.Surround\x12+\n\x07license\x18 \x01(\x0b\x32\x16.apollo.canbus.LicenseB\x02\x18\x01\x12,\n\nvehicle_id\x18! \x01(\x0b\x32\x18.apollo.common.VehicleID\x12\"\n\x16\x62\x61ttery_soc_percentage\x18\" \x01(\x05:\x02-1\"y\n\x0b\x44rivingMode\x12\x13\n\x0f\x43OMPLETE_MANUAL\x10\x00\x12\x17\n\x13\x43OMPLETE_AUTO_DRIVE\x10\x01\x12\x13\n\x0f\x41UTO_STEER_ONLY\x10\x02\x12\x13\n\x0f\x41UTO_SPEED_ONLY\x10\x03\x12\x12\n\x0e\x45MERGENCY_MODE\x10\x04\"\x80\x02\n\tErrorCode\x12\x0c\n\x08NO_ERROR\x10\x00\x12\x15\n\x11\x43MD_NOT_IN_PERIOD\x10\x01\x12\x11\n\rCHASSIS_ERROR\x10\x02\x12\x1a\n\x16\x43HASSIS_ERROR_ON_STEER\x10\x06\x12\x1a\n\x16\x43HASSIS_ERROR_ON_BRAKE\x10\x07\x12\x1d\n\x19\x43HASSIS_ERROR_ON_THROTTLE\x10\x08\x12\x19\n\x15\x43HASSIS_ERROR_ON_GEAR\x10\t\x12\x17\n\x13MANUAL_INTERVENTION\x10\x03\x12\x1d\n\x19\x43HASSIS_CAN_NOT_IN_PERIOD\x10\x04\x12\x11\n\rUNKNOWN_ERROR\x10\x05\"\x83\x01\n\x0cGearPosition\x12\x10\n\x0cGEAR_NEUTRAL\x10\x00\x12\x0e\n\nGEAR_DRIVE\x10\x01\x12\x10\n\x0cGEAR_REVERSE\x10\x02\x12\x10\n\x0cGEAR_PARKING\x10\x03\x12\x0c\n\x08GEAR_LOW\x10\x04\x12\x10\n\x0cGEAR_INVALID\x10\x05\x12\r\n\tGEAR_NONE\x10\x06\"\x89\x03\n\nChassisGPS\x12\x10\n\x08latitude\x18\x01 \x01(\x01\x12\x11\n\tlongitude\x18\x02 \x01(\x01\x12\x11\n\tgps_valid\x18\x03 \x01(\x08\x12\x0c\n\x04year\x18\x04 \x01(\x05\x12\r\n\x05month\x18\x05 \x01(\x05\x12\x0b\n\x03\x64\x61y\x18\x06 \x01(\x05\x12\r\n\x05hours\x18\x07 \x01(\x05\x12\x0f\n\x07minutes\x18\x08 \x01(\x05\x12\x0f\n\x07seconds\x18\t \x01(\x05\x12\x19\n\x11\x63ompass_direction\x18\n \x01(\x01\x12\x0c\n\x04pdop\x18\x0b \x01(\x01\x12\x14\n\x0cis_gps_fault\x18\x0c \x01(\x08\x12\x13\n\x0bis_inferred\x18\r \x01(\x08\x12\x10\n\x08\x61ltitude\x18\x0e \x01(\x01\x12\x0f\n\x07heading\x18\x0f \x01(\x01\x12\x0c\n\x04hdop\x18\x10 \x01(\x01\x12\x0c\n\x04vdop\x18\x11 \x01(\x01\x12*\n\x07quality\x18\x12 \x01(\x0e\x32\x19.apollo.canbus.GpsQuality\x12\x16\n\x0enum_satellites\x18\x13 \x01(\x05\x12\x11\n\tgps_speed\x18\x14 \x01(\x01\"\x8e\x05\n\nWheelSpeed\x12$\n\x15is_wheel_spd_rr_valid\x18\x01 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_rr\x18\x02 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_rr\x18\x03 \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_rl_valid\x18\x04 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_rl\x18\x05 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_rl\x18\x06 \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_fr_valid\x18\x07 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_fr\x18\x08 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_fr\x18\t \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_fl_valid\x18\n \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_fl\x18\x0b \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_fl\x18\x0c \x01(\x01:\x01\x30\"H\n\x0eWheelSpeedType\x12\x0b\n\x07\x46ORWARD\x10\x00\x12\x0c\n\x08\x42\x41\x43KWARD\x10\x01\x12\x0e\n\nSTANDSTILL\x10\x02\x12\x0b\n\x07INVALID\x10\x03\"p\n\x05Sonar\x12\r\n\x05range\x18\x01 \x01(\x01\x12+\n\x0btranslation\x18\x02 \x01(\x0b\x32\x16.apollo.common.Point3D\x12+\n\x08rotation\x18\x03 \x01(\x0b\x32\x19.apollo.common.Quaternion\"\xe4\x04\n\x08Surround\x12 \n\x18\x63ross_traffic_alert_left\x18\x01 \x01(\x08\x12(\n cross_traffic_alert_left_enabled\x18\x02 \x01(\x08\x12\x1d\n\x15\x62lind_spot_left_alert\x18\x03 \x01(\x08\x12%\n\x1d\x62lind_spot_left_alert_enabled\x18\x04 \x01(\x08\x12!\n\x19\x63ross_traffic_alert_right\x18\x05 \x01(\x08\x12)\n!cross_traffic_alert_right_enabled\x18\x06 \x01(\x08\x12\x1e\n\x16\x62lind_spot_right_alert\x18\x07 \x01(\x08\x12&\n\x1e\x62lind_spot_right_alert_enabled\x18\x08 \x01(\x08\x12\x0f\n\x07sonar00\x18\t \x01(\x01\x12\x0f\n\x07sonar01\x18\n \x01(\x01\x12\x0f\n\x07sonar02\x18\x0b \x01(\x01\x12\x0f\n\x07sonar03\x18\x0c \x01(\x01\x12\x0f\n\x07sonar04\x18\r \x01(\x01\x12\x0f\n\x07sonar05\x18\x0e \x01(\x01\x12\x0f\n\x07sonar06\x18\x0f \x01(\x01\x12\x0f\n\x07sonar07\x18\x10 \x01(\x01\x12\x0f\n\x07sonar08\x18\x11 \x01(\x01\x12\x0f\n\x07sonar09\x18\x12 \x01(\x01\x12\x0f\n\x07sonar10\x18\x13 \x01(\x01\x12\x0f\n\x07sonar11\x18\x14 \x01(\x01\x12\x15\n\rsonar_enabled\x18\x15 \x01(\x08\x12\x13\n\x0bsonar_fault\x18\x16 \x01(\x08\x12\x13\n\x0bsonar_range\x18\x17 \x03(\x01\x12#\n\x05sonar\x18\x18 \x03(\x0b\x32\x14.apollo.canbus.Sonar\"\x1a\n\x07License\x12\x0f\n\x03vin\x18\x01 \x01(\tB\x02\x18\x01*A\n\nGpsQuality\x12\n\n\x06\x46IX_NO\x10\x00\x12\n\n\x06\x46IX_2D\x10\x01\x12\n\n\x06\x46IX_3D\x10\x02\x12\x0f\n\x0b\x46IX_INVALID\x10\x03')
,
dependencies=[modules_dot_common_dot_proto_dot_header__pb2.DESCRIPTOR,modules_dot_common_dot_proto_dot_vehicle__signal__pb2.DESCRIPTOR,modules_dot_common_dot_proto_dot_drive__state__pb2.DESCRIPTOR,modules_dot_common_dot_proto_dot_geometry__pb2.DESCRIPTOR,modules_dot_common_dot_configs_dot_proto_dot_vehicle__config__pb2.DESCRIPTOR,])
_GPSQUALITY = _descriptor.EnumDescriptor(
name='GpsQuality',
full_name='apollo.canbus.GpsQuality',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='FIX_NO', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='FIX_2D', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='FIX_3D', index=2, number=2,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='FIX_INVALID', index=3, number=3,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=3716,
serialized_end=3781,
)
_sym_db.RegisterEnumDescriptor(_GPSQUALITY)
GpsQuality = enum_type_wrapper.EnumTypeWrapper(_GPSQUALITY)
FIX_NO = 0
FIX_2D = 1
FIX_3D = 2
FIX_INVALID = 3
_CHASSIS_DRIVINGMODE = _descriptor.EnumDescriptor(
name='DrivingMode',
full_name='apollo.canbus.Chassis.DrivingMode',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='COMPLETE_MANUAL', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='COMPLETE_AUTO_DRIVE', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='AUTO_STEER_ONLY', index=2, number=2,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='AUTO_SPEED_ONLY', index=3, number=3,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='EMERGENCY_MODE', index=4, number=4,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=1390,
serialized_end=1511,
)
_sym_db.RegisterEnumDescriptor(_CHASSIS_DRIVINGMODE)
_CHASSIS_ERRORCODE = _descriptor.EnumDescriptor(
name='ErrorCode',
full_name='apollo.canbus.Chassis.ErrorCode',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='NO_ERROR', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CMD_NOT_IN_PERIOD', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_ERROR', index=2, number=2,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_ERROR_ON_STEER', index=3, number=6,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_ERROR_ON_BRAKE', index=4, number=7,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_ERROR_ON_THROTTLE', index=5, number=8,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_ERROR_ON_GEAR', index=6, number=9,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='MANUAL_INTERVENTION', index=7, number=3,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='CHASSIS_CAN_NOT_IN_PERIOD', index=8, number=4,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='UNKNOWN_ERROR', index=9, number=5,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=1514,
serialized_end=1770,
)
_sym_db.RegisterEnumDescriptor(_CHASSIS_ERRORCODE)
_CHASSIS_GEARPOSITION = _descriptor.EnumDescriptor(
name='GearPosition',
full_name='apollo.canbus.Chassis.GearPosition',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='GEAR_NEUTRAL', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_DRIVE', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_REVERSE', index=2, number=2,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_PARKING', index=3, number=3,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_LOW', index=4, number=4,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_INVALID', index=5, number=5,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='GEAR_NONE', index=6, number=6,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=1773,
serialized_end=1904,
)
_sym_db.RegisterEnumDescriptor(_CHASSIS_GEARPOSITION)
_WHEELSPEED_WHEELSPEEDTYPE = _descriptor.EnumDescriptor(
name='WheelSpeedType',
full_name='apollo.canbus.WheelSpeed.WheelSpeedType',
filename=None,
file=DESCRIPTOR,
values=[
_descriptor.EnumValueDescriptor(
name='FORWARD', index=0, number=0,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='BACKWARD', index=1, number=1,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='STANDSTILL', index=2, number=2,
options=None,
type=None),
_descriptor.EnumValueDescriptor(
name='INVALID', index=3, number=3,
options=None,
type=None),
],
containing_type=None,
options=None,
serialized_start=2885,
serialized_end=2957,
)
_sym_db.RegisterEnumDescriptor(_WHEELSPEED_WHEELSPEEDTYPE)
_CHASSIS = _descriptor.Descriptor(
name='Chassis',
full_name='apollo.canbus.Chassis',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='engine_started', full_name='apollo.canbus.Chassis.engine_started', index=0,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='engine_rpm', full_name='apollo.canbus.Chassis.engine_rpm', index=1,
number=4, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='speed_mps', full_name='apollo.canbus.Chassis.speed_mps', index=2,
number=5, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='odometer_m', full_name='apollo.canbus.Chassis.odometer_m', index=3,
number=6, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='fuel_range_m', full_name='apollo.canbus.Chassis.fuel_range_m', index=4,
number=7, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='throttle_percentage', full_name='apollo.canbus.Chassis.throttle_percentage', index=5,
number=8, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='brake_percentage', full_name='apollo.canbus.Chassis.brake_percentage', index=6,
number=9, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='steering_percentage', full_name='apollo.canbus.Chassis.steering_percentage', index=7,
number=11, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='steering_torque_nm', full_name='apollo.canbus.Chassis.steering_torque_nm', index=8,
number=12, type=2, cpp_type=6, label=1,
has_default_value=True, default_value=(1e10000 * 0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='parking_brake', full_name='apollo.canbus.Chassis.parking_brake', index=9,
number=13, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='high_beam_signal', full_name='apollo.canbus.Chassis.high_beam_signal', index=10,
number=14, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='low_beam_signal', full_name='apollo.canbus.Chassis.low_beam_signal', index=11,
number=15, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='left_turn_signal', full_name='apollo.canbus.Chassis.left_turn_signal', index=12,
number=16, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='right_turn_signal', full_name='apollo.canbus.Chassis.right_turn_signal', index=13,
number=17, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='horn', full_name='apollo.canbus.Chassis.horn', index=14,
number=18, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='wiper', full_name='apollo.canbus.Chassis.wiper', index=15,
number=19, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='disengage_status', full_name='apollo.canbus.Chassis.disengage_status', index=16,
number=20, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='driving_mode', full_name='apollo.canbus.Chassis.driving_mode', index=17,
number=21, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='error_code', full_name='apollo.canbus.Chassis.error_code', index=18,
number=22, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='gear_location', full_name='apollo.canbus.Chassis.gear_location', index=19,
number=23, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='steering_timestamp', full_name='apollo.canbus.Chassis.steering_timestamp', index=20,
number=24, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='header', full_name='apollo.canbus.Chassis.header', index=21,
number=25, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='chassis_error_mask', full_name='apollo.canbus.Chassis.chassis_error_mask', index=22,
number=26, type=5, cpp_type=1, label=1,
has_default_value=True, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='signal', full_name='apollo.canbus.Chassis.signal', index=23,
number=27, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='chassis_gps', full_name='apollo.canbus.Chassis.chassis_gps', index=24,
number=28, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='engage_advice', full_name='apollo.canbus.Chassis.engage_advice', index=25,
number=29, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_speed', full_name='apollo.canbus.Chassis.wheel_speed', index=26,
number=30, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='surround', full_name='apollo.canbus.Chassis.surround', index=27,
number=31, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='license', full_name='apollo.canbus.Chassis.license', index=28,
number=32, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
_descriptor.FieldDescriptor(
name='vehicle_id', full_name='apollo.canbus.Chassis.vehicle_id', index=29,
number=33, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='battery_soc_percentage', full_name='apollo.canbus.Chassis.battery_soc_percentage', index=30,
number=34, type=5, cpp_type=1, label=1,
has_default_value=True, default_value=-1,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
_CHASSIS_DRIVINGMODE,
_CHASSIS_ERRORCODE,
_CHASSIS_GEARPOSITION,
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=260,
serialized_end=1904,
)
_CHASSISGPS = _descriptor.Descriptor(
name='ChassisGPS',
full_name='apollo.canbus.ChassisGPS',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='latitude', full_name='apollo.canbus.ChassisGPS.latitude', index=0,
number=1, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='longitude', full_name='apollo.canbus.ChassisGPS.longitude', index=1,
number=2, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='gps_valid', full_name='apollo.canbus.ChassisGPS.gps_valid', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='year', full_name='apollo.canbus.ChassisGPS.year', index=3,
number=4, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='month', full_name='apollo.canbus.ChassisGPS.month', index=4,
number=5, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='day', full_name='apollo.canbus.ChassisGPS.day', index=5,
number=6, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='hours', full_name='apollo.canbus.ChassisGPS.hours', index=6,
number=7, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='minutes', full_name='apollo.canbus.ChassisGPS.minutes', index=7,
number=8, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='seconds', full_name='apollo.canbus.ChassisGPS.seconds', index=8,
number=9, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='compass_direction', full_name='apollo.canbus.ChassisGPS.compass_direction', index=9,
number=10, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='pdop', full_name='apollo.canbus.ChassisGPS.pdop', index=10,
number=11, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='is_gps_fault', full_name='apollo.canbus.ChassisGPS.is_gps_fault', index=11,
number=12, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='is_inferred', full_name='apollo.canbus.ChassisGPS.is_inferred', index=12,
number=13, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='altitude', full_name='apollo.canbus.ChassisGPS.altitude', index=13,
number=14, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='heading', full_name='apollo.canbus.ChassisGPS.heading', index=14,
number=15, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='hdop', full_name='apollo.canbus.ChassisGPS.hdop', index=15,
number=16, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='vdop', full_name='apollo.canbus.ChassisGPS.vdop', index=16,
number=17, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='quality', full_name='apollo.canbus.ChassisGPS.quality', index=17,
number=18, type=14, cpp_type=8, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='num_satellites', full_name='apollo.canbus.ChassisGPS.num_satellites', index=18,
number=19, type=5, cpp_type=1, label=1,
has_default_value=False, default_value=0,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='gps_speed', full_name='apollo.canbus.ChassisGPS.gps_speed', index=19,
number=20, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=1907,
serialized_end=2300,
)
_WHEELSPEED = _descriptor.Descriptor(
name='WheelSpeed',
full_name='apollo.canbus.WheelSpeed',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='is_wheel_spd_rr_valid', full_name='apollo.canbus.WheelSpeed.is_wheel_spd_rr_valid', index=0,
number=1, type=8, cpp_type=7, label=1,
has_default_value=True, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_direction_rr', full_name='apollo.canbus.WheelSpeed.wheel_direction_rr', index=1,
number=2, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=3,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_spd_rr', full_name='apollo.canbus.WheelSpeed.wheel_spd_rr', index=2,
number=3, type=1, cpp_type=5, label=1,
has_default_value=True, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='is_wheel_spd_rl_valid', full_name='apollo.canbus.WheelSpeed.is_wheel_spd_rl_valid', index=3,
number=4, type=8, cpp_type=7, label=1,
has_default_value=True, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_direction_rl', full_name='apollo.canbus.WheelSpeed.wheel_direction_rl', index=4,
number=5, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=3,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_spd_rl', full_name='apollo.canbus.WheelSpeed.wheel_spd_rl', index=5,
number=6, type=1, cpp_type=5, label=1,
has_default_value=True, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='is_wheel_spd_fr_valid', full_name='apollo.canbus.WheelSpeed.is_wheel_spd_fr_valid', index=6,
number=7, type=8, cpp_type=7, label=1,
has_default_value=True, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_direction_fr', full_name='apollo.canbus.WheelSpeed.wheel_direction_fr', index=7,
number=8, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=3,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_spd_fr', full_name='apollo.canbus.WheelSpeed.wheel_spd_fr', index=8,
number=9, type=1, cpp_type=5, label=1,
has_default_value=True, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='is_wheel_spd_fl_valid', full_name='apollo.canbus.WheelSpeed.is_wheel_spd_fl_valid', index=9,
number=10, type=8, cpp_type=7, label=1,
has_default_value=True, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_direction_fl', full_name='apollo.canbus.WheelSpeed.wheel_direction_fl', index=10,
number=11, type=14, cpp_type=8, label=1,
has_default_value=True, default_value=3,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='wheel_spd_fl', full_name='apollo.canbus.WheelSpeed.wheel_spd_fl', index=11,
number=12, type=1, cpp_type=5, label=1,
has_default_value=True, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
_WHEELSPEED_WHEELSPEEDTYPE,
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=2303,
serialized_end=2957,
)
_SONAR = _descriptor.Descriptor(
name='Sonar',
full_name='apollo.canbus.Sonar',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='range', full_name='apollo.canbus.Sonar.range', index=0,
number=1, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='translation', full_name='apollo.canbus.Sonar.translation', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='rotation', full_name='apollo.canbus.Sonar.rotation', index=2,
number=3, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=2959,
serialized_end=3071,
)
_SURROUND = _descriptor.Descriptor(
name='Surround',
full_name='apollo.canbus.Surround',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='cross_traffic_alert_left', full_name='apollo.canbus.Surround.cross_traffic_alert_left', index=0,
number=1, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='cross_traffic_alert_left_enabled', full_name='apollo.canbus.Surround.cross_traffic_alert_left_enabled', index=1,
number=2, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='blind_spot_left_alert', full_name='apollo.canbus.Surround.blind_spot_left_alert', index=2,
number=3, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='blind_spot_left_alert_enabled', full_name='apollo.canbus.Surround.blind_spot_left_alert_enabled', index=3,
number=4, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='cross_traffic_alert_right', full_name='apollo.canbus.Surround.cross_traffic_alert_right', index=4,
number=5, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='cross_traffic_alert_right_enabled', full_name='apollo.canbus.Surround.cross_traffic_alert_right_enabled', index=5,
number=6, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='blind_spot_right_alert', full_name='apollo.canbus.Surround.blind_spot_right_alert', index=6,
number=7, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='blind_spot_right_alert_enabled', full_name='apollo.canbus.Surround.blind_spot_right_alert_enabled', index=7,
number=8, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar00', full_name='apollo.canbus.Surround.sonar00', index=8,
number=9, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar01', full_name='apollo.canbus.Surround.sonar01', index=9,
number=10, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar02', full_name='apollo.canbus.Surround.sonar02', index=10,
number=11, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar03', full_name='apollo.canbus.Surround.sonar03', index=11,
number=12, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar04', full_name='apollo.canbus.Surround.sonar04', index=12,
number=13, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar05', full_name='apollo.canbus.Surround.sonar05', index=13,
number=14, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar06', full_name='apollo.canbus.Surround.sonar06', index=14,
number=15, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar07', full_name='apollo.canbus.Surround.sonar07', index=15,
number=16, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar08', full_name='apollo.canbus.Surround.sonar08', index=16,
number=17, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar09', full_name='apollo.canbus.Surround.sonar09', index=17,
number=18, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar10', full_name='apollo.canbus.Surround.sonar10', index=18,
number=19, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar11', full_name='apollo.canbus.Surround.sonar11', index=19,
number=20, type=1, cpp_type=5, label=1,
has_default_value=False, default_value=float(0),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar_enabled', full_name='apollo.canbus.Surround.sonar_enabled', index=20,
number=21, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar_fault', full_name='apollo.canbus.Surround.sonar_fault', index=21,
number=22, type=8, cpp_type=7, label=1,
has_default_value=False, default_value=False,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar_range', full_name='apollo.canbus.Surround.sonar_range', index=22,
number=23, type=1, cpp_type=5, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='sonar', full_name='apollo.canbus.Surround.sonar', index=23,
number=24, type=11, cpp_type=10, label=3,
has_default_value=False, default_value=[],
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto2',
extension_ranges=[],
oneofs=[
],
serialized_start=3074,
serialized_end=3686,
)
_LICENSE = _descriptor.Descriptor(
name='License',
full_name='apollo.canbus.License',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='vin', full_name='apollo.canbus.License.vin', index=0,
number=1, type=9, cpp_type=9, label=1,
has_default_value=False, default_value=_b("").decode('utf-8'),
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=_descriptor._ParseOptions(descriptor_pb2.FieldOptions(), _b('\030\001'))),
],
extensions=[
],