aboutsummaryrefslogtreecommitdiff
path: root/lib/stm32/f1
diff options
context:
space:
mode:
authorUwe Hermann2011-11-16 21:53:27 +0100
committerUwe Hermann2011-11-17 00:09:29 +0100
commitd97c937b8e7c33cf2b30f3606707bf785c4ee2ea (patch)
treedda3a51e0db486755ad827d641072e9f9f542eb0 /lib/stm32/f1
parent0d25aa3fcd31a6608e9b0144857661565de3b457 (diff)
lib: More small fixes.
Diffstat (limited to 'lib/stm32/f1')
-rw-r--r--lib/stm32/f1/rcc.c2
-rw-r--r--lib/stm32/f1/vector.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/stm32/f1/rcc.c b/lib/stm32/f1/rcc.c
index 13d93c4..ce45832 100644
--- a/lib/stm32/f1/rcc.c
+++ b/lib/stm32/f1/rcc.c
@@ -22,7 +22,7 @@
#include <libopencm3/stm32/f1/rcc.h>
#include <libopencm3/stm32/f1/flash.h>
-/* Set the default ppre1 and ppre2 peripheral clock frequencies after reset */
+/* Set the default ppre1 and ppre2 peripheral clock frequencies after reset. */
u32 rcc_ppre1_frequency = 8000000;
u32 rcc_ppre2_frequency = 8000000;
diff --git a/lib/stm32/f1/vector.c b/lib/stm32/f1/vector.c
index 071fe96..cb2759e 100644
--- a/lib/stm32/f1/vector.c
+++ b/lib/stm32/f1/vector.c
@@ -19,7 +19,7 @@
#define WEAK __attribute__ ((weak))
-/* Symbols exported by linker script */
+/* Symbols exported by the linker script(s). */
extern unsigned _etext, _data, _edata, _ebss, _stack;
void main(void);