aboutsummaryrefslogtreecommitdiff
path: root/lib/vector.c
AgeCommit message (Collapse)Author
2010-03-23Small correction in isr table.Thomas Otto
2010-03-04Use direct #includes instead of libopenstm32.h.Uwe Hermann
2010-01-25Added all handlers to the vector table.Piotr Esden-Tempski
All handlers are weak symbols pointing to a null handler (doing nothing) or blocking handler (running an infinite loop). This means you can define a function with the name in the list and the linker will use your definition instead of the default one. This makes it easy to implement your own handlers without touching the library code.
2010-01-25Moved vector_table to the library.Piotr Esden-Tempski