altos/stmf0: Allow projects to not use the USB boot loader
[fw/altos] / 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_ */