summaryrefslogtreecommitdiff
path: root/nuttx/drivers/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-16 16:17:34 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-16 16:17:34 +0000
commitc41819ee0fa00a0741388d2b02edb370a1360a30 (patch)
tree300bc4957f4a2559432a2f6ae680ee6ccd8f3c7c /nuttx/drivers/Makefile
parentb081b723a309bbe18fbbb0f25dbf86c33c2df891 (diff)
downloadpx4-nuttx-c41819ee0fa00a0741388d2b02edb370a1360a30.tar.gz
px4-nuttx-c41819ee0fa00a0741388d2b02edb370a1360a30.tar.bz2
px4-nuttx-c41819ee0fa00a0741388d2b02edb370a1360a30.zip
Add generic, upper-half PWM driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4191 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/Makefile')
-rw-r--r--nuttx/drivers/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/drivers/Makefile b/nuttx/drivers/Makefile
index 8c86feff6..b76a04a8c 100644
--- a/nuttx/drivers/Makefile
+++ b/nuttx/drivers/Makefile
@@ -68,6 +68,9 @@ ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
CSRCS += ramdisk.c rwbuffer.c
endif
+ifeq ($(CONFIG_PWM),y)
+ CSRCS += pwm.c
+endif
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))