From 793bd23851a5319cb634bd18b1ceaa07d1ecd2e6 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 12 Nov 2011 10:43:33 +0100 Subject: mb525: Fix coding-style and comments. --- examples/stm32/f1/mb525/fancyblink/README | 2 +- examples/stm32/f1/mb525/fancyblink/fancyblink.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/stm32/f1/mb525/fancyblink') diff --git a/examples/stm32/f1/mb525/fancyblink/README b/examples/stm32/f1/mb525/fancyblink/README index 226cb21..497b689 100644 --- a/examples/stm32/f1/mb525/fancyblink/README +++ b/examples/stm32/f1/mb525/fancyblink/README @@ -6,5 +6,5 @@ This is a blink example program using libopencm3. It's intended for the ST STM32-based MB525 eval board (see http://www.st.com/stonline/products/literature/um/13472.htm for details). -It should blink the LED on the board. +It should blink the LEDs on the board. diff --git a/examples/stm32/f1/mb525/fancyblink/fancyblink.c b/examples/stm32/f1/mb525/fancyblink/fancyblink.c index 54ef47c..9efce8f 100644 --- a/examples/stm32/f1/mb525/fancyblink/fancyblink.c +++ b/examples/stm32/f1/mb525/fancyblink/fancyblink.c @@ -31,7 +31,7 @@ void clock_setup(void) void gpio_setup(void) { - /* Set GPIO6 (in GPIO port C) to 'output push-pull'. */ + /* Set GPIO6/7/8/9 (in GPIO port C) to 'output push-pull'. */ gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO6 | GPIO7 | GPIO8 | GPIO9); } @@ -43,7 +43,7 @@ int main(void) clock_setup(); gpio_setup(); - /* Blink the LED (PC12) on the board. */ + /* Blink the LEDs on the board. */ gpio_set(GPIOC, GPIO6); while (1) { gpio_toggle(GPIOC, GPIO6); /* LED on/off */ -- cgit v1.2.3