- Revert to HAL spi since there's still a timing bug in the new WIP driver - Add nrf_sensors app to poll the ACC and send data every 100 ms
23 lines
424 B
Makefile
23 lines
424 B
Makefile
include project/target/dartuinoP0.mk
|
|
include project/virtual/test.mk
|
|
include project/virtual/minip.mk
|
|
|
|
# Console serial port is on pins PA9(TX) and PB7(RX)
|
|
|
|
include project/virtual/fs.mk
|
|
|
|
DISPLAY_PANEL_TYPE ?= LS013B7DH06
|
|
|
|
MODULES += \
|
|
target/dartuinoP0/projects/system
|
|
|
|
MODULE_DEPS += \
|
|
app/accelerometer \
|
|
app/nrf_sensors \
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/sensor_bus.c \
|
|
|
|
GLOBAL_DEFINES += \
|
|
ENABLE_SENSORBUS=1
|