summaryrefslogtreecommitdiff
path: root/nuttx/configs/dk-tm4c129x/src/Makefile
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-06 11:50:56 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-06 11:50:56 -0600
commit3c5fae81f4923f684adaafc5b72d18ad09baba45 (patch)
treeb77d83cc8300acd5856ff8effdf3a303d4655d76 /nuttx/configs/dk-tm4c129x/src/Makefile
parent0e1697302a5692d2fa81af5c76d3277b3a19a656 (diff)
downloadnuttx-3c5fae81f4923f684adaafc5b72d18ad09baba45.tar.gz
nuttx-3c5fae81f4923f684adaafc5b72d18ad09baba45.tar.bz2
nuttx-3c5fae81f4923f684adaafc5b72d18ad09baba45.zip
DK-TM4C129X: Add support for on-board TMP100 temperature sensor
Diffstat (limited to 'nuttx/configs/dk-tm4c129x/src/Makefile')
-rw-r--r--nuttx/configs/dk-tm4c129x/src/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/configs/dk-tm4c129x/src/Makefile b/nuttx/configs/dk-tm4c129x/src/Makefile
index 99739fa76..3f624142b 100644
--- a/nuttx/configs/dk-tm4c129x/src/Makefile
+++ b/nuttx/configs/dk-tm4c129x/src/Makefile
@@ -59,6 +59,10 @@ ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += tm4c_nsh.c
endif
+ifeq ($(CONFIG_I2C_LM75),y)
+CSRCS += tm4c_tmp100.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)