source: rtems/bsps/arm/stm32f4/include/bsp/usart.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: 768 bytes
Line 
1/**
2 * @file
3 * @ingroup stm32f4_usart
4 * @brief USART (universal synchronous/asynchronous receiver/transmitter) support.
5 */
6
7/*
8 * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
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_STM32F4_USART_H
16#define LIBBSP_ARM_STM32F4_USART_H
17
18#include <libchip/serial.h>
19
20/**
21 * @defgroup stm32f4_usart USART Support
22 * @ingroup RTEMSBSPsARMSTM32F4
23 * @brief USART Support
24 * @{
25 */
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31extern const console_fns stm32f4_usart_fns;
32
33/** @} */
34
35#ifdef __cplusplus
36}
37#endif /* __cplusplus */
38
39#endif /* LIBBSP_ARM_STM32F4_USART_H */
Note: See TracBrowser for help on using the repository browser.