source: rtems/c/src/lib/libbsp/arm/stm32f4/include/stm32f4xxxx_gpio.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 805 bytes
RevLine 
[8224d2af]1/**
2 * @file
3 * @ingroup stm32f4_gpio
4 * @brief STM32F4XXXX GPIO support.
5 */
6
[1485a58]7/*
8 * Copyright (c) 2012 Sebastian Huber.  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
[c499856]18 * http://www.rtems.org/license/LICENSE.
[1485a58]19 */
20
21#ifndef LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H
22#define LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H
23
24#include <bsp/utility.h>
25
26typedef struct {
27        uint32_t moder;
28        uint32_t otyper;
29        uint32_t ospeedr;
30        uint32_t pupdr;
31        uint32_t idr;
32        uint32_t odr;
33        uint32_t bsrr;
34        uint32_t lckr;
35        uint32_t afr [2];
36        uint32_t reserved_28 [246];
37} stm32f4_gpio;
38
39#endif /* LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H */
Note: See TracBrowser for help on using the repository browser.