Skip to content
Snippets Groups Projects
Commit f4ce26de authored by David Siorpaes's avatar David Siorpaes
Browse files

Added LIS302DL ID check

parent db63660c
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ from pyb import SPI
READWRITE_CMD = const(0x80)
MULTIPLEBYTE_CMD = const(0x40)
LIS302DL_WHO_AM_I_ADDR = const(0x0f)
LIS302DL_WHO_AM_I_VAL = const(0x3b)
LIS302DL_CTRL_REG1_ADDR = const(0x20)
LIS302DL_OUT_X = const(0x29)
# Configuration for 100Hz sampling rate, +-2g range
......@@ -38,6 +39,8 @@ class STAccel:
self.cs_pin.high()
self.spi = SPI(1, SPI.MASTER, baudrate=328125, polarity=0, phase=1, bits=8)
self.wr(LIS302DL_CTRL_REG1_ADDR, bytearray([LIS302DL_CONF]))
if(self.read_id()[0] != LIS302DL_WHO_AM_I_VAL):
raise Exception('LIS302DL accelerometer not present')
def rd(self, addr, nbytes):
if nbytes > 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment