aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32/stm32-discovery/rtc/rtc.c
diff options
context:
space:
mode:
authorUwe Hermann2011-02-09 02:38:16 +0100
committerUwe Hermann2011-02-09 02:48:51 +0100
commit1cb45d8888ae922a8c20d9a84bc43de81b45a7b0 (patch)
tree98058934dd7f7a095381b74f721c6869486e01e3 /examples/stm32/stm32-discovery/rtc/rtc.c
parent5bfffcbb29849bbeb4df2e78b43ca408443196dc (diff)
STM32VLDISCOVERY: Fix some incorrect GPIO comments.
Diffstat (limited to 'examples/stm32/stm32-discovery/rtc/rtc.c')
-rw-r--r--examples/stm32/stm32-discovery/rtc/rtc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32/stm32-discovery/rtc/rtc.c b/examples/stm32/stm32-discovery/rtc/rtc.c
index 6e599c0..c99920f 100644
--- a/examples/stm32/stm32-discovery/rtc/rtc.c
+++ b/examples/stm32/stm32-discovery/rtc/rtc.c
@@ -62,7 +62,7 @@ void usart_setup(void)
void gpio_setup(void)
{
/* Set GPIO8 (in GPIO port C) to 'output push-pull'. */
- /* This drives the blue LED on the discovery. */
+ /* This drives the blue LED on the STM32VLDISCOVERY. */
gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_2_MHZ,
GPIO_CNF_OUTPUT_PUSHPULL, GPIO8);
}