From 1e05867d314a755613871d09ca527f0cc2fe2e6f Mon Sep 17 00:00:00 2001 From: Radhakrishna Kothamasu <45497122+Krishna626@users.noreply.github.com> Date: Fri, 4 Sep 2020 12:33:27 +0200 Subject: [PATCH] Addition of enum for occupant eye state - introduction of eye state enum - details of enum to be discussed further in the work group discussion --- osi_occupant.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/osi_occupant.proto b/osi_occupant.proto index 131e109fa..152ad16ad 100644 --- a/osi_occupant.proto +++ b/osi_occupant.proto @@ -92,6 +92,14 @@ message Occupant // SEAT_THIRD_ROW_MIDDLE = 10; } + + // Definition of eye state + + enum EyeState + { + // Enum for occupant eye state. For example tracking winking rate, eye closed etc. + } + // Definition of hands related to the steering wheel (mostly driver). // @@ -130,5 +138,7 @@ message Occupant // STEERING_CONTROL_RIGHT_HAND = 6; } + } + }