diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2018-05-21 19:58:50 +0900 |
---|---|---|
committer | Yuta Doi <yuta-d@witz-inc.co.jp> | 2018-05-21 20:01:53 +0900 |
commit | cfcc176e4cbbd890bcd67e2b8afb61fbff10d131 (patch) | |
tree | 8022ce046039dd759c93e9f3c140a66497ea13db /src/app.hpp | |
parent | b6512a47584376d8016a7e5a91cca8bb5c945db9 (diff) |
Add lightstatus brake ON/OFF event
Change-Id: Id2c61fc6e102394f5ba08effe0cfac448b337176
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'src/app.hpp')
-rw-r--r-- | src/app.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/app.hpp b/src/app.hpp index 2e6ad69..590b23a 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -134,6 +134,7 @@ typedef struct CarInfo { double accel_pedal_pos; const char *car_stt; bool headlamp_stt; + bool lightstatus_brake_stt; } CarInfo; struct App { @@ -159,6 +160,9 @@ struct App { Event_ParkingBrakeOff, Event_ParkingBrakeOn, + Event_LightstatusBrakeOff, + Event_LightstatusBrakeOn, + Event_CarStop, Event_CarRun, @@ -176,6 +180,8 @@ struct App { "headlamp_on", "parking_brake_off", "parking_brake_on", + "lightstatus_brake_off", + "lightstatus_brake_on", "car_stop", "car_run", }; @@ -287,6 +293,8 @@ private: void emitHeadlampOn(); void emitParkingBrakeOff(); void emitParkingBrakeOn(); + void emitLightstatusBrakeOff(); + void emitLightstatusBrakeOn(); void emitCarStop(); void emitCarRun(); |