diff options
Diffstat (limited to 'workspace/ts100/src/Interrupt.c')
-rw-r--r-- | workspace/ts100/src/Interrupt.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/workspace/ts100/src/Interrupt.c b/workspace/ts100/src/Interrupt.c index 88fa5114..c99d7373 100644 --- a/workspace/ts100/src/Interrupt.c +++ b/workspace/ts100/src/Interrupt.c @@ -56,17 +56,6 @@ void SysTick_Handler(void) { void USB_LP_CAN1_RX0_IRQHandler(void) {
USB_Istr();
}
-/*
- void I2C1_EV_IRQHandler(void)
- {
- I2C1_EV_ISR();
- }
-
- void I2C1_ER_IRQHandler(void)
- {
- I2C1_ER_ISR();
- }
- */
void TIM2_IRQHandler(void) {
TIM2_ISR();
}
@@ -74,7 +63,7 @@ void TIM2_IRQHandler(void) { void TIM3_IRQHandler(void) {
TIM3_ISR();
}
-
+/*This loop is used for un assigned IRQ's so that the debugger can catch them*/
static void forever()
{
|