source: rtems/bsps/arm/lm3s69xx/include/bsp/uart.h @ ba619b7f

Last change on this file since ba619b7f was ba619b7f, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 21:38:20

bsps/arm/: Scripted embedded brains header file clean up

Updates #4625.

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