summaryrefslogtreecommitdiff
path: root/nuttx/arch/z16
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/z16')
-rw-r--r--nuttx/arch/z16/Kconfig11
-rw-r--r--nuttx/arch/z16/src/z16f/Kconfig12
2 files changed, 21 insertions, 2 deletions
diff --git a/nuttx/arch/z16/Kconfig b/nuttx/arch/z16/Kconfig
index a806e6ed1..52ea95c29 100644
--- a/nuttx/arch/z16/Kconfig
+++ b/nuttx/arch/z16/Kconfig
@@ -12,21 +12,29 @@ choice
config ARCH_CHIP_Z16F2810
bool "Z16F2810"
+ select ARCH_CHIP_Z16F
+ select ARCH_IRQPRIO
---help---
ZiLOG Z16F2810
config ARCH_CHIP_Z16F2811
bool "Z16F2811"
+ select ARCH_CHIP_Z16F
+ select ARCH_IRQPRIO
---help---
ZiLOG Z16F2811
config ARCH_CHIP_Z16F3211
- bool "Z16F321"
+ bool "Z16F3211"
+ select ARCH_CHIP_Z16F
+ select ARCH_IRQPRIO
---help---
ZiLOG Z16F321
config ARCH_CHIP_Z16F6411
bool "Z16F6411"
+ select ARCH_CHIP_Z16F
+ select ARCH_IRQPRIO
---help---
ZiLOG Z16F6411
@@ -34,7 +42,6 @@ endchoice
config ARCH_CHIP_Z16F
bool
- default y if ARCH_CHIP_Z16F2810 || ARCH_CHIP_Z16F2811 || ARCH_CHIP_Z16F3211 || ARCH_CHIP_Z16F6411
config ARCH_CHIP
string
diff --git a/nuttx/arch/z16/src/z16f/Kconfig b/nuttx/arch/z16/src/z16f/Kconfig
index 826720ee7..5efc061a5 100644
--- a/nuttx/arch/z16/src/z16f/Kconfig
+++ b/nuttx/arch/z16/src/z16f/Kconfig
@@ -6,4 +6,16 @@
if ARCH_CHIP_Z16F
comment "Z16F Configuration Options"
+# UART0/1 always enabled
+
+config Z16F_UART0
+ bool
+ default y
+ select ARCH_HAVE_UART0
+
+config Z16F_UART1
+ bool
+ default y
+ select ARCH_HAVE_UART1
+
endif