zephyr/drivers/serial/Makefile
Gil Pitney e8b43cbc81 cc3200: Add a UART driver (polled and interrupt modes)
The pinmux configuration is done during board initialization.

This was validated using the following Zephyr apps:
- samples/hello_world
- samples/philosophers
- samples/drivers/uart
- samples/shell

UARTA0 is currently supported.

Change-Id: I85727c622d4d42183cc9f2f8b43d653e245dd17e
Signed-off-by: Gil Pitney <gil.pitney@linaro.org>
2016-11-04 14:53:33 +00:00

14 lines
550 B
Makefile

ccflags-$(CONFIG_UART_QMSI) +=-I$(CONFIG_QMSI_INSTALL_PATH)/include
ccflags-y +=-I$(srctree)/drivers
obj-$(CONFIG_UART_NS16550) += uart_ns16550.o
obj-$(CONFIG_UART_K20) += uart_k20.o
obj-$(CONFIG_UART_STELLARIS) += uart_stellaris.o
obj-$(CONFIG_UART_NSIM) += uart_nsim.o
obj-$(CONFIG_UART_ATMEL_SAM3) += uart_atmel_sam3.o
obj-$(CONFIG_UART_QMSI) += uart_qmsi.o
obj-$(CONFIG_UART_STM32) += uart_stm32.o
obj-$(CONFIG_UART_NRF5) += uart_nrf5.o
obj-$(CONFIG_UART_ALTERA_JTAG) += uart_altera_jtag.o
obj-$(CONFIG_UART_CC32XX) += uart_cc32xx.o