source: rtems/bsps/arm/stm32f4/include/bsp/usart.h @ c991eeec

5
Last change on this file since c991eeec was c991eeec, checked in by Sebastian Huber <sebastian.huber@…>, on 03/04/19 at 14:32:15

bsps: Adjust bsp.h Doxygen groups

Update #3706.

  • Property mode set to 100644
File size: 881 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 *  embedded brains GmbH
11 *  Obere Lagerstr. 30
12 *  82178 Puchheim
13 *  Germany
14 *  <rtems@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_STM32F4_USART_H
22#define LIBBSP_ARM_STM32F4_USART_H
23
24#include <libchip/serial.h>
25
26/**
27 * @defgroup stm32f4_usart USART Support
28 * @ingroup RTEMSBSPsARMSTM32F4
29 * @brief USART Support
30 * @{
31 */
32
33#ifdef __cplusplus
34extern "C" {
35#endif /* __cplusplus */
36
37extern const console_fns stm32f4_usart_fns;
38
39/** @} */
40
41#ifdef __cplusplus
42}
43#endif /* __cplusplus */
44
45#endif /* LIBBSP_ARM_STM32F4_USART_H */
Note: See TracBrowser for help on using the repository browser.