source: rtems/cpukit/include/rtems/dumpbuf.h @ 7b09032

5
Last change on this file since 7b09032 was 7b09032, checked in by Andreas Dachsberger <andreas.dachsberger@…>, on 04/03/19 at 06:49:07

doxygen: Split up "libmisc" subgroups and removed libmisc

Update #3706.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @brief Print a Memory Buffer
5 *
6 * This file defines the interface to the RTEMS methods to print a
7 * memory buffer in a style similar to many ROM monitors and debuggers.
8 */
9
10/*
11 *  COPYRIGHT (c) 1997-2011.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may in
15 *  the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#ifndef __DUMP_BUFFER_h
20#define __DUMP_BUFFER_h
21
22/**
23 *  @defgroup libmisc_dumpbuf Print Memory Buffer
24 *
25 *  @ingroup RTEMSAPIPrintSupport
26 */
27/**@{*/
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/**
33 * @brief Print memory buffer.
34 *
35 * This method prints @a length bytes beginning at @a buffer in
36 * a nice format similar to what one would expect from a debugger
37 * or ROM monitor.
38 *
39 * @param[in] buffer is the address of the buffer
40 * @param[in] length is the length of the buffer
41 */
42void rtems_print_buffer(
43  const unsigned char *buffer,
44  int                  length
45);
46
47#ifdef __cplusplus
48}
49#endif
50/**@}*/
51#endif
52/* end of include file */
Note: See TracBrowser for help on using the repository browser.