arm: enable SW_ISR_TABLE/DYNAMIC by default
Enable by default the easy usage of connecting interrupts. If someone wants to connect interrupts by hardcoding the ISR in the vector table, they now have to disable these two options. Change-Id: I5fd14784596e7c52d3c43fddc4fcb51bc8850db3 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
parent
3f6c0e51dd
commit
e1308ebd37
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ config CPU_CORTEXM3
|
|||
config SW_ISR_TABLE
|
||||
bool
|
||||
prompt "Enable software interrupt handler table"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Enable an interrupt handler table implemented in software. This
|
||||
table, unlike ISRs connected directly in the vector table, allow
|
||||
|
@ -59,7 +59,7 @@ config SW_ISR_TABLE_DYNAMIC
|
|||
bool
|
||||
prompt "Allow installing interrupt handlers at runtime"
|
||||
depends on SW_ISR_TABLE
|
||||
default n
|
||||
default y
|
||||
help
|
||||
This option enables irq_connect(). It moves the ISR table to
|
||||
SRAM so that it is writable. This has the side-effect of removing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue