ChibiOS/RT
2.5.1
STM32L1xx Interrupt Vectors
Collaboration diagram for STM32L1xx Interrupt Vectors:

Detailed Description

Interrupt vectors for the STM32L1xx family.

Functions

void _unhandled_exception (void)
 Unhandled exceptions handler.

Variables

vectors_t _vectors
 STM32L1xx 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 162 of file STM32L1xx/vectors.c.

References TRUE.


Variable Documentation

vectors_t _vectors
Initial value:
 {
  &__main_stack_end__,ResetHandler,       NMIVector,          HardFaultVector,
  MemManageVector,    BusFaultVector,     UsageFaultVector,   Vector1C,
  Vector20,           Vector24,           Vector28,           SVCallVector,
  DebugMonitorVector, Vector34,           PendSVVector,       SysTickVector,
  {
    Vector40,           Vector44,           Vector48,           Vector4C,
    Vector50,           Vector54,           Vector58,           Vector5C,
    Vector60,           Vector64,           Vector68,           Vector6C,
    Vector70,           Vector74,           Vector78,           Vector7C,
    Vector80,           Vector84,           Vector88,           Vector8C,
    Vector90,           Vector94,           Vector98,           Vector9C,
    VectorA0,           VectorA4,           VectorA8,           VectorAC,
    VectorB0,           VectorB4,           VectorB8,           VectorBC,
    VectorC0,           VectorC4,           VectorC8,           VectorCC,
    VectorD0,           VectorD4,           VectorD8,           VectorDC,
    VectorE0,           VectorE4,           VectorE8,           VectorEC,
    VectorF0
  }
}

STM32L1xx vectors table.

Definition at line 131 of file STM32L1xx/vectors.c.


Typedef Documentation

typedef void(* irq_vector_t)(void)

Type of an IRQ vector.

Definition at line 36 of file STM32L1xx/vectors.c.