LCDInfo.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*********************************************************************
  2. *                SEGGER MICROCONTROLLER SYSTEME GmbH                 *
  3. *        Solutions for real time microcontroller applications        *
  4. **********************************************************************
  5. *                                                                    *
  6. *        (c) 2002         SEGGER Microcontroller Systeme GmbH        *
  7. *                                                                    *
  8. *        Internet: www.segger.com    Support:  support@segger.com    *
  9. *                                                                    *
  10. **********************************************************************
  11. **** emWin/GSC Grafical user interface for embedded applications ****
  12. emWin is protected by international copyright laws. Knowledge of the
  13. source code may not be used to write a similar product. This file may
  14. only be used in accordance with a license and should not be re-
  15. distributed in any way. We appreciate your understanding and fairness.
  16. ----------------------------------------------------------------------
  17. File        : LCDInfo.C
  18. Purpose     : Routines returning info at runtime
  19. ---------------------------END-OF-HEADER------------------------------
  20. */
  21. #include <stddef.h>           /* needed for definition of NULL */
  22. #include "LCD.H"            /* interface definitions */
  23. #include "LCD_Private.H"      /* private modul definitions & config */
  24. I32  LCD_GetDevCap(int Index) {
  25.   switch (Index) {
  26.   case LCD_DEVCAP_NUMCOLORS:
  27.     return LCD_NUM_COLORS;
  28.   case LCD_DEVCAP_XSIZE:
  29.     return LCD_GetXSize();
  30.   case LCD_DEVCAP_YSIZE:
  31.     return LCD_GetYSize();
  32.   case LCD_DEVCAP_VXSIZE:
  33.     return LCD_VXSIZE;
  34.   case LCD_DEVCAP_VYSIZE:
  35.     return LCD_VYSIZE;
  36.   case LCD_DEVCAP_CONTROLLER:
  37.     return LCD_CONTROLLER;
  38.   case LCD_DEVCAP_BITSPERPIXEL:
  39.     return LCD_BITSPERPIXEL;
  40.   }
  41.   if ((Index >= LCD_DEVCAP_COLOR) && (Index < LCD_DEVCAP_COLOR+LCD_NUM_COLORS)) {
  42.     return LCD_Index2Color(Index-LCD_DEVCAP_COLOR);
  43.   }
  44.   return 0;
  45. }