RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
console.h
1/*
2 * Copyright (c) 2018 embedded brains GmbH. All rights reserved.
3 *
4 * embedded brains GmbH
5 * Dornierstr. 4
6 * 82178 Puchheim
7 * Germany
8 * <info@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef LIBBSP_ARM_REALVIEW_PBX_A9_BSP_CONSOLE_H
16#define LIBBSP_ARM_REALVIEW_PBX_A9_BSP_CONSOLE_H
17
18#include <bsp/arm-pl011.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
24extern arm_pl011_context rvpbx_pl011_context;
25
26bool rvpbx_pl011_probe(rtems_termios_device_context *base);
27
28#ifdef __cplusplus
29}
30#endif /* __cplusplus */
31
32#endif /* LIBBSP_ARM_REALVIEW_PBX_A9_BSP_CONSOLE_H */
ARM PL011 Support Package.
Definition: arm-pl011.h:34
Termios device context.
Definition: termiostypes.h:75