The USART is compatiable with the USART feature in sama7g5's Flexcom. Update serial/usart_sam to support sama7g5. Signed-off-by: Tony Han <tony.han@microchip.com>
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
# Atmel SAM USART configuration options
|
|
|
|
# Copyright (c) 2016 Piotr Mienkowski
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config USART_SAM
|
|
bool "Atmel SAM MCU family USART driver"
|
|
default y
|
|
depends on DT_HAS_ATMEL_SAM_USART_ENABLED
|
|
select PINCTRL
|
|
select SERIAL_HAS_DRIVER
|
|
select SERIAL_SUPPORT_INTERRUPT
|
|
select MFD if SOC_SERIES_SAMA7G5
|
|
help
|
|
This option enables the USARTx driver for Atmel SAM MCUs.
|