We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
boot
1 parent ee8f218 commit 2ffd1a0Copy full SHA for 2ffd1a0
adafruit_lsm6ds.py
@@ -212,7 +212,6 @@ class LSM6DS: # pylint: disable=too-many-instance-attributes
212
213
_sw_reset = RWBit(_LSM6DS_CTRL3_C, 0)
214
_bdu = RWBit(_LSM6DS_CTRL3_C, 6)
215
- _boot = RWBit(_LSM6DS_CTRL3_C, 7)
216
217
_high_pass_filter = RWBits(2, _LSM6DS_CTRL8_XL, 5)
218
_i3c_disable = RWBit(_LSM6DS_CTRL9_XL, 1)
@@ -248,9 +247,6 @@ def reset(self):
248
247
self._sw_reset = True
249
while self._sw_reset:
250
sleep(0.001)
251
- self._boot = True
252
- while self._boot:
253
- sleep(0.001)
254
255
@property
256
def acceleration(self):
0 commit comments