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

Detailed Description

Interrupt vectors for the LPC13xx family.

Functions

void _unhandled_exception (void)
 Unhandled exceptions handler.

Variables

vectors_t _vectors
 LPC13xx 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 185 of file LPC13xx/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,           VectorF4,           VectorF8,           VectorFC,
    Vector100,          Vector104,          Vector108,          Vector10C,
    Vector110,          Vector114,          Vector118,          Vector11C,
    Vector120,          Vector124
  }
}

LPC13xx vectors table.

Definition at line 151 of file LPC13xx/vectors.c.


Typedef Documentation

typedef void(* irq_vector_t)(void)

Type of an IRQ vector.

Definition at line 43 of file LPC13xx/vectors.c.