summaryrefslogtreecommitdiff
path: root/arch/arm/lpc17xx/mbed/BoardInit.c
blob: bd31b35d8e5606280efb61bc0dc0e164271307aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "lpc17xx_nvic.h"

extern uintptr_t __cs3_interrupt_vector_mutable[];

void BoardEarlyInit() {
    NVIC_SetVTOR((uintptr_t) __cs3_interrupt_vector_mutable);
}

void BoardLateInit() {
}

void BoardShutdown() {
}

void BoardExceptionHandler(int code) {
}