summaryrefslogtreecommitdiff
path: root/nuttx/configs/olimex-lpc1766stk/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-03 01:03:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-03 01:03:56 +0000
commit7783b262aa5bc4473619f44a963c5bd63f4e5180 (patch)
tree4f493751a6deddb65b92c4eff5cb2abf40822e25 /nuttx/configs/olimex-lpc1766stk/src/Makefile
parent227420dd5ecb981092e5db9340c6c7f081afbcf3 (diff)
downloadpx4-nuttx-7783b262aa5bc4473619f44a963c5bd63f4e5180.tar.gz
px4-nuttx-7783b262aa5bc4473619f44a963c5bd63f4e5180.tar.bz2
px4-nuttx-7783b262aa5bc4473619f44a963c5bd63f4e5180.zip
LPC17xx CAN driver now supports all 3 transmit buffers and loopback mode; LCP1766-STK NSH configuration will support the CAN loopback test
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4253 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/olimex-lpc1766stk/src/Makefile')
-rwxr-xr-xnuttx/configs/olimex-lpc1766stk/src/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/nuttx/configs/olimex-lpc1766stk/src/Makefile b/nuttx/configs/olimex-lpc1766stk/src/Makefile
index f006461bc..a2bdab303 100755
--- a/nuttx/configs/olimex-lpc1766stk/src/Makefile
+++ b/nuttx/configs/olimex-lpc1766stk/src/Makefile
@@ -1,7 +1,7 @@
############################################################################
# configs/olimex-lpc1766stk/src/Makefile
#
-# Copyright (C) 2010 Gregory Nutt. All rights reserved.
+# Copyright (C) 2010, 2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -56,6 +56,10 @@ ifeq ($(CONFIG_ARCH_BUTTONS),y)
CSRCS += up_buttons.c
endif
+ifeq ($(CONFIG_CAN),y)
+CSRCS += up_can.c
+endif
+
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))