comparison src/cs/drivers/drv_app/kpd/kpd_handle_timer.c @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1 /**
2 * @file kpd_handle_timer.c
3 *
4 * Coding of the kpd_handle_timer function, which is called when a timer
5 * of the SWE expires.
6 *
7 * @author Laurent Sollier (l-sollier@ti.com)
8 * @version 0.1
9 */
10
11 /*
12 * History:
13 *
14 * Date Author Modification
15 * ----------------------------------------
16 * 10/12/2001 L Sollier Create
17 *
18 *
19 * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved
20 */
21
22
23 #include "rv/rv_general.h"
24
25
26 /**
27 * @name Functions implementation
28 *
29 */
30 /*@{*/
31
32 /**
33 * function: kpd_handle_timer
34 */
35 T_RV_RET kpd_handle_timer(UINT8 timer_num)
36 {
37 return RV_OK;
38 }
39
40 /*@}*/