Browse Source

CONFIG_ARCH_INTERRUPTSTACK is an integer. If not used, it should the value 0 or be undefined. It is not a boolean

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5157 7fd9a85b-ad96-42d3-883c-3090e2eb8679
sbg
patacongo 13 years ago
parent
commit
3364b55f86
  1. 9
      nuttx/arch/Kconfig

9
nuttx/arch/Kconfig

@ -153,13 +153,14 @@ config ARCH_HAVE_INTERRUPTSTACK @@ -153,13 +153,14 @@ config ARCH_HAVE_INTERRUPTSTACK
bool
config ARCH_INTERRUPTSTACK
bool "Use interrupt stack"
int "Interrupt Stack Size"
depends on ARCH_HAVE_INTERRUPTSTACK
default y
default 0
---help---
This architecture supports an interrupt stack. If defined, this symbol
is the size of the interrupt stack in bytes. If not defined, the user
task stacks will be used during interrupt handling.
will be the size of the interrupt stack in bytes. If not defined (or
defined to be zero), the user task stacks will be used during interrupt
handling.
comment "Boot options"

Loading…
Cancel
Save