

void ONE_KHZ_ISR (void) interrupt 5 {
    TF2 = 0;                            // Reset Interrupt

   WDTCN = 0xA5;
   gui_mSecCount++;   
   gb_mSecTick = TRUE;
   timer_count++;						//this is count for our sort out timers tick
										//we use this to make sure we don't miss a timer event 
										//if we take too long processing something, this will always fire.



}



