libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
lm4f/nvic.h
Go to the documentation of this file.
1/** @defgroup nvic_defines Nested Vectored Interrupt Controller
2
3@brief <b>Defined Constants and Types for the LM4F Nested Vectored Interrupt
4Controller</b>
5
6@ingroup LM4Fxx_defines
7
8@version 1.0.0
9
10@author @htmlonly &copy; @endhtmlonly 2012
11Alexandru Gagniuc <mr.nuke.me@gmail.com>
12
13@date 10 March 2013
14
15LGPL License Terms @ref lgpl_license
16*/
17
18/*
19 * This file is part of the libopencm3 project.
20 *
21 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
22 *
23 * This library is free software: you can redistribute it and/or modify
24 * it under the terms of the GNU Lesser General Public License as published by
25 * the Free Software Foundation, either version 3 of the License, or
26 * (at your option) any later version.
27 *
28 * This library is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU Lesser General Public License for more details.
32 *
33 * You should have received a copy of the GNU Lesser General Public License
34 * along with this library. If not, see <http://www.gnu.org/licenses/>.
35 */
36
37#ifndef LIBOPENCM3_LM4F_NVIC_H
38#define LIBOPENCM3_LM4F_NVIC_H
39
40/**@{*/
41
42#include <libopencm3/cm3/nvic.h>
43
44/** @ingroup nvic_defines
45 * The LM3S interrupt table applies to the LM4F as well. Some interrupt
46 * vectors marked as reserved in LM3S are used in LM4F, and some vectors in
47 * LM3S are marked reserved for LM4F. However, the common vectors are
48 * identical, and we can safely use the same interrupt table. Reserved vectors
49 * will never be triggered, so having them is perfectly safe.
50 */
52
53/**@}*/
54
55#endif /* LIBOPENCM3_LM4F_NVIC_H */