diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-28 03:58:51 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-28 04:02:11 +0100 |
commit | 608f796648e8de74f9aac3e60db3f7d87e69e9f4 (patch) | |
tree | 2966b76b8d12e23f99c8fbd13aeccbb4d4ef8ce8 /arch/arm/lpc17xx/mbed | |
parent | 18d53779c4fef3efca606aead2da3af40ec76332 (diff) |
Work on the MPU port. The exception VTOR redirection doesn't work as expected.
Diffstat (limited to 'arch/arm/lpc17xx/mbed')
-rw-r--r-- | arch/arm/lpc17xx/mbed/BoardInit.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/lpc17xx/mbed/BoardInit.c b/arch/arm/lpc17xx/mbed/BoardInit.c new file mode 100644 index 0000000..9c5aa89 --- /dev/null +++ b/arch/arm/lpc17xx/mbed/BoardInit.c @@ -0,0 +1,16 @@ +#include "lpc17xx_nvic.h" + +extern void * __cs3_interrupt_vector_mutable; + +void BoardEarlyInit() { + //NVIC_SetVTOR((uint32_t) __cs3_interrupt_vector_mutable); +} + +void BoardLateInit() { +} + +void BoardShutdown() { +} + +void BoardExceptionHandler(int code) { +} |