L4Dr.h
上传用户:lqx1163
上传日期:2014-08-13
资源大小:9183k
文件大小:6k
源码类别:

MTK

开发平台:

C/C++

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. 
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*******************************************************************************
  36.  * Filename:
  37.  * ---------
  38.  * KeyMap.h
  39.  *
  40.  * Project:
  41.  * --------
  42.  *   MAUI
  43.  *
  44.  * Description:
  45.  * ------------
  46.  *   This file is intends for This Module defines the L4 interfaces.
  47.  *
  48.  * Author:
  49.  * -------
  50.  * -------
  51.  *
  52.  *==============================================================================
  53.  *             HISTORY
  54.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  55.  *------------------------------------------------------------------------------
  56.  * removed!
  57.  *
  58.  * removed!
  59.  * removed!
  60.  * removed!
  61.  *
  62.  * removed!
  63.  * removed!
  64.  * removed!
  65.  *
  66.  * removed!
  67.  * removed!
  68.  * removed!
  69.  * removed!
  70.  *
  71.  * removed!
  72.  * removed!
  73.  * removed!
  74.  * removed!
  75.  *
  76.  *------------------------------------------------------------------------------
  77.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  78.  *==============================================================================
  79.  *******************************************************************************/
  80. #ifndef MMI_ON_WIN32
  81. #ifndef PIXTEL_L4_DR_H
  82. #define PIXTEL_L4_DR_H
  83. /***************************************************************************** 
  84. * Include
  85. *****************************************************************************/
  86. /* added by JL */
  87. #include <stdarg.h>
  88. #include "kal_release.h"        /* Basic data type */
  89. #include "stack_common.h"
  90. #include "stack_msgs.h"
  91. #include "app_ltlcom.h" /* Task message communiction */
  92. #include "stacklib.h"   /* Basic type for dll, evshed, stacktimer */
  93. #include "app_buff_alloc.h"
  94. #include "stack_timer.h"
  95. #include "event_shed.h"
  96. #include "syscomp_config.h"
  97. #include "task_config.h"
  98. #include "l4a.h"
  99. #include "kal_trace.h"
  100. #include "fat_fs.h"
  101. #include "stack_config.h"
  102. #include "custom_config.h"
  103. #include "l3_inc_enums.h"
  104. #include "phb_defs.h"
  105. #include "mmi_msg_struct.h"
  106. /* end added by JL */
  107. #include "pixteldatatypes.h"
  108. /* L4KeyHandle is redirected to mmi_frm_key_handle and defined in KeyBrd.h */
  109. #include "KeyBrd.h"
  110. /***************************************************************************** 
  111. * Define
  112. *****************************************************************************/
  113. /***************************************************************************** 
  114. * Typedef 
  115. *****************************************************************************/
  116. /***************************************************************************** 
  117. * Extern Global Variable
  118. *****************************************************************************/
  119. /***************************************************************************** 
  120. * Extern Global Function
  121. *****************************************************************************/
  122. extern void L4SetClock(rtc_format_struct datetime, oslTaskFuncPtr FuncRspPtr);
  123. extern void L4SetClockRSP(void *buf);
  124. extern void L4GetClockTime(oslTaskFuncPtr FuncRspPtr);
  125. extern void L4GetClockTimeRSP(void *buf);
  126. extern void L4StartTimer(
  127.                 unsigned short nTimerId,
  128.                 oslTimerFuncPtr TimerExpiry,
  129.                 void *funcArg,
  130.                 unsigned long nTimeDuration,
  131.                 unsigned char alignment);
  132. extern void L4StopTimer(unsigned short nTimerId);
  133. extern void L4StopTimerRSP(void *paraBuff);
  134. extern void L4StartTimerRSP(void *paraBuff);
  135. extern void L4InitSerialPort(void);
  136. extern long L4UARTWrite(kal_uint8 *arrayRx, kal_uint16 size);
  137. extern long L4UARTRead(kal_uint8 *arrayRx, kal_uint16 size);
  138. /* extern void SetL4EventHandler(L4FuncPtr funcPtr, U16 eventID); */
  139. extern void L4NvramWriteRsp(void *buf);
  140. extern void L4ReadNvram(kal_uint8 gstructtype, kal_uint8 index);
  141. extern void L4WriteNvram(kal_uint8 gstructtype, void *buf, kal_uint8 index);
  142. extern void L4NvramReadRsp(void *buf);
  143. extern void L4InitTimer(void);
  144. extern void L4StopBaseTimer(void *base_timer_ptr);
  145. extern void L4StartBaseTimer(void *base_timer_ptr, unsigned int time_out);
  146. extern MMI_BOOL mmi_frm_is_align_base_timer(void *base_timer_ptr);
  147. #endif /* PIXTEL_L4_DR_H */ 
  148. #endif /* MMI_ON_WIN32 */