source: rtems/c/src/lib/libbsp/arm/xilinx-zynq/include/zynq-uart.h @ 8fbe2e6

4.115
Last change on this file since 8fbe2e6 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 788 bytes
Line 
1/**
2 * @file
3 * @ingroup zynq_uart
4 * @brief UART support.
5 */
6
7/*
8 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Dornierstr. 4
12 *  82178 Puchheim
13 *  Germany
14 *  <info@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21#ifndef LIBBSP_ARM_XILINX_ZYNQ_UART_H
22#define LIBBSP_ARM_XILINX_ZYNQ_UART_H
23
24#include <libchip/serial.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif /* __cplusplus */
29
30/**
31 * @defgroup zynq_uart UART Support
32 * @ingroup arm_zynq
33 * @brief UART Support
34 */
35
36extern const console_fns zynq_uart_fns;
37
38#ifdef __cplusplus
39}
40#endif /* __cplusplus */
41
42#endif /* LIBBSP_ARM_XILINX_ZYNQ_UART_H */
Note: See TracBrowser for help on using the repository browser.