Some routines inside the sensor bus code in dartuino need floating point, so put those in MODULE_FLOAT_SRCS. Also mark app/accellerometer as needing float.
13 lines
187 B
Makefile
13 lines
187 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/accelerometer.c \
|
|
|
|
MODULE_ARM_OVERRIDE_SRCS := \
|
|
|
|
MODULE_OPTIONS := float
|
|
|
|
include make/module.mk
|