diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-11-27 13:32:15 -0500 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-11-27 13:32:33 -0500 |
commit | 470544823bc2f8b7ef4cf535adbf22fa2c81915f (patch) | |
tree | 19976eec6639f92f571d55adcfcd345f6fda2b27 /make.mk | |
parent | 002d368a25914527015f63967421fd0e7c5bda17 (diff) | |
download | Sensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.tar.gz Sensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.tar.bz2 Sensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.zip |
add LIS2DH accelerometer driver, test app
Diffstat (limited to 'make.mk')
-rw-r--r-- | make.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -61,6 +61,7 @@ INCLUDES += \ -I$(TOP)/watch-library/config/ \ -I$(TOP)/watch-library/hw/ \ -I$(TOP)/watch-library/watch/ \ + -I$(TOP)/watch-library/driver/ \ -I$(TOP)/watch-library SRCS += \ @@ -112,6 +113,7 @@ SRCS += \ $(TOP)/watch-library/hpl/sercom/hpl_sercom.c \ $(TOP)/watch-library/hpl/slcd/hpl_slcd.c \ $(TOP)/watch-library/hpl/systick/hpl_systick.c \ + $(TOP)/watch-library/driver/lis2dh.c \ DEFINES += \ -D__SAML22J18A__ \ |