aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/nvic.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/nvic.c b/src/lib/nvic.c
index 61e1d34..9b8c84f 100644
--- a/src/lib/nvic.c
+++ b/src/lib/nvic.c
@@ -36,6 +36,24 @@ void nvic_disable_interrupts(void) {
REG_CLEAR_BIT(SYSTICK_CSR, 0);
}
+
void nvic_set_vector_table(uint32_t *addr, uint32_t offset) {
// SCB->VTOR = NVIC_VectTab | (Offset & (u32)0x1FFFFF80);
}
+
+
+/**
+ * @brief turn on interrupt number n
+ * @param[in] n interrupt number
+ */
+void nvic_enable_interrupt(uint32 n) {
+ if (n >= NVIC_NR_INTERRUPTS) {
+ return;
+ }
+
+ if (n < 32) {
+ REG_SET_BIT(NVIC_ISER0, n);
+ } else {
+ REG_SET_BIT(NVIC_ISER1, n - 32);
+ }
+}