1234567891011121314151617181920212223242526272829303132 |
- #ifndef __APP_LOADER_H__
- #define __APP_LOADER_H__
- /* Includes ------------------------------------------------------------------*/
- #define STM32F103 1
- #define STM32F072 0
- #if STM32F103
- #include "stm32f1xx_hal.h"
- #define NEW_VECTOR_OFFSET (uint32_t)0x00003000
- #elif STM32F072
- #include "stm32f0xx_hal.h"
- #define APPLICATION_ADDRESS (uint32_t)0x08003000
- #define NEW_VECTOR_ADDRESS (uint32_t)0x20000000
- #endif
- extern void IAP_Init(void);
- #endif /*___APP_LOADER_H__ */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|