We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00021bf commit 2c19727Copy full SHA for 2c19727
micropython/drivers/imu/lsm6dsox/lsm6dsox.py
@@ -60,17 +60,14 @@
60
_OUTX_L_G = const(0x22)
61
_OUTX_L_XL = const(0x28)
62
_MLC_STATUS = const(0x38)
63
-_STEP_COUNTER_L = const(0x62)
64
-_EMB_FUNC_SRC = const(0x64)
+_MD1_CFG = const(0x5E)
+_MD2_CFG = const(0x5F)
65
66
_PAGE_SEL = const(0x02)
67
_PAGE_ADDRESS = const(0x08)
68
_PAGE_VALUE = const(0x09)
69
_PAGE_RW = const(0x17)
70
71
-_MD1_CFG = const(0x5E)
72
-_MD2_CFG = const(0x5F)
73
-
74
_DEFAULT_ADDR = const(0x6A)
75
_WHO_AM_I_REG = const(0x0F)
76
@@ -87,6 +84,8 @@
87
84
_EMB_FUNC_EN_B = const(0x05)
88
85
_EMB_FUNC_INT1 = const(0x0A)
89
86
_EMB_FUNC_INT2 = const(0x0E)
+_EMB_FUNC_SRC = const(0x64)
+_STEP_COUNTER_L = const(0x62)
90
91
_PEDO_DEB_STEPS_CONF = const(0x0184)
92
0 commit comments