void alarmISR(void)
{
/* Toggle the alarm led */
PINS_DRV_TogglePins(PTD, (1 << 15));
// wait for conditions
}
From the above code , led is toggle and comes out for every 1 sec , so what i want is that there should be any conditions to wait for 5 sec and after that 6th sec it should toggle next like that.can u understand????