00001 /* Copyright (c) 2009 Nordic Semiconductor. All Rights Reserved. 00002 * 00003 * The information contained herein is confidential property of Nordic 00004 * Semiconductor ASA.Terms and conditions of usage are described in detail 00005 * in NORDIC SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. 00006 * 00007 * Licensees are granted free, non-transferable use of the information. NO 00008 * WARRENTY of ANY KIND is provided. This heading must NOT be removed from 00009 * the file. 00010 * 00011 * $LastChangedRevision: 230 $ 00012 */ 00013 00018 #include "gzll.h" 00019 00020 //lint -esym(552, timer_cnt) "symbol not accessed" 00021 volatile uint16_t xdata timer_cnt = 0; // General purpose variable to be used for utilizing timer for other purposes 00022 00023 T2_ISR() 00024 { 00025 TF2 = 0; 00026 gzll_timer_isr_function(); 00027 timer_cnt++; 00028 }