mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 01:25:55 +00:00
Provide PWM driver for STM32 series F1/F4/L4. Driver is ported on STM32Cube HAL and should support other STM32 series with minor updates. Configuration is done so that PWM sample driver could be run on all nucleo boards supporting PWM driver. Change-Id: I6522a565451085df932e0eefd8404268380b5bfe Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
10 lines
327 B
Makefile
10 lines
327 B
Makefile
# Makefile for PWM drivers
|
|
ccflags-y +=-I$(srctree)/drivers
|
|
ccflags-$(CONFIG_PWM_QMSI) += -I$(CONFIG_QMSI_INSTALL_PATH)/include
|
|
|
|
obj-$(CONFIG_PWM_PCA9685) += pwm_pca9685.o
|
|
obj-$(CONFIG_PWM_DW) += pwm_dw.o
|
|
obj-$(CONFIG_PWM_QMSI) += pwm_qmsi.o
|
|
obj-$(CONFIG_PWM_K64_FTM) += pwm_k64_ftm.o
|
|
obj-$(CONFIG_PWM_STM32) += pwm_stm32.o
|