nuttx/arch/renesas/Kconfig
Anjana fae7e63479 We have ported NuttX on Renesas RX65N Micro-controller. This port includes following interfaces
1. Serial (UART) driver (13 ports)
2. Ethernet driver

This port is provided on two boards
1. RSK RX65N-2MB
2. GR-Rose

The port is built on Cygwin environment.

As part of this port, we have created two documents
1. Readme.txt for each board
2. User manual to provide information about development environment setup
Both these documents are placed under
1. /boards/renesas/rx65n/rx65n-grrose
2. /boards/renesas/rx65n/rx65n-rsk2mb

We have run 'nxstyle' for coding guidelines and 'ostest' for testing NuttX features on test platform.
We have shared the log with no errors as confirmation of valid port.
2019-10-11 23:36:57 +08:00

85 lines
1.4 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_RENESAS
choice
prompt "Renesas chip selection"
default ARCH_CHIP_SH7032
config ARCH_CHIP_SH7032
bool "SH7032"
select ARCH_SH1
---help---
Hitachi/Renesas SH7032 (SH1)
config ARCH_CHIP_M30262F8
bool "M30262F8"
select ARCH_M16C
select MM_SMALL
---help---
Renesas M30262F8 (M16C)
config ARCH_CHIP_R5F565NEDDFC
bool "R5F565NEDDFC"
select ARCH_RX65N_RSK1MB
select ARCH_RX65N
---help---
Renesas RX65N on RSKRX65N-1MB
config ARCH_CHIP_R5F565NEHDFC
bool "R5F565NEHDFC"
select ARCH_RX65N_RSK2MB
---help---
Renesas RX65N on RSKRX65N-2MB
config ARCH_CHIP_R5F565NEHDFP
bool "R5F565NEHDFP"
select ARCH_RX65N_GRROSE
---help---
Renesas RX65N on GR-ROSE
endchoice
config ARCH_SH1
bool
default n
config ARCH_RX65N
bool
default n
config ARCH_RX65N_RSK1MB
bool
default n
config ARCH_RX65N_RSK2MB
bool
default n
config ARCH_RX65N_GRROSE
bool
default n
config ARCH_M16C
bool
default n
config ARCH_CHIP
string
default "sh1" if ARCH_SH1
default "m16c" if ARCH_M16C
default "rx65n" if ARCH_RX65N
default "rx65n" if ARCH_RX65N_RSK1MB
default "rx65n" if ARCH_RX65N_RSK2MB
default "rx65n" if ARCH_RX65N_GRROSE
source arch/renesas/src/common/Kconfig
source arch/renesas/src/m16c/Kconfig
source arch/renesas/src/sh1/Kconfig
source arch/renesas/src/rx65n/Kconfig
endif # ARCH_RENESAS