1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* massive name changes

This commit is contained in:
Kaspar Schleiser 2010-10-28 11:22:57 +02:00
parent 74014d0408
commit 468431a6dd

View File

@ -51,12 +51,12 @@ int counter = 0;
void Timer0_IRQHandler (void)
{
extern unsigned int fk_context_switch_request;
extern unsigned int sched_context_switch_request;
counter++;
T0IR |= 0xff; // reset timer1 interrupt flag
sl_printf("#");
fk_context_switch_request = 1;
sched_context_switch_request = 1;
VICVectAddr = 0; // acknowledge interrupt (if using VIC IRQ)
}