aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/gpio.c
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-05-23 10:18:13 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-05-23 10:18:39 -0400
commitcf6414cc337150d539145c8cdb86846884e66a6c (patch)
tree15085adf11c3c979746a6e56db3d8757f9fecdb3 /libmaple/gpio.c
parent442c579cc240c68e88264ab0168db5325428b887 (diff)
downloadlibrambutan-cf6414cc337150d539145c8cdb86846884e66a6c.tar.gz
librambutan-cf6414cc337150d539145c8cdb86846884e66a6c.zip
Moving Doxygen comments from declarations to definitions.
Diffstat (limited to 'libmaple/gpio.c')
-rw-r--r--libmaple/gpio.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libmaple/gpio.c b/libmaple/gpio.c
index 2c58cc2..18bd791 100644
--- a/libmaple/gpio.c
+++ b/libmaple/gpio.c
@@ -38,6 +38,7 @@ gpio_dev gpioa = {
.clk_id = RCC_GPIOA,
.exti_port = AFIO_EXTI_PA,
};
+/** GPIO port A device. */
gpio_dev* const GPIOA = &gpioa;
gpio_dev gpiob = {
@@ -45,6 +46,7 @@ gpio_dev gpiob = {
.clk_id = RCC_GPIOB,
.exti_port = AFIO_EXTI_PB,
};
+/** GPIO port B device. */
gpio_dev* const GPIOB = &gpiob;
gpio_dev gpioc = {
@@ -52,6 +54,7 @@ gpio_dev gpioc = {
.clk_id = RCC_GPIOC,
.exti_port = AFIO_EXTI_PC,
};
+/** GPIO port C device. */
gpio_dev* const GPIOC = &gpioc;
gpio_dev gpiod = {
@@ -59,6 +62,7 @@ gpio_dev gpiod = {
.clk_id = RCC_GPIOD,
.exti_port = AFIO_EXTI_PD,
};
+/** GPIO port D device. */
gpio_dev* const GPIOD = &gpiod;
#ifdef STM32_HIGH_DENSITY
@@ -67,6 +71,7 @@ gpio_dev gpioe = {
.clk_id = RCC_GPIOE,
.exti_port = AFIO_EXTI_PE,
};
+/** GPIO port E device. */
gpio_dev* const GPIOE = &gpioe;
gpio_dev gpiof = {
@@ -74,6 +79,7 @@ gpio_dev gpiof = {
.clk_id = RCC_GPIOF,
.exti_port = AFIO_EXTI_PF,
};
+/** GPIO port F device. */
gpio_dev* const GPIOF = &gpiof;
gpio_dev gpiog = {
@@ -81,6 +87,7 @@ gpio_dev gpiog = {
.clk_id = RCC_GPIOG,
.exti_port = AFIO_EXTI_PG,
};
+/** GPIO port G device. */
gpio_dev* const GPIOG = &gpiog;
#endif