summaryrefslogtreecommitdiff
path: root/nuttx/arch/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-17 14:07:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-17 14:07:48 +0000
commitaed6cd88cd81d2bfb1e7f032fa97f7431aaed33a (patch)
treec26d054422d6ba7660d98ba66cf41ebb34709e03 /nuttx/arch/Kconfig
parent2f0c31ee0f914e7a488a5ed3725e699d8659a065 (diff)
downloadnuttx-aed6cd88cd81d2bfb1e7f032fa97f7431aaed33a.tar.gz
nuttx-aed6cd88cd81d2bfb1e7f032fa97f7431aaed33a.tar.bz2
nuttx-aed6cd88cd81d2bfb1e7f032fa97f7431aaed33a.zip
Auto-configuration updates from Richard Cochran
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5032 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/Kconfig')
-rw-r--r--nuttx/arch/Kconfig37
1 files changed, 36 insertions, 1 deletions
diff --git a/nuttx/arch/Kconfig b/nuttx/arch/Kconfig
index 6e0e0fb9d..fea56b739 100644
--- a/nuttx/arch/Kconfig
+++ b/nuttx/arch/Kconfig
@@ -19,11 +19,13 @@ config ARCH_ARM
config ARCH_AVR
bool "AVR"
+ select ARCH_NOINTC
---help---
Atmel 8-bit bit AVR and 32-bit AVR32 architectures
config ARCH_HC
bool "Freescale HC"
+ select ARCH_NOINTC
---help---
Freescale HC architectures (M9S12)
@@ -39,7 +41,8 @@ config ARCH_RGMP
http://rgmp.sourceforge.net/wiki/index.php/Main_Page.
config ARCH_SH
- bool "Rensas"
+ bool "Renesas"
+ select ARCH_NOINTC
---help---
Renesas architectures (SH and M16C).
@@ -90,3 +93,35 @@ source arch/sim/Kconfig
source arch/x86/Kconfig
source arch/z16/Kconfig
source arch/z80/Kconfig
+
+comment "Architecture Options"
+
+config ARCH_NOINTC
+ bool
+ default n
+
+config ARCH_STACKDUMP
+ bool "Dump stack on assertions"
+ default n
+ ---help---
+ Enable to do stack dumps after assertions
+
+comment "Board Settings"
+
+config BOARD_LOOPSPERMSEC
+ int "Loops per millisecond"
+ help
+ Must be calibrated for correct operation of delay loops.
+ You simply use a stop watch to measure the 100 second delay
+ then adjust CONFIG_BOARD_LOOPSPERMSEC until it is actually
+ is 100 seconds.
+
+config DRAM_START
+ hex "DRAM start address"
+ help
+ The physical start address of installed RAM.
+
+config DRAM_SIZE
+ int "DRAM size"
+ help
+ The size in bytes of the installed RAM.