aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Esden-Tempski2010-12-21 18:53:18 +0100
committerPiotr Esden-Tempski2010-12-21 20:14:49 +0100
commitc38aac0d2a7892e82874674d0611876403f0f6a0 (patch)
treea0d6738ba8eb61839aaa4614a21a7cc07cab8fe1
parent5060261413daff8ebf599ad1b7c5d9bf1ad8ee9c (diff)
Cosmetic fix.
-rw-r--r--examples/obldc/led/led.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/obldc/led/led.c b/examples/obldc/led/led.c
index 44695f8..7784106 100644
--- a/examples/obldc/led/led.c
+++ b/examples/obldc/led/led.c
@@ -28,7 +28,7 @@ void clock_setup(void)
/* Enable GPIOA clock. */
rcc_peripheral_enable_clock(&RCC_APB2ENR, RCC_APB2ENR_IOPAEN);
-
+
/* Enable GPIOB clock. */
rcc_peripheral_enable_clock(&RCC_APB2ENR, RCC_APB2ENR_IOPBEN);
}
@@ -38,7 +38,7 @@ void gpio_setup(void)
/* Set GPIO6 and 7 (in GPIO port A) to 'output push-pull'. */
gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ,
GPIO_CNF_OUTPUT_PUSHPULL, GPIO6 | GPIO7);
-
+
/* Set GPIO0 and 1 (in GPIO port B) to 'output push-pull'. */
gpio_set_mode(GPIOB, GPIO_MODE_OUTPUT_50_MHZ,
GPIO_CNF_OUTPUT_PUSHPULL, GPIO0 | GPIO1);