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

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : F16_1HK.C
  16. Purpose     : ASCII, West European, Hiragana & Katakana
  17. Height      : 16
  18. ---------------------------END-OF-HEADER------------------------------
  19. */
  20. #include "GUI.H"
  21. #ifndef GUI_FLASH
  22.   #define GUI_FLASH
  23. #endif
  24. /* The following line needs to be included in any file selecting the
  25.    font. A good place would be GUIConf.H
  26. */
  27. extern GUI_FLASH const GUI_FONT GUI_Font16_HK;
  28. extern GUI_FLASH const GUI_FONT GUI_Font16_1HK_2_2;
  29. extern GUI_FLASH const GUI_FONT_PROP GUI_Font16_1_FontProp1;
  30. extern GUI_FLASH const GUI_CHARINFO GUI_Font16_HK_CharInfo[169];
  31. GUI_FLASH const GUI_FONT_PROP GUI_Font16_1HK_Prop2 = {
  32.    0x30A1                         /* first character               */
  33.   ,0x30F6                         /* last character                */
  34.   ,&GUI_Font16_HK_CharInfo[83] /* address of first character    */
  35.   ,(void GUI_FLASH *)&GUI_Font16_1_FontProp1                          /* pointer to next GUI_FONT_PROP */
  36. };
  37. GUI_FLASH const GUI_FONT_PROP GUI_Font16_1HK_Prop1 = {
  38.    0x3041                         /* first character               */
  39.   ,0x3093                         /* last character                */
  40.   ,&GUI_Font16_HK_CharInfo[0] /* address of first character    */
  41.   ,(void GUI_FLASH *)&GUI_Font16_1HK_Prop2                         /* pointer to next GUI_FONT_PROP */
  42. };
  43. GUI_FLASH const GUI_FONT GUI_Font16_1HK = {
  44.    GUI_FONTTYPE_PROP /* type of font    */
  45.   ,16                /* height of font  */
  46.   ,16                /* space of font y */
  47.   ,1                /* magnification x */
  48.   ,1                /* magnification y */
  49.   ,(void GUI_FLASH *)&GUI_Font16_1HK_Prop1
  50. };
  51. GUI_FLASH const GUI_FONT GUI_Font16_1HK_2_2 = {
  52.    GUI_FONTTYPE_PROP /* type of font    */
  53.   ,16                /* height of font  */
  54.   ,16                /* space of font y */
  55.   ,2                /* magnification x */
  56.   ,2                /* magnification y */
  57.   ,(void GUI_FLASH *)&GUI_Font16_1HK_Prop1
  58. };