-
Notifications
You must be signed in to change notification settings - Fork 11k
New sounds #38154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
New sounds #38154
Changes from 10 commits
6ff5e7a
d82a36b
a0c7dba
a608519
b6119b3
3f175a2
f1f3c37
d6bb423
3626076
1256930
5fc57a6
6e09e0b
1510072
db84aea
6ffbd6d
5da41f1
13b2144
bfc8346
6dce3a8
3788b1d
a9ce8a9
361b6a6
6a631b4
068480a
33d2440
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -771,13 +771,31 @@ struct SelfdriveState { | |
| alertStatus @5 :AlertStatus; | ||
| alertSize @6 :AlertSize; | ||
| alertType @7 :Text; | ||
| alertSound @8 :Car.CarControl.HUDControl.AudibleAlert; | ||
| alertSoundDEPRECATED @8 :Car.CarControl.HUDControl.AudibleAlert; | ||
| alertSound @13 :AudibleAlert; | ||
| alertHudVisual @12 :Car.CarControl.HUDControl.VisualAlert; | ||
|
|
||
| # configurable driving settings | ||
| experimentalMode @10 :Bool; | ||
| personality @11 :LongitudinalPersonality; | ||
|
|
||
| enum AudibleAlert { | ||
| none @0; | ||
|
|
||
| engage @1; | ||
| disengage @2; | ||
| refuse @3; | ||
|
|
||
| warningSoft @4; | ||
| warningImmediate @5; | ||
|
|
||
| prompt @6; | ||
| promptRepeat @7; | ||
| promptDistracted @8; | ||
|
|
||
| laneChangeConfirmed @9; | ||
|
elkoled marked this conversation as resolved.
Outdated
|
||
| } | ||
|
|
||
| enum OpenpilotState @0xdbe58b96d2d1ac61 { | ||
| disabled @0; | ||
| preEnabled @1; | ||
|
|
@@ -918,7 +936,7 @@ struct ControlsState @0x97ff69c53601abf1 { | |
| alertStatus @38 :SelfdriveState.AlertStatus; | ||
| alertSize @39 :SelfdriveState.AlertSize; | ||
| alertType @44 :Text; | ||
| alertSound2 @56 :Car.CarControl.HUDControl.AudibleAlert; | ||
| alertSound2 @56 :SelfdriveState.AudibleAlert; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this looks like it will break backwards compatibility with old logs?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the schema is identical up to @Confirmation, tested with master log against this branch. |
||
| engageable @41 :Bool; # can OP be engaged? | ||
| state @31 :SelfdriveState.OpenpilotState; | ||
| enabled @19 :Bool; | ||
|
|
||
|
elkoled marked this conversation as resolved.
|
Uh oh!
There was an error while loading. Please reload this page.