source: rtems/c/src/lib/libbsp/arm/stm32f4/include/stm32f10xxx_rcc.h @ f68401e

4.115
Last change on this file since f68401e was 8224d2af, checked in by Daniel Ramirez <javamonn@…>, on 12/22/13 at 21:55:40

arm_stm32f4: added new doxygen

  • Property mode set to 100644
File size: 940 bytes
Line 
1/**
2 * @file
3 * @ingroup stm32f10xxx_rcc
4 * @brief STM32F10XXX RCC support.
5 */
6
7/*
8 * Copyright (c) 2013 Christian Mauderer.  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.com/license/LICENSE.
19 */
20
21#ifndef LIBBSP_ARM_STM32F4_STM32F10XXX_RCC_H
22#define LIBBSP_ARM_STM32F4_STM32F10XXX_RCC_H
23
24#include <bsp/utility.h>
25
26/**
27 * @defgroup stm32f10xxx_rcc STM32F10XXX RCC Support
28 * @ingroup stm32f4_rcc
29 * @brief STM32F10XXX RCC Support
30 * @{
31 */
32
33typedef struct {
34        uint32_t cr;
35        uint32_t cfgr;
36        uint32_t cir;
37        uint32_t apbrstr [2];
38        uint32_t ahbenr [1];
39        uint32_t apbenr [2];
40        uint32_t bdcr;
41        uint32_t csr;
42        uint32_t ahbstr;
43        uint32_t cfgr2;
44} stm32f4_rcc;
45
46/** @} */
47
48#endif /* LIBBSP_ARM_STM32F4_STM32F10XXX_RCC_H */
Note: See TracBrowser for help on using the repository browser.