


//-----------------------------------------------------------------------------
// TIMER2_ISR
//-----------------------------------------------------------------------------
//
// Return Value : None
// Parameters   : None
//
// This is the ISR for the TIMER2.  
//
//-----------------------------------------------------------------------------
void ONE_KHZ_ISR (void) interrupt 5 {
    TF2 = 0;                            // Reset Interrupt


    WDTCN = 0xA5;  //this is not ideal but needed here for other reasons.
    gui_mSecCount++;
    gb_mSecTick = TRUE;
	guc_LCD_delay_mSec--;
}


