SEGGER_RTT_Syscalls_GCC.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*********************************************************************
  2. * SEGGER Microcontroller GmbH & Co. KG *
  3. * The Embedded Experts *
  4. **********************************************************************
  5. * *
  6. * (c) 2014 - 2017 SEGGER Microcontroller GmbH & Co. KG *
  7. * *
  8. * www.segger.com Support: support@segger.com *
  9. * *
  10. **********************************************************************
  11. * *
  12. * SEGGER RTT * Real Time Transfer for embedded targets *
  13. * *
  14. **********************************************************************
  15. * *
  16. * All rights reserved. *
  17. * *
  18. * SEGGER strongly recommends to not make any changes *
  19. * to or modify the source code of this software in order to stay *
  20. * compatible with the RTT protocol and J-Link. *
  21. * *
  22. * Redistribution and use in source and binary forms, with or *
  23. * without modification, are permitted provided that the following *
  24. * conditions are met: *
  25. * *
  26. * o Redistributions of source code must retain the above copyright *
  27. * notice, this list of conditions and the following disclaimer. *
  28. * *
  29. * o Redistributions in binary form must reproduce the above *
  30. * copyright notice, this list of conditions and the following *
  31. * disclaimer in the documentation and/or other materials provided *
  32. * with the distribution. *
  33. * *
  34. * o Neither the name of SEGGER Microcontroller GmbH & Co. KG *
  35. * nor the names of its contributors may be used to endorse or *
  36. * promote products derived from this software without specific *
  37. * prior written permission. *
  38. * *
  39. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND *
  40. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, *
  41. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF *
  42. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *
  43. * DISCLAIMED. IN NO EVENT SHALL SEGGER Microcontroller BE LIABLE FOR *
  44. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR *
  45. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT *
  46. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; *
  47. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
  48. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
  49. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE *
  50. * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH *
  51. * DAMAGE. *
  52. * *
  53. **********************************************************************
  54. * *
  55. * RTT version: 6.18a *
  56. * *
  57. **********************************************************************
  58. ---------------------------END-OF-HEADER------------------------------
  59. File : SEGGER_RTT_Syscalls_GCC.c
  60. Purpose : Low-level functions for using printf() via RTT in GCC.
  61. To use RTT for printf output, include this file in your
  62. application.
  63. Revision: $Rev: 4351 $
  64. ----------------------------------------------------------------------
  65. */
  66. #include "sdk_config.h"
  67. #if !defined(RETARGET_ENABLED) || RETARGET_ENABLED == 0
  68. #if defined(NRF_LOG_USES_RTT) && NRF_LOG_USES_RTT == 1
  69. #if (defined __GNUC__) && !(defined __SES_ARM) && !(defined __CROSSWORKS_ARM)
  70. #include <reent.h> // required for _write_r
  71. #include "SEGGER_RTT.h"
  72. /*********************************************************************
  73. *
  74. * Types
  75. *
  76. **********************************************************************
  77. */
  78. //
  79. // If necessary define the _reent struct
  80. // to match the one passed by the used standard library.
  81. //
  82. struct _reent;
  83. /*********************************************************************
  84. *
  85. * Function prototypes
  86. *
  87. **********************************************************************
  88. */
  89. int _write(int file, char *ptr, int len);
  90. _ssize_t _write_r _PARAMS ((struct _reent *, int, const void *, size_t));
  91. /*********************************************************************
  92. *
  93. * Global functions
  94. *
  95. **********************************************************************
  96. */
  97. /*********************************************************************
  98. *
  99. * _write()
  100. *
  101. * Function description
  102. * Low-level write function.
  103. * libc subroutines will use this system routine for output to all files,
  104. * including stdout.
  105. * Write data via RTT.
  106. */
  107. int _write(int file, char *ptr, int len) {
  108. (void) file; /* Not used, avoid warning */
  109. SEGGER_RTT_Write(0, ptr, len);
  110. return len;
  111. }
  112. /*********************************************************************
  113. *
  114. * _write_r()
  115. *
  116. * Function description
  117. * Low-level reentrant write function.
  118. * libc subroutines will use this system routine for output to all files,
  119. * including stdout.
  120. * Write data via RTT.
  121. */
  122. _ssize_t _write_r _PARAMS((struct _reent *r, int file, const void *ptr, size_t len)) {
  123. (void) file; /* Not used, avoid warning */
  124. (void) r; /* Not used, avoid warning */
  125. SEGGER_RTT_Write(0, ptr, len);
  126. return len;
  127. }
  128. #endif // #if (defined __GNUC__) && !(defined __SES_ARM) && !(defined __CROSSWORKS_ARM)
  129. #endif // defined(NRF_LOG_USES_RTT) && NRF_LOG_USES_RTT == 1
  130. #endif // !defined(RETARGET_ENABLED) || RETARGET_ENABLED == 0
  131. /****** End Of File *************************************************/