RTEMS 6.1-rc1
stm32f4xxxx_gpio.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2012 Sebastian Huber. All rights reserved.
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H
16#define LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H
17
18#include <bsp/utility.h>
19
20typedef struct {
21 uint32_t moder;
22 uint32_t otyper;
23 uint32_t ospeedr;
24 uint32_t pupdr;
25 uint32_t idr;
26 uint32_t odr;
27 uint32_t bsrr;
28 uint32_t lckr;
29 uint32_t afr [2];
30 uint32_t reserved_28 [246];
32
33#endif /* LIBBSP_ARM_STM32F4_STM32F4XXXX_GPIO_H */
This header file provides utility macros for BSPs.
Definition: stm32f10xxx_gpio.h:27