mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 21:45:52 +00:00
Switch nSIM from custom ARC UART to ns16550 model. That will allow us to use zephyr images built for nSIM on other platforms like HAPS, QEMU, etc... This patch do: * switch nSIM board to ns16550 UART usage * change nSIM simulator configuration to use ns16550 UART model * drop checks for CONFIG_UART_NSIM in ARC code * update nSIM documentation Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13 lines
154 B
Plaintext
13 lines
154 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_NSIM
|
|
|
|
config BOARD
|
|
default "nsim"
|
|
|
|
config UART_NS16550
|
|
default y
|
|
depends on SERIAL
|
|
|
|
endif # BOARD_NSIM
|