mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 08:14:00 +08:00
Add CLEAR_ON_IGNITION_OFF param type (#21121)
old-commit-hash: 36beaf0d6895c9d69d05c3a25eab21a4d9dbb692
This commit is contained in:
@@ -12,8 +12,9 @@ enum ParamKeyType {
|
||||
PERSISTENT = 0x02,
|
||||
CLEAR_ON_MANAGER_START = 0x04,
|
||||
CLEAR_ON_PANDA_DISCONNECT = 0x08,
|
||||
CLEAR_ON_IGNITION = 0x10,
|
||||
ALL = 0x02 | 0x04 | 0x08 | 0x10
|
||||
CLEAR_ON_IGNITION_ON = 0x10,
|
||||
CLEAR_ON_IGNITION_OFF = 0x20,
|
||||
ALL = 0x02 | 0x04 | 0x08 | 0x10 | 0x20
|
||||
};
|
||||
|
||||
class Params {
|
||||
|
||||
Reference in New Issue
Block a user