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

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        : GUI_DispHex.C
  16. Purpose     : Routines to display hex
  17. ----------------------------------------------------------------------
  18. */
  19. #include "GUI_Protected.H"
  20. #include "GUIDebug.h"
  21. /*********************************************************************
  22. *
  23. *       Public routines
  24. *
  25. **********************************************************************
  26. */
  27. /*********************************************************************
  28. *
  29. *      Hexadecimal GUI_Disp...  routines
  30. */
  31. void GUI_DispHex(U32 v, U8 Len) {
  32.   char ac[9];
  33. char* s = ac;
  34.   GUI_AddHex(v, Len, &s);
  35.   GUI_DispString(ac);
  36. }
  37. void GUI_DispHexAt(U32 v, I16P x, I16P y, U8 Len) {
  38.   char ac[9];
  39. char* s = ac;
  40.   GUI_AddHex(v, Len, &s);
  41.   GUI_DispStringAt(ac,x,y);
  42. }