Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | # Kconfig - MCUXpresso SDK UART
#
# Copyright (c) 2017, NXP
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig UART_MCUX
bool "MCUX uart driver"
depends on HAS_MCUX
default n
select SERIAL_HAS_DRIVER
help
Enable the MCUX uart driver.
if UART_MCUX
menuconfig UART_MCUX_0
bool "UART 0"
default n
help
Enable UART 0.
if UART_MCUX_0
config UART_MCUX_0_NAME
string "UART 0 driver name"
default "UART_0"
if !HAS_DTS
config UART_MCUX_0_IRQ_PRI
int "UART 0 interrupt priority"
default 0
config UART_MCUX_0_BAUD_RATE
int "UART 0 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_0
menuconfig UART_MCUX_1
bool "UART 1"
default n
help
Enable UART 1.
if UART_MCUX_1
config UART_MCUX_1_NAME
string "UART 1 driver name"
default "UART_1"
if !HAS_DTS
config UART_MCUX_1_IRQ_PRI
int "UART 1 interrupt priority"
default 0
config UART_MCUX_1_BAUD_RATE
int "UART 1 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_1
menuconfig UART_MCUX_2
bool "UART 2"
default n
help
Enable UART 2.
if UART_MCUX_2
config UART_MCUX_2_NAME
string "UART 2 driver name"
default "UART_2"
if !HAS_DTS
config UART_MCUX_2_IRQ_PRI
int "UART 2 interrupt priority"
default 0
config UART_MCUX_2_BAUD_RATE
int "UART 2 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_2
menuconfig UART_MCUX_3
bool "UART 3"
default n
help
Enable UART 3.
if UART_MCUX_3
config UART_MCUX_3_NAME
string "UART 3 driver name"
default "UART_3"
if !HAS_DTS
config UART_MCUX_3_IRQ_PRI
int "UART 3 interrupt priority"
default 0
config UART_MCUX_3_BAUD_RATE
int "UART 3 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_3
menuconfig UART_MCUX_4
bool "UART 4"
default n
help
Enable UART 4.
if UART_MCUX_4
config UART_MCUX_4_NAME
string "UART 4 driver name"
default "UART_4"
if !HAS_DTS
config UART_MCUX_4_IRQ_PRI
int "UART 4 interrupt priority"
default 0
config UART_MCUX_4_BAUD_RATE
int "UART 4 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_4
menuconfig UART_MCUX_5
bool "UART 5"
default n
help
Enable UART 5.
if UART_MCUX_5
config UART_MCUX_5_NAME
string "UART 5 driver name"
default "UART_5"
if !HAS_DTS
config UART_MCUX_5_IRQ_PRI
int "UART 5 interrupt priority"
default 0
config UART_MCUX_5_BAUD_RATE
int "UART 5 baud rate"
default 115200
endif # !HAS_DTS
endif # UART_MCUX_5
endif # UART_MCUX
|