command correct sequence IDs now
This commit is contained in:
parent
fd5c234bc8
commit
3d2dee8c9c
@ -26,11 +26,10 @@ class OpCodes(str, enum.Enum):
|
||||
|
||||
class AcsModes(enum.IntEnum):
|
||||
OFF = 0
|
||||
SAFE = 1
|
||||
DETUMBLE = 2
|
||||
IDLE = 3
|
||||
TARGET_PT = 4
|
||||
REPORT_ALL_MODES = 5
|
||||
SAFE = 1 << 24
|
||||
DETUMBLE = 2 << 24
|
||||
IDLE = 3 << 24
|
||||
TARGET_PT = 4 << 24
|
||||
|
||||
|
||||
class Info(str, enum.Enum):
|
||||
|
Loading…
Reference in New Issue
Block a user