1 Star 0 Fork 6

海里的鱼/STM32F103 Bootloader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update.h 914 Bytes
一键复制 编辑 原始数据 按行查看 历史
elecsail 提交于 2021-09-21 11:41 . init project
/**
******************************************************************************
* @brief STM32F103 BootLoader
*
* Copyright (c) 2021, <1148138800@qq.com>
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-09-21 zhangql Initial version.
******************************************************************************/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __UPDATE_H
#define __UPDATE_H
#ifdef __cplusplus
extern "C" {
#endif
#define APP1_ADDRESS ((unsigned int)0x08001400U)
#define APP2_ADDRESS ((unsigned int)0x08008800U)
#define APP_SELECT_ADDRESS ((unsigned int)0x0800FC00U)
typedef void (*pFunction)(void);
void Ctrl_Program_Jump(unsigned int app_address);
void Select_App_Address();
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/pocean2019/stm32-f103-bootloader.git
git@gitee.com:pocean2019/stm32-f103-bootloader.git
pocean2019
stm32-f103-bootloader
STM32F103 Bootloader
master

搜索帮助