aboutsummaryrefslogtreecommitdiff
path: root/include/libopencm3/stm32/common/usart_common_f24.h
blob: 089a0c27796e607de0dc9a30a623ecab71166750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/** @addtogroup usart_defines */
/*
 * This file is part of the libopencm3 project.
 *
 * Copyright (C) 2011 Fergus Noble <fergusnoble@gmail.com>
 * Copyright (C) 2011 Stephen Caudle <scaudle@doceme.com>
 *
 * 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/>.
 */

/* THIS FILE SHOULD NOT BE INCLUDED DIRECTLY, BUT ONLY VIA SPI.H */

#ifndef LIBOPENCM3_USART_COMMON_F24_H
#define LIBOPENCM3_USART_COMMON_F24_H

#include <libopencm3/stm32/common/usart_common_all.h>

/* --- Convenience macros -------------------------------------------------- */

#define USART6				USART6_BASE

/* --- USART registers ----------------------------------------------------- */

/* Status register (USARTx_SR) */
#define USART6_SR			USART_SR(USART6_BASE)

/* Data register (USARTx_DR) */
#define USART6_DR			USART_DR(USART6_BASE)

/* Baud rate register (USARTx_BRR) */
#define USART6_BRR			USART_BRR(USART6_BASE)

/* Control register 1 (USARTx_CR1) */
#define USART6_CR1			USART_CR1(USART6_BASE)

/* Control register 2 (USARTx_CR2) */
#define USART6_CR2			USART_CR2(USART6_BASE)

/* Control register 3 (USARTx_CR3) */
#define USART6_CR3			USART_CR3(USART6_BASE)

/* Guard time and prescaler register (USARTx_GTPR) */
#define USART6_GTPR			USART_GTPR(USART6_BASE)

/* --- USART_CR1 values ---------------------------------------------------- */

/* OVER8: Oversampling mode */
#define USART_CR1_OVER8			(1 << 15)

/* --- USART_CR3 values ---------------------------------------------------- */

/* ONEBIT: One sample bit method enable */
#define USART_CR3_ONEBIT		(1 << 11)

#endif