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

uCOS

开发平台:

C/C++

  1. /*********************************************************************
  2. *                SEGGER MICROCONTROLLER SYSTEME GmbH                 *
  3. *        Solutions for real time microcontroller applications        *
  4. **********************************************************************
  5. *                                                                    *
  6. *           (C) 1996    SEGGER Microcontroller Systeme GmbH          *
  7. *                                                                    *
  8. *        Internet: www.segger.com    Support:  support@segger.com    *
  9. *                                                                    *
  10. **********************************************************************
  11. ----------------------------------------------------------------------
  12. File        : GUI__AddSpaceHex.C
  13. Purpose     : Internal function
  14. ---------------------------END-OF-HEADER------------------------------
  15. */
  16. #include "GUI.h"
  17. #include "GUI_Protected.h"
  18. /*********************************************************************
  19. *
  20. *        static code
  21. *
  22. **********************************************************************
  23. */
  24. void GUI__AddSpaceHex(U32 v, U8 Len, char**ps) {
  25.   char* s = *ps;
  26.   *s++ = ' ';
  27.   *ps = s;
  28.   GUI_AddHex(v, Len, ps);
  29. }