|
Contiki-Inga 3.x
|
Driver for the cc2538 NVIC All interrupt-related functionality is implemented here. More...
#include "contiki.h"#include "dev/nvic.h"#include "dev/scb.h"#include "reg.h"#include <stdint.h>Go to the source code of this file.
Functions | |
| void | nvic_init () |
| Initialises the NVIC driver. | |
| void | nvic_interrupt_enable (uint32_t intr) |
| Enables interrupt intr. More... | |
| void | nvic_interrupt_disable (uint32_t intr) |
| Disables interrupt intr. More... | |
| void | nvic_interrupt_en_restore (uint32_t intr, uint8_t v) |
| Enables interrupt intr if v > 0. More... | |
| uint8_t | nvic_interrupt_en_save (uint32_t intr) |
| Checks the interrupt enabled status for intr. More... | |
| void | nvic_interrupt_pend (uint32_t intr) |
| Sets intr to pending. More... | |
| void | nvic_interrupt_unpend (uint32_t intr) |
| Sets intr to no longer pending. More... | |
Driver for the cc2538 NVIC All interrupt-related functionality is implemented here.
Definition in file nvic.c.
1.8.3.1