11 lines
134 B
Python
11 lines
134 B
Python
|
import enum
|
||
|
|
||
|
|
||
|
class AdisGyroSetIds(enum.IntEnum):
|
||
|
CORE_HK = 0
|
||
|
CFG_HK = 1
|
||
|
|
||
|
|
||
|
class L3gGyroSetIds(enum.IntEnum):
|
||
|
CORE_HK = 0
|