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

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        : LCDInfo1.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. #if LCD_NUM_DISPLAYS > 1
  25.   int LCD_GetXSize_1(void)        { return LCD_XSIZE_1; }
  26.   int LCD_GetYSize_1(void)        { return LCD_YSIZE_1; }
  27.   int LCD_GetVXSize_1(void)       { return LCD_VXSIZE_1; }
  28.   int LCD_GetVYSize_1(void)       { return LCD_VYSIZE_1; }
  29.   int LCD_GetBitsPerPixel_1(void) { return LCD_BITSPERPIXEL_1; }
  30.   U32 LCD_GetNumColors_1(void)    { return LCD_NUM_COLORS_1; }
  31.   int LCD_GetYMag_1(void)         { return LCD_YMAG_1; }
  32.   int LCD_GetXMag_1(void)         { return LCD_XMAG_1; }
  33.   int LCD_GetFixedPalette_1(void) {
  34.     #if LCD_SWAP_RB_1 == 0
  35.       return LCD_FIXEDPALETTE_1;
  36.     #else
  37.       return (-1)*LCD_FIXEDPALETTE_1;
  38.     #endif
  39.   }
  40. #else
  41.   int LCD_GetXSize_1(void)        { return 0; }
  42.   int LCD_GetYSize_1(void)        { return 0; }
  43.   int LCD_GetVXSize_1(void)       { return 0; }
  44.   int LCD_GetVYSize_1(void)       { return 0; }
  45.   int LCD_GetBitsPerPixel_1(void) { return 0; }
  46.   U32 LCD_GetNumColors_1(void)    { return 0; }
  47.   int LCD_GetYMag_1(void)         { return 0; }
  48.   int LCD_GetXMag_1(void)         { return 0; }
  49.   int LCD_GetFixedPalette_1(void) { return 0; }
  50. #endif