source: rtems/c/src/lib/libbsp/shared/console_private.h @ 36627387

5
Last change on this file since 36627387 was 36627387, checked in by Joel Sherrill <joel@…>, on 03/04/16 at 19:20:38

console_private.h: Remove prototypes for non-existent methods bsp_com_inch() and bsp_com_outch()

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup Console
5 *
6 * @brief  Extension of the generic libchip console driver shell
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2011, 2016.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef _PC386_CONSOLE_PRIVATE_h
19#define _PC386_CONSOLE_PRIVATE_h
20
21#include <rtems.h>
22
23#include <libchip/serial.h>
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29extern rtems_device_minor_number  BSPPrintkPort;
30
31/**
32 *  @brief
33 *
34 *  This function
35 *
36 *  @return This method returns
37 */
38int vt_ioctl( unsigned int cmd, unsigned long arg);
39
40/**
41 *  @brief console_initialize_data
42 *
43 *  This must be called before dynamic registration of devices can occur.
44 *  It is normally called as a side-effect of @a console_initialize() but
45 *  if a probe and dynamic registration occurs before that, then this method
46 *  should be explicitly invoked.
47 */
48void console_initialize_data(void);
49
50/**
51 *  @brief console_register_devices
52 *
53 *  This function expands the console table to include previous
54 *  ports and the array of new ports specified.
55 *
56 *  @param[in] new_ports specifies an array of new ports to register
57 *  @param[in] number_of_ports specifies the number of elements
58 *         in the new_ports array
59 *
60 */
61void console_register_devices(
62  console_tbl *new_ports,
63  size_t       number_of_ports
64);
65
66#ifdef __cplusplus
67}
68#endif
69
70/**@}*/
71
72#endif
73/* end of include file */
Note: See TracBrowser for help on using the repository browser.