Please explain the set timer function in this code. Also what it does and what is the number 60535 used with set timer function.
case 0: if (int_innercount == 0)
{
output_low(PIN_B5);
output_low(PIN_B6);
output_low(PIN_B1);
int_innercount = 1+int_innercount;
set_timer1(60535);
}
else if (int_innercount == 1)
{
output_high(PIN_B1);
int_innercount = 1+int_innercount;
set_timer1(65035);
}
else
{
output_low(PIN_B1);
int_count = 1+int_count;
int_innercount = 0;
set_timer1(65035);
}
break;