mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 16:38:29 +00:00
Completing the terminology change started with change 4008 by updating the Kconfig files processed to produce the online documentation, plus header files processed by doxygen. References to 'platform' are change to 'board' Change-Id: Id0ed3dc1439a0ea0a4bd19d4904889cf79bec33e Jira: ZEP-534 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
111 lines
2.7 KiB
Plaintext
111 lines
2.7 KiB
Plaintext
menuconfig UART_STELLARIS
|
|
bool "Stellaris serial driver"
|
|
default n
|
|
select SERIAL_HAS_DRIVER
|
|
help
|
|
This option enables the Stellaris serial driver.
|
|
This specific driver can be used for the serial hardware
|
|
available at the Texas Instrument LM3S6965 board.
|
|
|
|
# ---------- Port 0 ----------
|
|
|
|
menuconfig UART_STELLARIS_PORT_0
|
|
bool "Enable Stellaris UART Port 0"
|
|
default n
|
|
depends on UART_STELLARIS
|
|
help
|
|
This tells the driver to configure the UART port at boot, depending on
|
|
the additional configure options below.
|
|
|
|
config UART_STELLARIS_PORT_0_NAME
|
|
string "Port 0 Device Name"
|
|
default "UART_0"
|
|
depends on UART_STELLARIS_PORT_0
|
|
help
|
|
This is the device name for UART, and is included in the device
|
|
struct.
|
|
|
|
config UART_STELLARIS_PORT_0_IRQ_PRI
|
|
int "Port 0 Interrupt Priority"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_0
|
|
help
|
|
The interrupt priority for UART port.
|
|
|
|
config UART_STELLARIS_PORT_0_BAUD_RATE
|
|
int "Port 0 Baud Rate"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_0
|
|
help
|
|
The baud rate for UART port to be set to at boot.
|
|
|
|
Leave at 0 to skip initialization.
|
|
|
|
# ---------- Port 1 ----------
|
|
|
|
menuconfig UART_STELLARIS_PORT_1
|
|
bool "Enable Stellaris UART Port 1"
|
|
default n
|
|
depends on UART_STELLARIS
|
|
help
|
|
This tells the driver to configure the UART port at boot, depending on
|
|
the additional configure options below.
|
|
|
|
config UART_STELLARIS_PORT_1_NAME
|
|
string "Port 1 Device Name"
|
|
default "UART_1"
|
|
depends on UART_STELLARIS_PORT_1
|
|
help
|
|
This is the device name for UART, and is included in the device
|
|
struct.
|
|
|
|
config UART_STELLARIS_PORT_1_IRQ_PRI
|
|
int "Port 1 Interrupt Priority"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_1
|
|
help
|
|
The interrupt priority for UART port.
|
|
|
|
config UART_STELLARIS_PORT_1_BAUD_RATE
|
|
int "Port 1 Baud Rate"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_1
|
|
help
|
|
The baud rate for UART port to be set to at boot.
|
|
|
|
Leave at 0 to skip initialization.
|
|
|
|
# ---------- Port 2 ----------
|
|
|
|
menuconfig UART_STELLARIS_PORT_2
|
|
bool "Enable Stellaris UART Port 2"
|
|
default n
|
|
depends on UART_STELLARIS
|
|
help
|
|
This tells the driver to configure the UART port at boot, depending on
|
|
the additional configure options below.
|
|
|
|
config UART_STELLARIS_PORT_2_NAME
|
|
string "Port 2 Device Name"
|
|
default "UART_2"
|
|
depends on UART_STELLARIS_PORT_2
|
|
help
|
|
This is the device name for UART, and is included in the device
|
|
struct.
|
|
|
|
config UART_STELLARIS_PORT_2_IRQ_PRI
|
|
int "Port 2 Interrupt Priority"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_2
|
|
help
|
|
The interrupt priority for UART port.
|
|
|
|
config UART_STELLARIS_PORT_2_BAUD_RATE
|
|
int "Port 2 Baud Rate"
|
|
default 0
|
|
depends on UART_STELLARIS_PORT_2
|
|
help
|
|
The baud rate for UART port to be set to at boot.
|
|
|
|
Leave at 0 to skip initialization.
|