Apollo  6.0
Open source self driving car software
shift_cmd_128.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2018 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
17 #pragma once
18 
19 #include "modules/canbus/proto/chassis_detail.pb.h"
21 
22 namespace apollo {
23 namespace canbus {
24 namespace lexus {
25 
27  ::apollo::canbus::ChassisDetail> {
28  public:
29  static const int32_t ID;
30 
31  Shiftcmd128();
32 
33  uint32_t GetPeriod() const override;
34 
35  void UpdateData(uint8_t* data) override;
36 
37  void Reset() override;
38 
39  // config detail: {'name': 'IGNORE_OVERRIDES', 'offset': 0.0,
40  // 'precision': 1.0, 'len': 1, 'is_signed_var': False, 'physical_range':
41  // '[0|1]', 'bit': 1, 'type': 'bool', 'order': 'motorola', 'physical_unit':
42  // ''}
43  Shiftcmd128* set_ignore_overrides(bool ignore_overrides);
44 
45  // config detail: {'name': 'ENABLE', 'offset': 0.0, 'precision': 1.0, 'len':
46  // 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 0, 'type':
47  // 'bool', 'order': 'motorola', 'physical_unit': ''}
48  Shiftcmd128* set_enable(bool enable);
49 
50  // config detail: {'name': 'CLEAR_OVERRIDE', 'offset': 0.0, 'precision': 1.0,
51  // 'len': 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 2,
52  // 'type': 'bool', 'order': 'motorola', 'physical_unit': ''}
53  Shiftcmd128* set_clear_override(bool clear_override);
54 
55  // config detail: {'name': 'CLEAR_FAULTS', 'offset': 0.0, 'precision': 1.0,
56  // 'len': 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 3,
57  // 'type': 'bool', 'order': 'motorola', 'physical_unit': ''}
58  Shiftcmd128* set_clear_faults(bool clear_faults);
59 
60  // config detail: {'description': 'FORWARD is also HIGH on vehicles with
61  // LOW/HIGH, PARK and LOW only available on certain Vehicles.', 'enum': {0:
62  // 'SHIFT_CMD_PARK', 1: 'SHIFT_CMD_REVERSE', 2: 'SHIFT_CMD_NEUTRAL', 3:
63  // 'SHIFT_CMD_FORWARD_HIGH', 4: 'SHIFT_CMD_LOW', 7: 'SHIFT_CMD_NONE'},
64  // 'precision': 1.0, 'len': 8, 'name': 'SHIFT_CMD', 'is_signed_var': False,
65  // 'offset': 0.0, 'physical_range': '[0|4]', 'bit': 15, 'type': 'enum',
66  // 'order': 'motorola', 'physical_unit': ''}
67  Shiftcmd128* set_shift_cmd(Shift_cmd_128::Shift_cmdType shift_cmd);
68 
69  private:
70  // config detail: {'name': 'IGNORE_OVERRIDES', 'offset': 0.0,
71  // 'precision': 1.0, 'len': 1, 'is_signed_var': False, 'physical_range':
72  // '[0|1]', 'bit': 1, 'type': 'bool', 'order': 'motorola', 'physical_unit':
73  // ''}
74  void set_p_ignore_overrides(uint8_t* data, bool ignore_overrides);
75 
76  // config detail: {'name': 'ENABLE', 'offset': 0.0, 'precision': 1.0, 'len':
77  // 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 0, 'type':
78  // 'bool', 'order': 'motorola', 'physical_unit': ''}
79  void set_p_enable(uint8_t* data, bool enable);
80 
81  // config detail: {'name': 'CLEAR_OVERRIDE', 'offset': 0.0, 'precision': 1.0,
82  // 'len': 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 2,
83  // 'type': 'bool', 'order': 'motorola', 'physical_unit': ''}
84  void set_p_clear_override(uint8_t* data, bool clear_override);
85 
86  // config detail: {'name': 'CLEAR_FAULTS', 'offset': 0.0, 'precision': 1.0,
87  // 'len': 1, 'is_signed_var': False, 'physical_range': '[0|1]', 'bit': 3,
88  // 'type': 'bool', 'order': 'motorola', 'physical_unit': ''}
89  void set_p_clear_faults(uint8_t* data, bool clear_faults);
90 
91  // config detail: {'description': 'FORWARD is also HIGH on vehicles with
92  // LOW/HIGH, PARK and LOW only available on certain Vehicles.', 'enum': {0:
93  // 'SHIFT_CMD_PARK', 1: 'SHIFT_CMD_REVERSE', 2: 'SHIFT_CMD_NEUTRAL', 3:
94  // 'SHIFT_CMD_FORWARD_HIGH', 4: 'SHIFT_CMD_LOW', 7: 'SHIFT_CMD_NONE'},
95  // 'precision': 1.0, 'len': 8, 'name': 'SHIFT_CMD', 'is_signed_var': False,
96  // 'offset': 0.0, 'physical_range': '[0|4]', 'bit': 15, 'type': 'enum',
97  // 'order': 'motorola', 'physical_unit': ''}
98  void set_p_shift_cmd(uint8_t* data, Shift_cmd_128::Shift_cmdType shift_cmd);
99 
100  private:
101  bool ignore_overrides_;
102  bool enable_;
103  bool clear_override_;
104  bool clear_faults_;
105  Shift_cmd_128::Shift_cmdType shift_cmd_;
106 };
107 
108 } // namespace lexus
109 } // namespace canbus
110 } // namespace apollo
Shiftcmd128 * set_ignore_overrides(bool ignore_overrides)
static const int32_t ID
Definition: shift_cmd_128.h:29
Shiftcmd128 * set_clear_override(bool clear_override)
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
Shiftcmd128 * set_clear_faults(bool clear_faults)
This is the base class of protocol data.
Definition: protocol_data.h:44
Definition: shift_cmd_128.h:26
Shiftcmd128 * set_enable(bool enable)
uint32_t GetPeriod() const override
The class of ProtocolData.
Shiftcmd128 * set_shift_cmd(Shift_cmd_128::Shift_cmdType shift_cmd)
void UpdateData(uint8_t *data) override