Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:05

0001 /**
0002  * @file
0003  * @ingroup stm32f4_usart
0004  * @brief USART (universal synchronous/asynchronous receiver/transmitter) support.
0005  */
0006 
0007 /*
0008  * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
0009  *
0010  * The license and distribution terms for this file may be
0011  * found in the file LICENSE in this distribution or at
0012  * http://www.rtems.org/license/LICENSE.
0013  */
0014 
0015 #ifndef LIBBSP_ARM_STM32F4_USART_H
0016 #define LIBBSP_ARM_STM32F4_USART_H
0017 
0018 #include <libchip/serial.h>
0019 
0020 /**
0021  * @defgroup stm32f4_usart USART Support
0022  * @ingroup RTEMSBSPsARMSTM32F4
0023  * @brief USART Support
0024  * @{
0025  */
0026 
0027 #ifdef __cplusplus
0028 extern "C" {
0029 #endif /* __cplusplus */
0030 
0031 extern const console_fns stm32f4_usart_fns;
0032 
0033 /** @} */
0034 
0035 #ifdef __cplusplus
0036 }
0037 #endif /* __cplusplus */
0038 
0039 #endif /* LIBBSP_ARM_STM32F4_USART_H */