11 lines
132 B
Python
11 lines
132 B
Python
import enum
|
|
|
|
|
|
class AdisGyroSetId(enum.IntEnum):
|
|
CORE_HK = 0
|
|
CFG_HK = 1
|
|
|
|
|
|
class L3gGyroSetId(enum.IntEnum):
|
|
CORE_HK = 0
|