aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/stm32f2
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2012-04-10 16:20:13 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2012-04-11 16:56:57 -0400
commit913a76148bf28b780f5179e690b77e3177dbddc6 (patch)
treef4c85c564f3903473d41bb4fcf2a6046d64a9125 /libmaple/stm32f2
parentf49487116d9ddf7b2da64674d91b14ed34db8289 (diff)
downloadlibrambutan-913a76148bf28b780f5179e690b77e3177dbddc6.tar.gz
librambutan-913a76148bf28b780f5179e690b77e3177dbddc6.zip
stm32f2/gpio.h: Cosmetics.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple/stm32f2')
-rw-r--r--libmaple/stm32f2/include/series/gpio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmaple/stm32f2/include/series/gpio.h b/libmaple/stm32f2/include/series/gpio.h
index b6a7599..40c7292 100644
--- a/libmaple/stm32f2/include/series/gpio.h
+++ b/libmaple/stm32f2/include/series/gpio.h
@@ -163,9 +163,9 @@ extern gpio_dev gpioi;
* @brief GPIO pin modes
*/
typedef enum gpio_pin_mode {
- GPIO_MODE_INPUT = GPIO_MODER_INPUT, /**< Input mode */
+ GPIO_MODE_INPUT = GPIO_MODER_INPUT, /**< Input mode */
GPIO_MODE_OUTPUT = GPIO_MODER_OUTPUT, /**< Output mode */
- GPIO_MODE_AF = GPIO_MODER_AF, /**< Alternate function mode */
+ GPIO_MODE_AF = GPIO_MODER_AF, /**< Alternate function mode */
GPIO_MODE_ANALOG = GPIO_MODER_ANALOG, /**< Analog mode */
} gpio_pin_mode;