Just small pieces at a time to make it easy to see what's happening. Taking definitions currently implemented in both f0/f3 headers and making combined, documented versions in the -v2 header.
81 lines
2.2 KiB
C
81 lines
2.2 KiB
C
/** @defgroup usart_defines USART Defines
|
|
*
|
|
* @brief <b>Defined Constants and Types for the STM32F3xx USART</b>
|
|
*
|
|
* @ingroup STM32F3xx_defines
|
|
*
|
|
* @version 1.0.0
|
|
*
|
|
* @date 5 December 2012
|
|
*
|
|
* LGPL License Terms @ref lgpl_license
|
|
*/
|
|
|
|
/*
|
|
* This file is part of the libopencm3 project.
|
|
*
|
|
* This library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LIBOPENCM3_USART_H
|
|
#define LIBOPENCM3_USART_H
|
|
|
|
#include <libopencm3/stm32/common/usart_common_all.h>
|
|
#include <libopencm3/stm32/common/usart_common_v2.h>
|
|
|
|
|
|
/** @defgroup usart_reg_base USART register base addresses
|
|
* @ingroup STM32F_usart_defines
|
|
* Holds all the U(S)ART peripherals supported.
|
|
* @{
|
|
*/
|
|
#define USART1 USART1_BASE
|
|
#define USART2 USART2_BASE
|
|
#define USART3 USART3_BASE
|
|
#define UART4 UART4_BASE
|
|
#define UART5 UART5_BASE
|
|
/**@}*/
|
|
|
|
|
|
/* --- USART_CR3 values ---------------------------------------------------- */
|
|
|
|
|
|
/* SCARCNT[2:0]: Smartcard auto-retry count */
|
|
#define USART_CR3_SCARCNT_OFF (0x0 << 17)
|
|
/* 0x1 to 0x7: number of automatic retransmission attempts */
|
|
|
|
|
|
/* --- USART_BRR values ---------------------------------------------------- */
|
|
|
|
/* DIV_Mantissa[11:0]: mantissa of USARTDIV */
|
|
#define USART_BRR_DIV_MANTISSA_MASK (0xFFF << 4)
|
|
/* DIV_Fraction[3:0]: fraction of USARTDIV */
|
|
#define USART_BRR_DIV_FRACTION_MASK 0xF
|
|
|
|
/* --- USART_GTPR values --------------------------------------------------- */
|
|
|
|
/* GT[7:0]: Guard time value */
|
|
/* Note: N/A on UART4 & UART5 */
|
|
#define USART_GTPR_GT_MASK (0xFF << 8)
|
|
|
|
/* PSC[7:0]: Prescaler value */
|
|
/* Note: N/A on UART4/5 */
|
|
#define USART_GTPR_PSC_MASK 0xFF
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|