FreeCalypso > hg > freecalypso-sw
diff gsm-fw/bsp/rtc/rtc_task.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 |
line wrap: on
line diff
--- a/gsm-fw/bsp/rtc/rtc_task.c Sun Nov 17 22:52:52 2013 +0000 +++ b/gsm-fw/bsp/rtc/rtc_task.c Mon Nov 18 00:08:43 2013 +0000 @@ -19,11 +19,11 @@ * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved */ -#include "rtc/rtc_env.h" +#include "rtc_env.h" -#include "rv/rv_general.h" -#include "rvf/rvf_api.h" -#include "rvm/rvm_use_id_list.h" +#include "../../riviera/rv/rv_general.h" +#include "../../riviera/rvf/rvf_api.h" +#include "../../riviera/rvm/rvm_use_id_list.h" #define RTC_MAILBOX_USED RVF_TASK_MBOX_0 @@ -44,7 +44,7 @@ T_RV_RET rtc_core(void) { BOOLEAN error_occured = FALSE; - T_RV_HDR * msg_ptr; + T_RV_HDR * msg_ptr; UINT16 received_event; rvf_send_trace("RTC: Initialization", 19, NULL_PARAM, RV_TRACE_LEVEL_DEBUG_HIGH, RTC_USE_ID ); @@ -53,7 +53,7 @@ while (error_occured == FALSE) { /* Wait for the necessary events. */ - received_event = rvf_wait ( 0xffff,0); + received_event = rvf_wait ( 0xffff,0); if (received_event & RVF_TASK_MBOX_0_EVT_MASK) { @@ -65,4 +65,4 @@ } return RV_OK; -} \ No newline at end of file +}