altos/stmf0: Allow projects to not use the USB boot loader
authorKeith Packard <keithp@keithp.com>
Sun, 19 Feb 2017 06:54:35 +0000 (22:54 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 20 Feb 2017 19:16:52 +0000 (11:16 -0800)
Let applications define HAS_BOOT_LOADER on their own if desired.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/stmf0/ao_arch.h

index a36482b6746af760c212741d278d5075a4a7bb5d..c5f451f59aff32d304a8640da9395c949b3df441 100644 (file)
@@ -144,10 +144,15 @@ ao_adc_init();
 /* ADC maximum reported value */
 #define AO_ADC_MAX                     4095
 
+#ifndef HAS_BOOT_LOADER
+#define HAS_BOOT_LOADER                        1
+#endif
+
+#if HAS_BOOT_LOADER
 #define AO_BOOT_APPLICATION_BASE       ((uint32_t *) 0x08001000)
 #define AO_BOOT_APPLICATION_BOUND      ((uint32_t *) (0x08000000 + stm_flash_size()))
 #define AO_BOOT_LOADER_BASE            ((uint32_t *) 0x08000000)
-#define HAS_BOOT_LOADER                        1
+#endif
 
 #endif /* _AO_ARCH_H_ */