summaryrefslogtreecommitdiff
path: root/nuttx/drivers/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 23:37:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 23:37:52 +0000
commit2bdc64a2f96ff952826ad25aecd426f6788c7c31 (patch)
treefce7e1dbc3f08e5a77176beec2f13ace660be492 /nuttx/drivers/Makefile
parente571e66c5de89d7c94c4bb69381da568e698787e (diff)
downloadpx4-nuttx-2bdc64a2f96ff952826ad25aecd426f6788c7c31.tar.gz
px4-nuttx-2bdc64a2f96ff952826ad25aecd426f6788c7c31.tar.bz2
px4-nuttx-2bdc64a2f96ff952826ad25aecd426f6788c7c31.zip
Add an upper half watchdog timer driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4604 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/Makefile')
-rw-r--r--nuttx/drivers/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/drivers/Makefile b/nuttx/drivers/Makefile
index 8b0701490..e32075624 100644
--- a/nuttx/drivers/Makefile
+++ b/nuttx/drivers/Makefile
@@ -82,6 +82,10 @@ endif
ifeq ($(CONFIG_PWM),y)
CSRCS += pwm.c
endif
+
+ifeq ($(CONFIG_WATCHDOG),y)
+ CSRCS += watchdog.c
+endif
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))