aboutsummaryrefslogtreecommitdiff
path: root/02-usart/src/init.c
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2020-11-18 01:32:24 -0700
committerJosh Rahm <joshuarahm@gmail.com>2020-11-18 21:14:39 -0700
commit44c2d2d5e5ce43563a4912b2967cdb6b2039b6dd (patch)
treec0b0665a33700efd3a6f8c53d229d1e6833bbfc7 /02-usart/src/init.c
parent0f7a7e93ded497c0fd5a47f5e42633eae5d2365d (diff)
downloadstm32l4-44c2d2d5e5ce43563a4912b2967cdb6b2039b6dd.tar.gz
stm32l4-44c2d2d5e5ce43563a4912b2967cdb6b2039b6dd.tar.bz2
stm32l4-44c2d2d5e5ce43563a4912b2967cdb6b2039b6dd.zip
A basic blink program that works off of interrupts.
- The init() function renamed to on_reset() - on_reset() now responsible for tight-looping at the end - on_reset() now set the VTable offset to the base of the FLASH - included exhaustive list of irqs in isrs.i - interrupt routines by default flash a code indicating their isr number. - interrupt routines are weak-linked allowing the programmer to override them at-will.
Diffstat (limited to '02-usart/src/init.c')
-rw-r--r--02-usart/src/init.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/02-usart/src/init.c b/02-usart/src/init.c
new file mode 100644
index 0000000..70703aa
--- /dev/null
+++ b/02-usart/src/init.c
@@ -0,0 +1,45 @@
+#include "arch.h"
+#include "system.h"
+
+/* Forward-declare the main function. This is implemented in main.c. */
+void main();
+
+/* These are defined in the linker script. */
+extern uint32_t INIT_DATA_VALUES;
+extern uint32_t DATA_SEGMENT_START;
+extern uint32_t DATA_SEGMENT_STOP;
+extern uint32_t BSS_START;
+extern uint32_t BSS_END;
+
+/*
+ * Runs before main. Initializes the data and bss segments by loading them
+ * into memory.
+ */
+_Noreturn void on_reset()
+{
+ uint32_t* src;
+ uint32_t* dest;
+
+ src = &INIT_DATA_VALUES;
+ dest = &DATA_SEGMENT_START;
+
+ /* Copy the values from flash into the data segment. */
+ while (dest != &DATA_SEGMENT_STOP) {
+ *(dest++) = *(src++);
+ }
+
+ /* Everything in the BSS segment is set to zero. */
+ dest = &BSS_START;
+ while (dest != &BSS_END) {
+ *(dest++) = 0;
+ }
+
+ /* Set the vector offset table to be at the start
+ * of FLASH memory. */
+ SCB.vto_r = 0x08000000;
+
+ /* Jump to main. */
+ main();
+
+ for(;;);
+}