moved IRQ service handler for PSC3 interrupt to the BaS ISR dispatcher

This commit is contained in:
Markus Fröschle
2014-09-07 06:53:01 +00:00
parent 1791a1bfaa
commit d147ef2625
2 changed files with 24 additions and 58 deletions

View File

@@ -209,7 +209,7 @@ bool isr_execute_handler(int vector)
/*
* PIC interrupt handler for Firebee
*/
void pic_interrupt_handler(void)
int pic_interrupt_handler(void *arg1, void *arg2)
{
uint8_t rcv_byte;
@@ -229,6 +229,7 @@ void pic_interrupt_handler(void)
MCF_PSC3_PSCTB_8BIT = *rtc_data;
} while (index++ < 64);
}
return 1;
}
extern int32_t video_sbt;