diff src/condat3/com/include/rtc.h @ 201:f3f58412df01

src/condat3/com/include: pwr.h and rtc.h replaced with TCS211 versions as part of the TCS2/TCS3 hybrid effort
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Oct 2016 05:49:28 +0000
parents c8bd5a927942
children
line wrap: on
line diff
--- a/src/condat3/com/include/rtc.h	Fri Oct 14 03:51:07 2016 +0000
+++ b/src/condat3/com/include/rtc.h	Fri Oct 14 05:49:28 2016 +0000
@@ -17,11 +17,6 @@
 |  Purpose :  Type definitions and function prototypes for the real time clock driver
 |             SPR 1725, re-wrote file for new RTC driver implementation.
 +----------------------------------------------------------------------------- 
-
-    Aug 02, 2006 REF:OMAPS00083404 Prabakar R (a0393213)
-    Description: Removal of clone code: entity GDI
-    Solution: Two similar functions(rtc_get_time_date() and rtc_get_alarm()) are made into one function rtc_get_time_date().
-    As a result, interface for rtc_get_time_date() has been changed. The change is only for locosto.
 */ 
 
 #ifndef DEF_RTC__H
@@ -58,18 +53,6 @@
 	BOOL	PM_flag;
 } T_RTC_TIME;
 
-/*
-    Aug 02, 2006 REF:OMAPS00083404 Prabakar R (a0393213)
-    Description: Removal of clone code: entity GDI
-    Solution: Two similar functions(rtc_get_time_date() and rtc_get_alarm()) are made into one function rtc_get_time_date().
-                 This type is added to differenciate the functionality in the function.
-*/
-typedef enum
-{
-	RTC_TIME_TYPE_CURRENT,
-	RTC_TIME_TYPE_ALARM
-} T_RTC_TIME_TYPE;
-
 typedef void (*RtcCallback) (void*);  /* RTC event handler        */
 
 /*
@@ -81,23 +64,11 @@
 
 UBYTE rtc_set_time_date(T_RTC_DATE* date, T_RTC_TIME* time); // wrapper for  RTC_setTimeDate();
 
-/*
-    Aug 02, 2006 REF:OMAPS00083404 Prabakar R (a0393213)
-    Description: Removal of clone code: entity GDI
-    Solution: Two similar functions(rtc_get_time_date() and rtc_get_alarm()) are made into one function rtc_get_time_date()
-    As a result interface of rtc_get_time_date() has been changed. A new parameter 'type' has been added.
-                 
-*/
-UBYTE rtc_get_time_date(T_RTC_DATE* date, T_RTC_TIME* time , T_RTC_TIME_TYPE type ); // wrapper for RTC_getTimeDate();
+UBYTE rtc_get_time_date(T_RTC_DATE* date, T_RTC_TIME* time); // wrapper for RTC_getTimeDate();
 
 UBYTE rtc_set_alarm(T_RTC_DATE* date , T_RTC_TIME* time, RtcCallback callback_func );//wrapper for RTC_setAlarm();
 
-/*
-    Aug 02, 2006 REF:OMAPS00083404 Prabakar R (a0393213)
-    Description: Removal of clone code: entity GDI
-    Solution: Two similar functions(rtc_get_time_date() and rtc_get_alarm()) are made into one function rtc_get_time_date()
-    So rtc_get_alarm() is removed. To get the time which is set for alarm, use rtc_get_time_date() with RTC_TIME_TYPE_ALARM as third argument                 
-*/
+UBYTE rtc_get_alarm(T_RTC_DATE* date, T_RTC_TIME* time);//wrapper for RTC_getAlarm();
 
 UBYTE rtc_unset_alarm();//wrapper for RTC_UnsetAlarm();