fyf_panel.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:2k
源码类别:

数据库系统

开发平台:

C/C++

  1. /******************************************************************************/
  2. /*    Copyright (c) 2008 Embedded Internet Solutions, Inc                     */
  3. /*    All rights reserved. You are not allowed to copy or distribute          */
  4. /*    the code without permission.                                            */
  5. /*    This is the demo implenment of the Porting APIs needed by            */
  6. /*    MiddleWare.                                                             */
  7. /*    Maybe you should modify it accorrding to Platform.                      */
  8. /*                                                                            */
  9. /*    $author szhy 2008/10/20                                              */
  10. /******************************************************************************/
  11. #ifndef __FYF_PANEL_H_
  12. #define __FYF_PANEL_H_
  13. typedef struct
  14. BU32 (*FYF_CPI_panel_read_key)(void);
  15. BU32 (*FYF_CPI_panel_show_led)(BU08 StartLedIndex,PU08 DisData,BU08 Length);        
  16. }FYF_PANEL_PORTING; 
  17. /******************************************************************************/
  18. /*Description: register panel                                                 */
  19. /*Input      : porting       */
  20. /*Output     : no                                                             */
  21. /*Return     : no                                                             */
  22. /******************************************************************************/
  23. void FYF_API_panel_register(FYF_PANEL_PORTING *porting);
  24. /******************************************************************************/
  25. /*Description: read key                                                   */
  26. /*Input      : no       */
  27. /*Output     : no                                                             */
  28. /*Return     : no                                                             */
  29. /******************************************************************************/
  30. BU32 FYF_API_panel_read_key(void);
  31. /******************************************************************************/
  32. /*Description: show led                                                   */
  33. /*Input      : no       */
  34. /*Output     : no                                                             */
  35. /*Return     : no                                                             */
  36. /******************************************************************************/
  37. BU32 FYF_API_panel_show_led(BU08 StartLedIndex,PU08 DisData,BU08 Length);
  38. #endif