summaryrefslogtreecommitdiff
path: root/src/stm-flash/ao_stm_flash.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-02-24 00:18:14 -0800
committerKeith Packard <keithp@keithp.com>2013-05-07 20:12:40 -0700
commita6887032b4d217bca5236ea15389218f10d69545 (patch)
tree8e6673e7046bc90773ffd4f52b448fdf5109ba8c /src/stm-flash/ao_stm_flash.c
parent887209b61ac3012d0fd2206cf1016c44f59cb432 (diff)
Add STM self-flashing loader
This allows the real application to get loaded at 0x2000 and jumps to that at startup time if the boot pin is set appropriately Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm-flash/ao_stm_flash.c')
-rw-r--r--src/stm-flash/ao_stm_flash.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/stm-flash/ao_stm_flash.c b/src/stm-flash/ao_stm_flash.c
index df466d85..81ae86df 100644
--- a/src/stm-flash/ao_stm_flash.c
+++ b/src/stm-flash/ao_stm_flash.c
@@ -17,6 +17,7 @@
#include "ao.h"
#include <ao_exti.h>
+<<<<<<< HEAD
#include <ao_boot.h>
#include <ao_flash_stm.h>
@@ -117,21 +118,48 @@ __code struct ao_cmds ao_flash_cmds[] = {
{ ao_block_read, "R <addr>\0Read block. Returns 256 bytes" },
{ 0, NULL },
};
+=======
+
+void
+ao_panic(uint8_t c)
+{
+}
+
+void
+ao_test(void)
+{
+ char c;
+
+ for (;;) {
+ c = ao_usb_getchar();
+ ao_usb_putchar(c);
+ ao_usb_flush();
+ }
+}
+
+struct ao_task ao_test_task;
+>>>>>>> 5187bb4... Add STM self-flashing loader
int
main(void)
{
ao_clock_init();
+<<<<<<< HEAD
ao_task_init();
+=======
+>>>>>>> 5187bb4... Add STM self-flashing loader
ao_timer_init();
// ao_dma_init();
ao_cmd_init();
// ao_exti_init();
ao_usb_init();
+<<<<<<< HEAD
ao_cmd_register(&ao_flash_cmds[0]);
+=======
+>>>>>>> 5187bb4... Add STM self-flashing loader
ao_start_scheduler();
return 0;
}