106 lines
3.6 KiB
C
106 lines
3.6 KiB
C
|
/*
|
||
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio.
|
||
|
|
||
|
This file is part of ChibiOS.
|
||
|
|
||
|
ChibiOS is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
ChibiOS is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file ARMCMx/compilers/GCC/vectors.h
|
||
|
* @brief Interrupt vectors for Cortex-Mx devices.
|
||
|
*
|
||
|
* @defgroup ARMCMx_VECTORS Cortex-Mx Interrupt Vectors
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifndef _VECTORS_H_
|
||
|
#define _VECTORS_H_
|
||
|
|
||
|
#include "cmparams.h"
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Module constants. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Module pre-compile time settings. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Derived constants and error checks. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Module data structures and types. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
#if !defined(_FROM_ASM_)
|
||
|
/**
|
||
|
* @brief Type of an IRQ vector.
|
||
|
*/
|
||
|
typedef void (*irq_vector_t)(void);
|
||
|
|
||
|
/**
|
||
|
* @brief Type of a structure representing the whole vectors table.
|
||
|
*/
|
||
|
typedef struct {
|
||
|
uint32_t *init_stack;
|
||
|
irq_vector_t reset_handler;
|
||
|
irq_vector_t nmi_handler;
|
||
|
irq_vector_t hardfault_handler;
|
||
|
irq_vector_t memmanage_handler;
|
||
|
irq_vector_t busfault_handler;
|
||
|
irq_vector_t usagefault_handler;
|
||
|
irq_vector_t vector1c;
|
||
|
irq_vector_t vector20;
|
||
|
irq_vector_t vector24;
|
||
|
irq_vector_t vector28;
|
||
|
irq_vector_t svc_handler;
|
||
|
irq_vector_t debugmonitor_handler;
|
||
|
irq_vector_t vector34;
|
||
|
irq_vector_t pendsv_handler;
|
||
|
irq_vector_t systick_handler;
|
||
|
irq_vector_t vectors[CORTEX_NUM_VECTORS];
|
||
|
} vectors_t;
|
||
|
#endif /* !defined(_FROM_ASM_) */
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Module macros. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* External declarations. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
#if !defined(_FROM_ASM_)
|
||
|
extern vectors_t _vectors;
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/*===========================================================================*/
|
||
|
/* Module inline functions. */
|
||
|
/*===========================================================================*/
|
||
|
|
||
|
#endif /* _VECTORS_H_ */
|
||
|
|
||
|
/** @} */
|