Пример #1
0
void OS_ISR TIMER1_COMPA_vect(void)
{
   arch_contextstore_i(tick);

   /* we do not allowing or nested interrupts in this ISR, therefore we do not
    * have to enter the critical section to call os_tick() */
   os_tick();
   if (test_tick_clbck)
      test_tick_clbck();

   arch_contextrestore_i(tick);
}
Пример #2
0
void TIMER0_A0_vect()
{
	//PJOUT ^= BIT1;
	TA0CCR0 += 10000;
	os_tick();
}