comparison gsm-fw/bsp/rtc/rtc_process.c @ 161:98be4841eeb7

gsm-fw: RTC code hooked into the build
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 18 Nov 2013 00:08:43 +0000
parents 3c42e6e5fc04
children
comparison
equal deleted inserted replaced
160:dbfc9ff4e8d2 161:98be4841eeb7
1 /********************************************************************************/ 1 /******************************************************************************/
2 /* */ 2 /* */
3 /* File Name: rtc_process.c */ 3 /* File Name: rtc_process.c */
4 /* */ 4 /* */
5 /* Purpose: This file contains routine(s) that dispatch and process */ 5 /* Purpose: This file contains routine(s) that dispatch and process */
6 /* message(s) received from other entity */ 6 /* message(s) received from other entity */
7 /* */ 7 /* */
8 /* Note: None. */ 8 /* Note: None. */
9 /* */ 9 /* */
10 /* Revision History: */ 10 /* Revision History: */
11 /* 03/22/01 Laurent Sollier Create. */ 11 /* 03/22/01 Laurent Sollier Create. */
12 /* */ 12 /* */
13 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ 13 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */
14 /* */ 14 /* */
15 /********************************************************************************/ 15 /******************************************************************************/
16 16
17 #include "rvf/rvf_api.h" 17 #include "../../riviera/rvf/rvf_api.h"
18 #include "rv/rv_general.h" 18 #include "../../riviera/rv/rv_general.h"
19 #include "rvm/rvm_use_id_list.h" 19 #include "../../riviera/rvm/rvm_use_id_list.h"
20 #include "rtc/rtc_messages_i.h" 20 #include "rtc_messages_i.h"
21 #include "rtc/rtc_i.h" 21 #include "rtc_i.h"
22 22
23 23
24 void rtc_process(T_RV_HDR * msg_ptr) 24 void rtc_process(T_RV_HDR * msg_ptr)
25 { 25 {
26 switch (msg_ptr->msg_id) 26 switch (msg_ptr->msg_id)
39 RV_TRACE_LEVEL_ERROR, 39 RV_TRACE_LEVEL_ERROR,
40 RTC_USE_ID ); 40 RTC_USE_ID );
41 break; 41 break;
42 } 42 }
43 } 43 }
44
45
46
47
48
49