|
ChibiOS/RT
2.5.1 |
|
Interrupt vectors for the STM32F1xx family. One of the following macros must be defined on the compiler command line or in a file named board.h:
STM32F10X_LD STM32F10X_LD_VL STM32F10X_MD STM32F10X_MD_VL STM32F10X_HD STM32F10X_XL STM32F10X_CL This is required in order to include a vectors table with the correct length for the specified STM32 model.
Functions | |
| void | _unhandled_exception (void) |
| Unhandled exceptions handler. | |
Variables | |
| vectors_t | _vectors |
| STM32 vectors table. | |
Typedefs | |
| typedef void(* | irq_vector_t )(void) |
| Type of an IRQ vector. | |
| void _unhandled_exception | ( | void | ) |
Unhandled exceptions handler.
Any undefined exception vector points to this function by default. This function simply stops the system into an infinite loop.
Definition at line 234 of file STM32F1xx/vectors.c.
References TRUE.
| vectors_t _vectors |
STM32 vectors table.
Definition at line 190 of file STM32F1xx/vectors.c.
| typedef void(* irq_vector_t)(void) |
Type of an IRQ vector.
Definition at line 65 of file STM32F1xx/vectors.c.