libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
f7/dcmi.h
Go to the documentation of this file.
1/** @defgroup dcmi_defines DCMI Defines
2 *
3 * @ingroup STM32F7xx_defines
4 *
5 * @brief Defined Constants and Macros for the STM32F7xx DCMI Peripheral
6 *
7 * @version 1.0.0
8 *
9 * @date 2020-05-15
10 *
11 * LGPL License Terms @ref lgpl_license
12 */
13
14
15/*
16 * Copyright (C) 2020, Smolyaninov Nikolay <smolin35@gmail.org>
17 *
18 * This file is part of the libopencm3 project.
19 *
20 * This library is free software: you can redistribute it and/or modify
21 * it under the terms of the GNU Lesser General Public License as published by
22 * the Free Software Foundation, either version 3 of the License, or
23 * (at your option) any later version.
24 *
25 * This library is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU Lesser General Public License for more details.
29 *
30 * You should have received a copy of the GNU Lesser General Public License
31 * along with this library. If not, see <http://www.gnu.org/licenses/>.
32 *
33 */
34
35#ifndef LIBOPENCM3_DCMI_H
36#define LIBOPENCM3_DCMI_H
37
39
40/**
41 * @defgroup dcmi_cr_values DCMI_CR Values
42 * @ingroup dcmi_defines
43 * @{
44 */
45#define DCMI_CR_OELS (1 << 20)
46#define DCMI_CR_LSM (1 << 19)
47#define DCMI_CR_OEBS (1 << 18)
48#define DCMI_CR_BSM1 (1 << 17)
49#define DCMI_CR_BSM0 (1 << 16)
50
51
52/**@}*/
53
54#endif