ChibiOS/RT
2.6.0
STM32F1xx Interrupt Vectors
Collaboration diagram for STM32F1xx Interrupt Vectors:

Detailed Description

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:

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.

Function Documentation

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.

Function Class:
Not an API, this function is for internal use only.

Definition at line 241 of file STM32F1xx/vectors.c.

References TRUE.


Variable Documentation

vectors_t _vectors

STM32 vectors table.

Definition at line 197 of file STM32F1xx/vectors.c.


Typedef Documentation

typedef void(* irq_vector_t)(void)

Type of an IRQ vector.

Definition at line 72 of file STM32F1xx/vectors.c.