diff --git a/README.md b/README.md index 177e935..4e3440b 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ EasyFlash是一款开源的轻量级嵌入式Flash存储器库,主要为MCU(Mi |源文件 |描述 | |:------------------------------ |:----- | -|\easyflash\src\flash_env.c |Env(常规模式)相关操作接口及实现源码| -|\easyflash\src\flash_env_wl.c |Env(磨损平衡模式)相关操作接口及实现源码| -|\easyflash\src\flash_iap.c |IAP 相关操作接口及实现源码| -|\easyflash\src\flash_log.c |Log 相关操作接口及实现源码| -|\easyflash\src\flash_utils.c |EasyFlash常用小工具,例如:CRC32| -|\easyflash\src\flash.c |目前只包含EasyFlash初始化方法| -|\easyflash\port\flash_port.c |不同平台下的EasyFlash移植接口及配置参数| +|\easyflash\src\ef_env.c |Env(常规模式)相关操作接口及实现源码| +|\easyflash\src\ef_env_wl.c |Env(磨损平衡模式)相关操作接口及实现源码| +|\easyflash\src\ef_iap.c |IAP 相关操作接口及实现源码| +|\easyflash\src\ef_log.c |Log 相关操作接口及实现源码| +|\easyflash\src\ef_utils.c |EasyFlash常用小工具,例如:CRC32| +|\easyflash\src\easyflash.c |目前只包含EasyFlash初始化方法| +|\easyflash\port\ef_port.c |不同平台下的EasyFlash移植接口及配置参数| |\demo\stm32f10x\non_os |stm32f10x裸机的demo| |\demo\stm32f10x\rtt |stm32f10x基于[RT-Thread](http://www.rt-thread.org/)的demo| |\demo\stm32f4xx |stm32f4xx基于[RT-Thread](http://www.rt-thread.org/)的demo| @@ -50,19 +50,26 @@ Demo平台:STM32F103RET6 + RT-Thread 1.2.2 + Env(2K bytes) ## 2、流程 -### 2.1、环境变量 +### 2.1、Env:环境变量(KV数据库) -下图为通过控制台(终端)来调用环境变量的常用接口,演示了环境变量 `"temp"` 从创建到保存,再修改,最后删除的过程。这些接口都支持被应用层直接调用。 +下图为通过控制台(终端)来调用环境变量的常用接口,演示了以下过程,这些接口都支持被应用层直接调用。 + +- 1、创建“温度”的环境变量,名为 `temp`,并且赋值为 `123`; +- 2、保存“温度”到Flash中并重启; +- 3、检查“温度”是否被成功保存; +- 4、修改“温度”值为 `456` 并保存、重启; +- 5、检查“温度”是否被成功修改; +- 6、删除“温度”的环境变量。 ![easy_flash_env](http://git.oschina.net/Armink/EasyFlash/raw/master/docs/zh/images/EnvDemo.gif) -### 2.2、在线升级 +### 2.2、IAP:在线升级 下图演示了通过控制台来进行IAP升级软件的过程,使用的是库中自带的IAP功能接口,演示采用的是串口+Ymodem协议的方式。你还也可以实现通过CAN、485、以太网等总线,来实现远程网络更新。 ![easy_flash_iap](http://git.oschina.net/Armink/EasyFlash/raw/master/docs/zh/images/IapDemo.gif) -### 2.3、日志存储 +### 2.3、Log:日志存储 下图过程为通过控制台输出日志,并将输出的日志存储到Flash中。重启再读取上次保存的日志,最后清空Flash日志。 @@ -96,13 +103,13 @@ It's very suitable for small without a file system products. The developer can e |Source file |Description | |:------------------------------ |:----- | -|\easyflash\src\flash_env.c |Env (normal mode) interface and implementation source code.| -|\easyflash\src\flash_env_wl.c |Env (wear leveling mode) interface and implementation source code.| -|\easyflash\src\flash_iap.c |IAP interface and implementation source code.| -|\easyflash\src\flash_log.c |Log interface and implementation source code.| -|\easyflash\src\flash_utils.c |EasyFlash utils. For example CRC32.| -|\easyflash\src\flash.c |Currently contains EasyFlash initialization function only. | -|\easyflash\port\flash_port.c |EasyFlash portable interface and configuration for different platforms.| +|\easyflash\src\ef_env.c |Env (normal mode) interface and implementation source code.| +|\easyflash\src\ef_env_wl.c |Env (wear leveling mode) interface and implementation source code.| +|\easyflash\src\ef_iap.c |IAP interface and implementation source code.| +|\easyflash\src\ef_log.c |Log interface and implementation source code.| +|\easyflash\src\ef_utils.c |EasyFlash utils. For example CRC32.| +|\easyflash\src\easyflash.c |Currently contains EasyFlash initialization function only. | +|\easyflash\port\ef_port.c |EasyFlash portable interface and configuration for different platforms.| |\demo\stm32f10x\non_os |stm32f10x non-os demo.| |\demo\stm32f10x\rtt |stm32f10x demo base on [RT-Thread](http://www.rt-thread.org/).| |\demo\stm32f4xx |stm32f4xx demo base on [RT-Thread](http://www.rt-thread.org/).| @@ -124,9 +131,16 @@ Welcome everyone to **star and pull request**([Github](https://github.com/armink ## 2 Flow -### 2.1 Env +### 2.1 Env(KV database) + +The figure below shows an ENV's common interface be called by the console(terminal). These interfaces are supported by the application layer called. -The figure below shows an ENV's common interface be called by the console(terminal). The ENV `"temp"` from creation to save, and then modify the final delete process. These interfaces are supported by the application layer called. +- 1.Create temperature environment variable. It's name is `temp` and value is `123`; +- 2.Save temperature to flash and reboot; +- 3.Check the temperature has saved successfully; +- 4.Change the temperature value to `456` and save, reboot; +- 5.Check the temperature has changed successfully; +- 6.Delete temperature environment variable. ![easy_flash_env](https://raw.githubusercontent.com/armink/EasyFlash/master/docs/en/images/EnvDemo.gif) diff --git a/demo/stm32f10x/non_os/EWARM/EasyFlash.dep b/demo/stm32f10x/non_os/EWARM/EasyFlash.dep index b9c5867..6eec175 100644 --- a/demo/stm32f10x/non_os/EWARM/EasyFlash.dep +++ b/demo/stm32f10x/non_os/EWARM/EasyFlash.dep @@ -2,518 +2,723 @@ 2 - 584004130 + 11712833 stm32f103xE - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.pbi - $PROJ_DIR$\..\components\others\bsp.c - $PROJ_DIR$\..\app\src\stm32f10x_it.c - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $TOOLKIT_DIR$\inc\c\ystdio.h + $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.pbi + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_utils.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.pbi $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c - $PROJ_DIR$\..\app\src\app.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c - $PROJ_DIR$\stm32f103xE\Obj\flash_iap.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash_utils.pbi - $PROJ_DIR$\stm32f103xE\Obj\bsp.pbi - $PROJ_DIR$\stm32f103xE\Obj\app.pbi + $PROJ_DIR$\stm32f103xE\Obj\misc.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.o - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.o - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.o - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c - $PROJ_DIR$\stm32f103xE\Obj\startup_stm32f10x_hd.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.o - $PROJ_DIR$\stm32f103xE\Obj\flash_port.pbi - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c + $PROJ_DIR$\stm32f103xE\Obj\ef_utils.o $PROJ_DIR$\stm32f103xE\Obj\flash.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.o + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.bin $PROJ_DIR$\stm32f103xE\Obj\flash_env.pbi - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c - $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.o + $PROJ_DIR$\stm32f103xE\Obj\utils.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.pbi - $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.pbi - $PROJ_DIR$\stm32f103xE\Obj\misc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash.o - $PROJ_DIR$\stm32f103xE\Obj\flash_env.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.o - $PROJ_DIR$\stm32f103xE\Obj\flash_port.o - $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.o - $PROJ_DIR$\stm32f103xE\Obj\app.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c + $PROJ_DIR$\..\app\src\app.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env_wl.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c + $PROJ_DIR$\..\..\..\..\easyflash\src\iap.c + $PROJ_DIR$\..\app\src\stm32f10x_it.c + $PROJ_DIR$\..\components\others\bsp.c + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.o $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.o - $PROJ_DIR$\stm32f103xE\Obj\misc.o - $PROJ_DIR$\stm32f103xE\Obj\flash_utils.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h + $PROJ_DIR$\stm32f103xE\Obj\env.o $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.o + $PROJ_DIR$\stm32f103xE\Obj\easyflash.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h + $PROJ_DIR$\stm32f103xE\Obj\iap.o + $PROJ_DIR$\stm32f103xE\Obj\iap.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.o + $PROJ_DIR$\stm32f103xE\Obj\env.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_port.o + $PROJ_DIR$\stm32f103xE\Obj\flash_env.o + $PROJ_DIR$\stm32f103xE\Obj\app.pbi + $PROJ_DIR$\stm32f103xE\Obj\env_wl.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmInstr.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.o - $PROJ_DIR$\stm32f103xE\Obj\flash_iap.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_port.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.pbi + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.pbi + $PROJ_DIR$\stm32f103xE\Obj\startup_stm32f10x_hd.o + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\stm32f103xE\Obj\port.o + $PROJ_DIR$\stm32f103xE\Obj\ef_port.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_iap.pbi + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\stm32f103xE\Obj\env_wl.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_utils.pbi + $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.o + $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.pbi + $TOOLKIT_DIR$\lib\m7M_tl.a + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h + $PROJ_DIR$\stm32f103xE\Obj\easyflash.pbi + $PROJ_DIR$\stm32f103xE\Obj\misc.o $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.o - $PROJ_DIR$\stm32f103xE\Obj\bsp.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.o - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\inc\c\stdlib.h $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h - $TOOLKIT_DIR$\inc\c\ystdio.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.o + $PROJ_DIR$\stm32f103xE\Obj\flash_iap.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h + $PROJ_DIR$\..\components\easyflash\port\port.c $PROJ_DIR$\..\..\..\..\easyflash\inc\flash.h - $TOOLKIT_DIR$\inc\c\stdbool.h - $TOOLKIT_DIR$\inc\c\stdio.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.pbi + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\..\..\..\..\easyflash\src\utils.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h + $PROJ_DIR$\stm32f103xE\Obj\app.o + $PROJ_DIR$\stm32f103xE\Obj\flash_utils.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.o + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.pbi - $PROJ_DIR$\stm32f103xE\Obj\EasyFlash.pbd + $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.pbi $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.pbi - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.bin - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.pbi - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.pbi + $PROJ_DIR$\stm32f103xE\Obj\bsp.o + $PROJ_DIR$\stm32f103xE\Obj\EasyFlash.pbd + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.pbi $TOOLKIT_DIR$\inc\c\cmsis_iar.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h - $PROJ_DIR$\..\components\others\bsp.h - $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\app\inc\stm32f10x_conf.h $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmInstr.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $TOOLKIT_DIR$\inc\c\xencoding_limits.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.pbi + $PROJ_DIR$\..\app\inc\stm32f10x_it.h $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cm3.h - $TOOLKIT_DIR$\inc\c\intrinsics.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmFunc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h + $PROJ_DIR$\..\components\others\stm32f103xE.icf + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.o + $PROJ_DIR$\..\..\..\..\easyflash\inc\easyflash.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h + $PROJ_DIR$\..\app\inc\stm32f10x_conf.h + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h + $TOOLKIT_DIR$\inc\c\stdbool.h + $PROJ_DIR$\stm32f103xE\Obj\bsp.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.pbi + $PROJ_DIR$\..\components\others\bsp.h + $PROJ_DIR$\stm32f103xE\List\EasyFlash.map + $PROJ_DIR$\stm32f103xE\Obj\ef_port.o + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h - $PROJ_DIR$\..\app\inc\stm32f10x_it.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $TOOLKIT_DIR$\inc\c\string.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.pbi + $PROJ_DIR$\stm32f103xE\Obj\port.pbi $TOOLKIT_DIR$\lib\shb_l.a + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmFunc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.pbi + $TOOLKIT_DIR$\inc\c\intrinsics.h $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\stm32f103xE\List\EasyFlash.map - $PROJ_DIR$\..\components\others\stm32f103xE.icf - $TOOLKIT_DIR$\lib\m7M_tl.a - $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\stm32f103xE\Obj\utils.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h + $PROJ_DIR$\stm32f103xE\Obj\ef_env.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_iap.o + $PROJ_DIR$\stm32f103xE\Obj\ef_env_wl.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_env.o + $PROJ_DIR$\stm32f103xE\Obj\ef_env_wl.o + $PROJ_DIR$\stm32f103xE\Obj\ef_iap.pbi + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c - [ROOT_NODE] + [ROOT_NODE] + + + ILINK + 5 164 + + + + + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out + + + OBJCOPY + 22 + + + ILINK + 164 + + + + + ILINK + 149 126 136 64 189 190 187 165 18 114 91 2 150 56 129 176 69 115 58 63 83 138 144 21 85 117 80 84 57 24 111 106 169 96 61 172 166 110 182 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c + + + BICOMP + 162 + + + ICCARM + 138 + + + + + BICOMP + 100 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 152 62 128 185 112 66 116 + + + ICCARM + 100 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 152 62 128 185 112 66 116 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c + + + BICOMP + 134 + + + ICCARM + 24 + + + + + BICOMP + 81 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + + ICCARM + 81 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c + + + BICOMP + 139 + + + ICCARM + 115 + + + + + BICOMP + 184 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + + ICCARM + 184 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c - ILINK - 109 157 + BICOMP + 88 + + + ICCARM + 144 + + + BICOMP + 152 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 62 128 185 112 66 116 + + + ICCARM + 152 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 62 128 185 112 66 116 + + - $PROJ_DIR$\..\components\others\bsp.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c BICOMP - 29 + 145 ICCARM - 90 + 57 BICOMP - 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 99 93 96 + 175 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 99 93 96 + 175 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\app\src\stm32f10x_it.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c BICOMP - 43 + 135 ICCARM - 66 + 63 BICOMP - 151 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 + 75 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 177 100 152 62 128 185 112 66 116 ICCARM - 151 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 + 75 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c - AARM - 42 + BICOMP + 65 + + + ICCARM + 58 + + + BICOMP + 157 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + + ICCARM + 157 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 + + - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c BICOMP - 50 + 180 ICCARM - 68 + 117 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 153 154 94 + 62 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 128 185 112 66 116 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 153 154 94 + 62 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c BICOMP - 59 + 170 ICCARM - 75 + 80 BICOMP - 95 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 + 101 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 95 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 + 101 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c BICOMP - 48 + 10 ICCARM - 65 + 84 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 153 154 94 + 128 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 185 112 66 116 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 153 154 94 + 128 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c BICOMP - 62 + 3 ICCARM - 92 + 96 BICOMP - 145 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 66 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 116 ICCARM - 145 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 66 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c BICOMP - 54 + 97 ICCARM - 78 + 83 BICOMP - 144 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 177 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 100 152 62 128 185 112 66 116 ICCARM - 144 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 177 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c BICOMP - 56 + 90 ICCARM - 73 + 21 BICOMP - 147 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 168 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 147 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 168 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c BICOMP - 57 + 161 ICCARM - 79 + 111 BICOMP - 132 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 122 138 117 136 118 110 38 119 95 + 119 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 132 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 122 138 117 136 118 110 38 119 95 + 119 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c BICOMP - 28 + 132 ICCARM - 76 + 106 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 + 185 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 112 66 116 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 + 185 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c BICOMP - 53 + 160 ICCARM - 83 + 169 BICOMP - 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 130 132 122 138 117 136 118 110 38 119 95 + 112 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 66 116 ICCARM - 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 130 132 122 138 117 136 118 110 38 119 95 + 112 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c + $PROJ_DIR$\..\app\src\app.c BICOMP - 61 + 73 ICCARM - 71 + 126 BICOMP - 130 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 132 122 138 117 136 118 110 38 119 95 + 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 151 4 6 158 174 0 130 ICCARM - 130 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 132 122 138 117 136 118 110 38 119 95 + 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 151 4 6 158 174 0 130 - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c BICOMP - 58 + 113 ICCARM - 77 + 64 BICOMP - 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 ICCARM - 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env_wl.c BICOMP - 47 + 103 ICCARM - 64 + 74 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c BICOMP - 63 + 95 + + + ICCARM + 165 + + + + + BICOMP + 151 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 + + + ICCARM + 151 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 + + + + + $PROJ_DIR$\..\..\..\..\easyflash\src\iap.c + + + BICOMP + 68 + + + ICCARM + 67 + + + + + BICOMP + 151 141 78 76 173 155 178 92 102 4 6 158 + + + ICCARM + 151 141 78 76 173 155 178 92 102 4 6 158 + + + + + $PROJ_DIR$\..\app\src\stm32f10x_it.c + + + BICOMP + 109 ICCARM @@ -523,103 +728,112 @@ BICOMP - 143 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 146 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 143 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 146 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c + $PROJ_DIR$\..\components\others\bsp.c BICOMP - 55 + 159 ICCARM - 86 + 136 BICOMP - 146 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 174 6 0 ICCARM - 146 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 163 153 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 174 6 0 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + + + AARM + 91 + + + + + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c BICOMP - 0 + 133 ICCARM - 81 + 61 BICOMP - 122 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 138 117 136 118 110 38 119 95 + 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 122 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 138 117 136 118 110 38 119 95 + 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env.c BICOMP - 45 + 70 ICCARM - 67 + 60 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 99 96 94 152 124 127 114 133 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 99 96 94 152 124 127 114 133 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c BICOMP - 1 + 12 ICCARM - 88 + 114 BICOMP - 138 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 117 136 118 110 38 119 95 + 116 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 ICCARM - 138 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 117 136 118 110 38 119 95 + 116 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 @@ -628,145 +842,214 @@ BICOMP - 60 + 86 ICCARM - 87 + 150 BICOMP - 142 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 59 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 142 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 59 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\app\src\app.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c BICOMP - 30 + 124 ICCARM - 69 + 56 BICOMP - 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 97 100 93 98 99 96 94 + 148 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 75 177 100 152 62 128 185 112 66 116 ICCARM - 120 124 127 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 130 132 122 138 117 136 118 110 38 119 95 97 100 93 98 99 96 94 + 148 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c BICOMP - 27 + 142 ICCARM - 84 + 129 BICOMP - 97 125 128 139 135 115 123 129 121 100 93 98 + 131 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 97 125 128 139 135 115 123 129 121 100 93 98 + 131 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c BICOMP + 20 + + + ICCARM 2 + + + + BICOMP + 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 148 75 177 100 152 62 128 185 112 66 116 + ICCARM - 91 + 77 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 148 75 177 100 152 62 128 185 112 66 116 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c + + + BICOMP + 8 + + + ICCARM + 176 BICOMP - 117 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 136 118 110 38 119 95 + 79 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 117 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 136 118 110 38 119 95 + 79 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c BICOMP - 103 + 14 ICCARM - 80 + 69 BICOMP - 149 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 125 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 149 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 125 156 147 141 78 76 173 155 178 92 102 82 140 181 179 167 153 77 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c BICOMP - 102 + 9 ICCARM - 39 + 18 BICOMP - 141 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 ICCARM - 141 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + + + BICOMP + 1 + + + ICCARM + 7 + + + + + BICOMP + 121 141 78 76 173 155 178 92 102 4 6 158 154 122 130 + + + ICCARM + 121 141 78 76 173 155 178 92 102 4 6 158 154 122 130 + + + + + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + + + BICOMP + 104 + + + ICCARM + 127 + + + + + BICOMP + 121 141 78 76 173 155 178 92 102 4 6 158 + + + ICCARM + 121 141 78 76 173 155 178 92 102 4 6 158 + + + + + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c BICOMP - 105 + 23 ICCARM @@ -776,191 +1059,195 @@ BICOMP - 118 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 154 122 130 ICCARM - 118 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 154 122 130 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c BICOMP - 108 + 98 ICCARM - 32 + 118 BICOMP - 38 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 ICCARM - 38 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c + $PROJ_DIR$\..\components\easyflash\port\flash_port.c BICOMP - 3 + 87 ICCARM - 89 + 71 BICOMP - 148 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 148 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c BICOMP - 112 + 19 ICCARM - 74 + 143 BICOMP - 150 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 ICCARM - 150 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 121 141 78 76 173 155 178 92 102 4 6 158 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c + $PROJ_DIR$\..\components\easyflash\port\port.c BICOMP - 104 + 171 ICCARM - 35 + 94 BICOMP - 110 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 ICCARM - 110 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 174 0 130 108 153 77 156 147 82 140 181 179 167 148 75 177 100 152 62 128 185 112 66 116 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c + $PROJ_DIR$\..\..\..\..\easyflash\src\utils.c BICOMP - 107 + 183 ICCARM - 82 + 25 BICOMP - 140 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 ICCARM - 140 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c BICOMP - 101 + 186 ICCARM - 70 + 189 BICOMP - 136 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 ICCARM - 136 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 118 110 38 119 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c BICOMP - 113 + 188 ICCARM - 44 + 190 BICOMP - 119 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 ICCARM - 119 114 133 125 128 139 135 115 123 129 121 126 116 134 137 131 124 127 130 132 122 138 117 136 118 110 38 95 + 151 141 78 76 173 155 178 92 102 4 6 158 154 122 130 - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c - ILINK - 157 + BICOMP + 191 - OBJCOPY - 111 + ICCARM + 187 - ILINK - 158 69 90 64 65 68 84 67 76 75 42 83 87 71 92 85 78 86 73 79 81 88 91 89 66 70 80 72 74 82 39 35 32 44 77 155 160 159 156 + BICOMP + 151 141 78 76 173 155 178 92 102 4 6 158 + + + ICCARM + 151 141 78 76 173 155 178 92 102 4 6 158 diff --git a/demo/stm32f10x/non_os/EWARM/EasyFlash.ewp b/demo/stm32f10x/non_os/EWARM/EasyFlash.ewp index 17c1362..c6b7681 100644 --- a/demo/stm32f10x/non_os/EWARM/EasyFlash.ewp +++ b/demo/stm32f10x/non_os/EWARM/EasyFlash.ewp @@ -942,25 +942,25 @@ port - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c src - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c diff --git a/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.dbgdt b/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.dbgdt index e83ced8..89bfb14 100644 --- a/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.dbgdt +++ b/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.dbgdt @@ -34,7 +34,7 @@ 20011 - 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 + 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 diff --git a/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.wsdt b/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.wsdt index f6a2ead..00dc05e 100644 --- a/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.wsdt +++ b/demo/stm32f10x/non_os/EWARM/settings/EasyFlash.wsdt @@ -35,14 +35,14 @@ - TextEditor$WS_DIR$\..\app\src\app.c00000023023000100000010000001 + TextEditor$WS_DIR$\..\app\src\app.c000000404000100000010000001 - iaridepm.enu1-2-2744314-2-25105130357152740188095771458-2-21781682-2-21684180100238118614330357152740 + iaridepm.enu1-2-2675314-2-25105130357152740188095700103-2-22471682-2-21684249100238125749730357152740 diff --git a/demo/stm32f10x/non_os/README.md b/demo/stm32f10x/non_os/README.md index 0bde9b1..4c5ba59 100644 --- a/demo/stm32f10x/non_os/README.md +++ b/demo/stm32f10x/non_os/README.md @@ -18,7 +18,7 @@ ## 2ļУ˵ -`components\easyflash\port\flash_port.c` ֲοļ +`components\easyflash\port\ef_port.c` ֲοļ `RVMDK` ΪKeilļ diff --git a/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvopt b/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvopt index 3d9d818..8d5d461 100644 --- a/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvopt +++ b/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvopt @@ -199,10 +199,10 @@ 1 0 0 - 52 + 34 0 1 - 12 + 1 0 ..\APP\src\app.c app.c @@ -279,7 +279,7 @@ 0 3 - 6 + 0 1 0 0 @@ -288,12 +288,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash.c - flash.c + ..\..\..\..\easyflash\src\easyflash.c + easyflash.c 3 - 7 + 0 1 0 0 @@ -302,12 +302,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env.c - flash_env.c + ..\..\..\..\easyflash\src\ef_env.c + ef_env.c 3 - 8 + 0 1 0 0 @@ -316,12 +316,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env_wl.c - flash_env_wl.c + ..\..\..\..\easyflash\src\ef_env_wl.c + ef_env_wl.c 3 - 9 + 0 1 0 0 @@ -330,12 +330,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_iap.c - flash_iap.c + ..\..\..\..\easyflash\src\ef_iap.c + ef_iap.c 3 - 10 + 0 1 0 0 @@ -344,8 +344,8 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_utils.c - flash_utils.c + ..\..\..\..\easyflash\src\ef_utils.c + ef_utils.c 3 @@ -358,8 +358,8 @@ 0 0 0 - ..\components\easyflash\port\flash_port.c - flash_port.c + ..\components\easyflash\port\ef_port.c + ef_port.c @@ -2633,7 +2633,7 @@ File 2002 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -4254,9 +4254,9 @@ ..\APP\src\app.c - 52 + 34 1 - 12 + 1 diff --git a/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvproj b/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvproj index 37900fc..07a823e 100644 --- a/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvproj +++ b/demo/stm32f10x/non_os/RVMDK/EasyFlash.uvproj @@ -421,34 +421,34 @@ easyflash - flash.c + easyflash.c 1 - ..\..\..\..\easyflash\src\flash.c + ..\..\..\..\easyflash\src\easyflash.c - flash_env.c + ef_env.c 1 - ..\..\..\..\easyflash\src\flash_env.c + ..\..\..\..\easyflash\src\ef_env.c - flash_env_wl.c + ef_env_wl.c 1 - ..\..\..\..\easyflash\src\flash_env_wl.c + ..\..\..\..\easyflash\src\ef_env_wl.c - flash_iap.c + ef_iap.c 1 - ..\..\..\..\easyflash\src\flash_iap.c + ..\..\..\..\easyflash\src\ef_iap.c - flash_utils.c + ef_utils.c 1 - ..\..\..\..\easyflash\src\flash_utils.c + ..\..\..\..\easyflash\src\ef_utils.c - flash_port.c + ef_port.c 1 - ..\components\easyflash\port\flash_port.c + ..\components\easyflash\port\ef_port.c diff --git a/demo/stm32f10x/non_os/RVMDK/EasyFlash_stm32f103xE.dep b/demo/stm32f10x/non_os/RVMDK/EasyFlash_stm32f103xE.dep index ad96882..32a3450 100644 --- a/demo/stm32f10x/non_os/RVMDK/EasyFlash_stm32f103xE.dep +++ b/demo/stm32f10x/non_os/RVMDK/EasyFlash_stm32f103xE.dep @@ -1,10 +1,10 @@ Dependencies for Project 'EasyFlash', Target 'stm32f103xE': (DO NOT MODIFY !) -F (..\APP\src\app.c)(0x553211B1)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\app.o" --omf_browse ".\Output\app.crf" --depend ".\Output\app.d") +F (..\APP\src\app.c)(0x5599E982)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\app.o" --omf_browse ".\Output\app.crf" --depend ".\Output\app.d") I (..\components\others\bsp.h)(0x55321114) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) @@ -18,18 +18,18 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) I (C:\Program Files\Keil\ARM\RV31\INC\stdio.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) -F (..\APP\src\stm32f10x_it.c)(0x553207D2)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_it.o" --omf_browse ".\Output\stm32f10x_it.crf" --depend ".\Output\stm32f10x_it.d") +F (..\APP\src\stm32f10x_it.c)(0x553207D2)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_it.o" --omf_browse ".\Output\stm32f10x_it.crf" --depend ".\Output\stm32f10x_it.d") I (..\app\inc\stm32f10x_it.h)(0x545CB528) I (..\components\others\bsp.h)(0x55321114) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) @@ -44,12 +44,12 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) F (..\app\inc\stm32f10x_conf.h)(0x545CB528)() -F (..\components\others\bsp.c)(0x55321AB2)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\bsp.o" --omf_browse ".\Output\bsp.crf" --depend ".\Output\bsp.d") +F (..\components\others\bsp.c)(0x55321AB2)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\bsp.o" --omf_browse ".\Output\bsp.crf" --depend ".\Output\bsp.d") I (..\components\others\bsp.h)(0x55321114) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) @@ -65,37 +65,37 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdio.h)(0x4BA13B96) F (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s)(0x553596CB)(--cpu Cortex-M3 -g --apcs=interwork --pd "__MICROLIB SETA 1" -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" --list ".\Output\list\startup_stm32f10x_hd.lst" --xref -o ".\Output\startup_stm32f10x_hd.o" --depend ".\Output\startup_stm32f10x_hd.d") -F (..\..\..\..\easyflash\src\flash.c)(0x553885FA)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash.o" --omf_browse ".\Output\flash.crf" --depend ".\Output\flash.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\..\..\..\easyflash\src\easyflash.c)(0x559796C4)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\easyflash.o" --omf_browse ".\Output\easyflash.crf" --depend ".\Output\easyflash.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) -F (..\..\..\..\easyflash\src\flash_env.c)(0x55697260)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash_env.o" --omf_browse ".\Output\flash_env.crf" --depend ".\Output\flash_env.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\..\..\..\easyflash\src\ef_env.c)(0x559788F2)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_env.o" --omf_browse ".\Output\ef_env.crf" --depend ".\Output\ef_env.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) -F (..\..\..\..\easyflash\src\flash_env_wl.c)(0x55697253)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash_env_wl.o" --omf_browse ".\Output\flash_env_wl.crf" --depend ".\Output\flash_env_wl.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\..\..\..\easyflash\src\ef_env_wl.c)(0x559797C3)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_env_wl.o" --omf_browse ".\Output\ef_env_wl.crf" --depend ".\Output\ef_env_wl.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) -F (..\..\..\..\easyflash\src\flash_iap.c)(0x5538AEE1)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash_iap.o" --omf_browse ".\Output\flash_iap.crf" --depend ".\Output\flash_iap.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\..\..\..\easyflash\src\ef_iap.c)(0x5597877C)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_iap.o" --omf_browse ".\Output\ef_iap.crf" --depend ".\Output\ef_iap.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) -F (..\..\..\..\easyflash\src\flash_utils.c)(0x553880CA)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash_utils.o" --omf_browse ".\Output\flash_utils.crf" --depend ".\Output\flash_utils.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\..\..\..\easyflash\src\ef_utils.c)(0x55978410)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_utils.o" --omf_browse ".\Output\ef_utils.crf" --depend ".\Output\ef_utils.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) -F (..\components\easyflash\port\flash_port.c)(0x55697666)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\flash_port.o" --omf_browse ".\Output\flash_port.crf" --depend ".\Output\flash_port.d") -I (..\..\..\..\easyflash\inc\flash.h)(0x5569729C) +F (..\components\easyflash\port\ef_port.c)(0x5599F44D)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_port.o" --omf_browse ".\Output\ef_port.crf" --depend ".\Output\ef_port.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) @@ -105,7 +105,7 @@ I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) @@ -118,10 +118,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\misc.o" --omf_browse ".\Output\misc.crf" --depend ".\Output\misc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\misc.o" --omf_browse ".\Output\misc.crf" --depend ".\Output\misc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -136,10 +136,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_adc.o" --omf_browse ".\Output\stm32f10x_adc.crf" --depend ".\Output\stm32f10x_adc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_adc.o" --omf_browse ".\Output\stm32f10x_adc.crf" --depend ".\Output\stm32f10x_adc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -154,10 +154,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_bkp.o" --omf_browse ".\Output\stm32f10x_bkp.crf" --depend ".\Output\stm32f10x_bkp.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_bkp.o" --omf_browse ".\Output\stm32f10x_bkp.crf" --depend ".\Output\stm32f10x_bkp.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -173,10 +173,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_can.o" --omf_browse ".\Output\stm32f10x_can.crf" --depend ".\Output\stm32f10x_can.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_can.o" --omf_browse ".\Output\stm32f10x_can.crf" --depend ".\Output\stm32f10x_can.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -191,10 +191,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_cec.o" --omf_browse ".\Output\stm32f10x_cec.crf" --depend ".\Output\stm32f10x_cec.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_cec.o" --omf_browse ".\Output\stm32f10x_cec.crf" --depend ".\Output\stm32f10x_cec.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -210,10 +210,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_crc.o" --omf_browse ".\Output\stm32f10x_crc.crf" --depend ".\Output\stm32f10x_crc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_crc.o" --omf_browse ".\Output\stm32f10x_crc.crf" --depend ".\Output\stm32f10x_crc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h)(0x545CB527) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -229,10 +229,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dac.o" --omf_browse ".\Output\stm32f10x_dac.crf" --depend ".\Output\stm32f10x_dac.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dac.o" --omf_browse ".\Output\stm32f10x_dac.crf" --depend ".\Output\stm32f10x_dac.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -248,10 +248,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dbgmcu.o" --omf_browse ".\Output\stm32f10x_dbgmcu.crf" --depend ".\Output\stm32f10x_dbgmcu.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dbgmcu.o" --omf_browse ".\Output\stm32f10x_dbgmcu.crf" --depend ".\Output\stm32f10x_dbgmcu.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -267,10 +267,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dma.o" --omf_browse ".\Output\stm32f10x_dma.crf" --depend ".\Output\stm32f10x_dma.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dma.o" --omf_browse ".\Output\stm32f10x_dma.crf" --depend ".\Output\stm32f10x_dma.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -286,10 +286,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_exti.o" --omf_browse ".\Output\stm32f10x_exti.crf" --depend ".\Output\stm32f10x_exti.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_exti.o" --omf_browse ".\Output\stm32f10x_exti.crf" --depend ".\Output\stm32f10x_exti.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -304,10 +304,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_flash.o" --omf_browse ".\Output\stm32f10x_flash.crf" --depend ".\Output\stm32f10x_flash.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_flash.o" --omf_browse ".\Output\stm32f10x_flash.crf" --depend ".\Output\stm32f10x_flash.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -322,10 +322,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_fsmc.o" --omf_browse ".\Output\stm32f10x_fsmc.crf" --depend ".\Output\stm32f10x_fsmc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_fsmc.o" --omf_browse ".\Output\stm32f10x_fsmc.crf" --depend ".\Output\stm32f10x_fsmc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -340,10 +340,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_gpio.o" --omf_browse ".\Output\stm32f10x_gpio.crf" --depend ".\Output\stm32f10x_gpio.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_gpio.o" --omf_browse ".\Output\stm32f10x_gpio.crf" --depend ".\Output\stm32f10x_gpio.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -358,10 +358,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_i2c.o" --omf_browse ".\Output\stm32f10x_i2c.crf" --depend ".\Output\stm32f10x_i2c.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_i2c.o" --omf_browse ".\Output\stm32f10x_i2c.crf" --depend ".\Output\stm32f10x_i2c.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -377,10 +377,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_iwdg.o" --omf_browse ".\Output\stm32f10x_iwdg.crf" --depend ".\Output\stm32f10x_iwdg.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_iwdg.o" --omf_browse ".\Output\stm32f10x_iwdg.crf" --depend ".\Output\stm32f10x_iwdg.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -395,10 +395,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_pwr.o" --omf_browse ".\Output\stm32f10x_pwr.crf" --depend ".\Output\stm32f10x_pwr.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_pwr.o" --omf_browse ".\Output\stm32f10x_pwr.crf" --depend ".\Output\stm32f10x_pwr.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -414,10 +414,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rcc.o" --omf_browse ".\Output\stm32f10x_rcc.crf" --depend ".\Output\stm32f10x_rcc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rcc.o" --omf_browse ".\Output\stm32f10x_rcc.crf" --depend ".\Output\stm32f10x_rcc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -432,10 +432,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rtc.o" --omf_browse ".\Output\stm32f10x_rtc.crf" --depend ".\Output\stm32f10x_rtc.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rtc.o" --omf_browse ".\Output\stm32f10x_rtc.crf" --depend ".\Output\stm32f10x_rtc.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -451,10 +451,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_sdio.o" --omf_browse ".\Output\stm32f10x_sdio.crf" --depend ".\Output\stm32f10x_sdio.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_sdio.o" --omf_browse ".\Output\stm32f10x_sdio.crf" --depend ".\Output\stm32f10x_sdio.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -470,10 +470,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_spi.o" --omf_browse ".\Output\stm32f10x_spi.crf" --depend ".\Output\stm32f10x_spi.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_spi.o" --omf_browse ".\Output\stm32f10x_spi.crf" --depend ".\Output\stm32f10x_spi.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h)(0x545CB527) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -489,10 +489,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_tim.o" --omf_browse ".\Output\stm32f10x_tim.crf" --depend ".\Output\stm32f10x_tim.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c)(0x545CB529)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_tim.o" --omf_browse ".\Output\stm32f10x_tim.crf" --depend ".\Output\stm32f10x_tim.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -507,10 +507,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_usart.o" --omf_browse ".\Output\stm32f10x_usart.crf" --depend ".\Output\stm32f10x_usart.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_usart.o" --omf_browse ".\Output\stm32f10x_usart.crf" --depend ".\Output\stm32f10x_usart.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -525,10 +525,10 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_wwdg.o" --omf_browse ".\Output\stm32f10x_wwdg.crf" --depend ".\Output\stm32f10x_wwdg.d") +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c)(0x545CB528)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_wwdg.o" --omf_browse ".\Output\stm32f10x_wwdg.crf" --depend ".\Output\stm32f10x_wwdg.d") I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) @@ -543,9 +543,9 @@ I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) -F (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\system_stm32f10x.o" --omf_browse ".\Output\system_stm32f10x.crf" --depend ".\Output\system_stm32f10x.d") +F (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c)(0x545CB527)(-c --cpu Cortex-M3 -D__MICROLIB -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\system_stm32f10x.o" --omf_browse ".\Output\system_stm32f10x.crf" --depend ".\Output\system_stm32f10x.d") I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) -I (C:\Program Files\Keil\ARM\RV31\INC\core_cm3.h)(0x4BDE8684) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) I (..\app\inc\stm32f10x_conf.h)(0x545CB528) diff --git a/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvopt.bak b/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvopt.bak index e0ed5bf..9abae42 100644 --- a/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvopt.bak +++ b/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvopt.bak @@ -199,10 +199,10 @@ 1 0 0 - 55 + 34 0 1 - 5 + 1 0 ..\APP\src\app.c app.c @@ -279,7 +279,7 @@ 0 3 - 0 + 6 1 0 0 @@ -288,12 +288,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash.c - flash.c + ..\..\..\..\easyflash\src\easyflash.c + easyflash.c 3 - 0 + 7 1 0 0 @@ -302,12 +302,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env.c - flash_env.c + ..\..\..\..\easyflash\src\env.c + env.c 3 - 0 + 8 1 0 0 @@ -316,12 +316,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env_wl.c - flash_env_wl.c + ..\..\..\..\easyflash\src\env_wl.c + env_wl.c 3 - 0 + 9 1 0 0 @@ -330,8 +330,8 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_iap.c - flash_iap.c + ..\..\..\..\easyflash\src\iap.c + iap.c 3 @@ -344,8 +344,8 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_utils.c - flash_utils.c + ..\..\..\..\easyflash\src\ef_utils.c + ef_utils.c 3 @@ -358,8 +358,8 @@ 0 0 0 - ..\components\easyflash\port\flash_port.c - flash_port.c + ..\components\easyflash\port\ef_port.c + ef_port.c @@ -761,7 +761,7 @@ 16 - B50000006600000027040000F1000000 + 6F01000020010000E1040000AB010000 @@ -2626,14 +2626,14 @@ 2569 - 000000000D000000000000000040000000000000FFFFFFFFFFFFFFFF260400004F0000002A040000000300000000000002000000040000000100000000000000000000000000000000000000000000000100000077940000000000000000000000000000000000000000000001000000779400000100000077940000000000000020000000000000FFFFFFFFFFFFFFFFB5000000DA00000027040000DE000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000B50000006600000027040000F1000000B50000004F00000027040000DA0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF270400004F0000002B040000A8020000000000000200000004000000010000000000000000000000FFFFFFFF16000000E20500002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C0000018000400000000000002B04000066000000DC040000BF0200002B0400004F000000DC040000A80200000000000040410046160000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFE20000004F000000E6000000FF02000001000000020000100400000001000000E1FEFFFF0E020000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000E200000016030000000000004F000000E2000000FF0200000000000040140056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000005020000DC0400000902000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0900000098070000E30500008F0700009007000091070000B9050000BA050000BB050000BC050000018000800000000000000000000020020000DC040000BF0200000000000009020000DC040000A80200000000000040820046090000000A43616C6C20537461636B000000009807000001000000FFFFFFFFFFFFFFFF0A43616C6C20537461636B00000000E305000001000000FFFFFFFFFFFFFFFF064C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF6E0200000902000072020000A802000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF9807000001000000FFFFFFFF9807000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000FF0200009006000003030000010000000100001004000000010000005DFEFFFF36010000FFFFFFFF06000000C5000000C70000009307000094070000950700009607000001800080000001000000000000001A03000090060000DF030000000000000303000090060000C80300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000D000000000000000040000000000000FFFFFFFFFFFFFFFF260400004F0000002A040000000300000000000002000000040000000100000000000000000000000000000000000000000000000100000077940000000000000000000000000000000000000000000001000000779400000100000077940000000000000020000000000000FFFFFFFFFFFFFFFFB5000000DA00000027040000DE000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E6500200000000000006F01000020010000E1040000AB010000B50000004F00000027040000DA0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF270400004F0000002B040000A8020000000000000200000004000000010000000000000000000000FFFFFFFF16000000E20500002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000E50400002001000096050000790300002B0400004F000000DC040000A80200000000000040410046160000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFE20000004F000000E6000000FF02000001000000020000100400000001000000E1FEFFFF0E020000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000BA000000200100009C010000D0030000000000004F000000E2000000FF0200000000000040140056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000005020000DC0400000902000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0900000098070000E30500008F0700009007000091070000B9050000BA050000BB050000BC05000001800080000000000000BA000000DA02000096050000790300000000000009020000DC040000A80200000000000040820046090000000A43616C6C20537461636B000000009807000001000000FFFFFFFFFFFFFFFF0A43616C6C20537461636B00000000E305000001000000FFFFFFFFFFFFFFFF064C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF6E0200000902000072020000A802000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF9807000001000000FFFFFFFF9807000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000FF0200009006000003030000010000000100001004000000010000005DFEFFFF36010000FFFFFFFF06000000C5000000C70000009307000094070000950700009607000001800080000001000000BA000000D40300004A07000099040000000000000303000090060000C80300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File 2002 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000004000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020004001100000000000000000000000000000000010000000100000001800A810000000004001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -2665,7 +2665,7 @@ Debug 2582 - 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473010000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 + 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473000000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 968 @@ -4194,7 +4194,7 @@ File 2002 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000004000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020005001100000000000000000000000000000000010000000100000001800A810000000004001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020003001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000020001001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020003001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -4226,7 +4226,7 @@ Debug 2582 - 00200000010000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000004002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000004002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000004002800000000000000000000000000000000010000000100000001801B80000000000400290000000000000000000000000000000001000000010000000180E57F0000000004002A00000000000000000000000000000000010000000100000001801C800000000004002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000004002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020000002D0000000000000000000000000000000001000000010000000180F07F0000020000002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020000002F0000000000000000000000000000000001000000010000000180BB8A00000200000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000002000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000020000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000020000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000004004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473010000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 + 00200000010000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000004002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000004002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000004002800000000000000000000000000000000010000000100000001801B80000000000400290000000000000000000000000000000001000000010000000180E57F0000000004002A00000000000000000000000000000000010000000100000001801C800000000004002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000004002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020000002D0000000000000000000000000000000001000000010000000180F07F0000020000002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020000002F0000000000000000000000000000000001000000010000000180BB8A00000200000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000002000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000020000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000020000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000004004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473000000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 968 @@ -4254,9 +4254,9 @@ ..\APP\src\app.c - 55 + 34 1 - 5 + 1 diff --git a/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvproj.bak b/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvproj.bak index 0cc05c8..985984c 100644 --- a/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvproj.bak +++ b/demo/stm32f10x/non_os/RVMDK/EasyFlash_uvproj.bak @@ -345,7 +345,7 @@ USE_STDPERIPH_DRIVER,STM32F10X_HD,USE_FULL_ASSERT - ..\app\inc;..\components\rtt_uart;..\components\others;..\Libraries\STM32F10x_StdPeriph_Driver\inc;..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x;..\..\..\..\flash\inc + ..\app\inc;..\components\rtt_uart;..\components\others;..\Libraries\STM32F10x_StdPeriph_Driver\inc;..\Libraries\CMSIS_RVMDK\CM3\CoreSupport;..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x;..\..\..\..\easyflash\inc @@ -421,34 +421,34 @@ easyflash - flash_port.c + easyflash.c 1 - ..\components\flash\port\flash_port.c + ..\..\..\..\easyflash\src\easyflash.c - flash.c + env.c 1 - ..\..\..\..\flash\src\flash.c + ..\..\..\..\easyflash\src\env.c - flash_env.c + env_wl.c 1 - ..\..\..\..\flash\src\flash_env.c + ..\..\..\..\easyflash\src\env_wl.c - flash_env_wl.c + iap.c 1 - ..\..\..\..\flash\src\flash_env_wl.c + ..\..\..\..\easyflash\src\iap.c - flash_iap.c + ef_utils.c 1 - ..\..\..\..\flash\src\flash_iap.c + ..\..\..\..\easyflash\src\ef_utils.c - flash_utils.c + ef_port.c 1 - ..\..\..\..\flash\src\flash_utils.c + ..\components\easyflash\port\ef_port.c diff --git a/demo/stm32f10x/non_os/app/src/app.c b/demo/stm32f10x/non_os/app/src/app.c index b30d483..43b506b 100644 --- a/demo/stm32f10x/non_os/app/src/app.c +++ b/demo/stm32f10x/non_os/app/src/app.c @@ -1,5 +1,5 @@ #include "bsp.h" -#include "flash.h" +#include "easyflash.h" #include #include @@ -9,7 +9,7 @@ int main(void){ BSP_Init(); - if (flash_init() == FLASH_NO_ERR) { + if (easyflash_init() == EF_NO_ERR) { /* test Env demo */ test_env(); } @@ -32,7 +32,7 @@ static void test_env(void) { char *c_old_boot_times, c_new_boot_times[11] = {0}; /* get the boot count number from Env */ - c_old_boot_times = flash_get_env("boot_times"); + c_old_boot_times = ef_get_env("boot_times"); assert_param(c_old_boot_times); i_boot_times = atol(c_old_boot_times); /* boot count +1 */ @@ -41,6 +41,6 @@ static void test_env(void) { /* interger to string */ sprintf(c_new_boot_times,"%ld", i_boot_times); /* set and store the boot count number to Env */ - flash_set_env("boot_times", c_new_boot_times); - flash_save_env(); + ef_set_env("boot_times", c_new_boot_times); + ef_save_env(); } diff --git a/demo/stm32f10x/non_os/components/easyflash/port/flash_port.c b/demo/stm32f10x/non_os/components/easyflash/port/ef_port.c similarity index 74% rename from demo/stm32f10x/non_os/components/easyflash/port/flash_port.c rename to demo/stm32f10x/non_os/components/easyflash/port/ef_port.c index 364ac14..160db1c 100644 --- a/demo/stm32f10x/non_os/components/easyflash/port/flash_port.c +++ b/demo/stm32f10x/non_os/components/easyflash/port/ef_port.c @@ -26,7 +26,7 @@ * Created on: 2015-01-16 */ -#include "flash.h" +#include "easyflash.h" #include #include #include @@ -40,21 +40,21 @@ #endif /* Environment variables start address */ -#define FLASH_ENV_START_ADDR (FLASH_BASE + 100 * 1024) /* from the chip position: 100KB */ +#define ENV_START_ADDR (FLASH_BASE + 100 * 1024) /* from the chip position: 100KB */ /* the minimum size of flash erasure */ -#define FLASH_ERASE_MIN_SIZE PAGE_SIZE /* it is one page for STM32 */ -#ifdef FLASH_ENV_USING_WEAR_LEVELING_MODE +#define ERASE_MIN_SIZE PAGE_SIZE /* it is one page for STM32 */ +#ifdef EF_ENV_USING_WL_MODE /* ENV section total bytes size in wear leveling mode. */ -#define FLASH_ENV_SECTION_SIZE (4 * FLASH_ERASE_MIN_SIZE)/* 8K */ +#define ENV_SECTION_SIZE (4 * ERASE_MIN_SIZE) /* 8K */ #else /* ENV section total bytes size in normal mode. It's equal with FLASH_USER_SETTING_ENV_SIZE */ -#define FLASH_ENV_SECTION_SIZE (FLASH_USER_SETTING_ENV_SIZE) +#define ENV_SECTION_SIZE (EF_USER_SETTING_ENV_SIZE) #endif /* print debug information of flash */ -#define FLASH_PRINT_DEBUG +#define PRINT_DEBUG /* default environment variables set for user */ -static const flash_env default_env_set[] = { +static const ef_env default_env_set[] = { {"iap_need_copy_app","0"}, {"iap_copy_app_size","0"}, {"stop_in_bootloader","0"}, @@ -76,18 +76,18 @@ static char log_buf[128]; * * @return result */ -FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, - flash_env const **default_env, size_t *default_env_size, size_t *log_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, + ef_env const **default_env, size_t *default_env_size, size_t *log_size) { + EfErrCode result = EF_NO_ERR; + + EF_ASSERT(EF_USER_SETTING_ENV_SIZE % 4 == 0); + EF_ASSERT(ENV_SECTION_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_ENV_SECTION_SIZE % 4 == 0); - - *env_addr = FLASH_ENV_START_ADDR; - *env_total_size = FLASH_ENV_SECTION_SIZE; - *erase_min_size = FLASH_ERASE_MIN_SIZE; + *env_addr = ENV_START_ADDR; + *env_total_size = ENV_SECTION_SIZE; + *erase_min_size = ERASE_MIN_SIZE; *default_env = default_env_set; - *default_env_size = sizeof(default_env_set)/sizeof(default_env_set[0]); + *default_env_size = sizeof(default_env_set) / sizeof(default_env_set[0]); return result; } @@ -102,10 +102,10 @@ FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t * * @return result */ -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(size % 4 == 0); + EF_ASSERT(size % 4 == 0); /*copy from flash to ram */ for (; size > 0; size -= 4, addr += 4, buf++) { @@ -125,13 +125,13 @@ FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { * * @return result */ -FlashErrCode flash_erase(uint32_t addr, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_erase(uint32_t addr, size_t size) { + EfErrCode result = EF_NO_ERR; FLASH_Status flash_status; size_t erase_pages, i; /* make sure the start address is a multiple of FLASH_ERASE_MIN_SIZE */ - FLASH_ASSERT(addr % FLASH_ERASE_MIN_SIZE == 0); + EF_ASSERT(addr % ERASE_MIN_SIZE == 0); /* calculate pages */ erase_pages = size / PAGE_SIZE; @@ -145,7 +145,7 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { for (i = 0; i < erase_pages; i++) { flash_status = FLASH_ErasePage(addr + (PAGE_SIZE * i)); if (flash_status != FLASH_COMPLETE) { - result = FLASH_ERASE_ERR; + result = EF_ERASE_ERR; break; } } @@ -164,12 +164,12 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { * * @return result */ -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; size_t i; uint32_t read_data; - - FLASH_ASSERT(size % 4 == 0); + + EF_ASSERT(size % 4 == 0); FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_BSY | FLASH_FLAG_EOP | FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR); @@ -179,7 +179,7 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { read_data = *(uint32_t *)addr; /* check data */ if (read_data != *buf) { - result = FLASH_WRITE_ERR; + result = EF_WRITE_ERR; break; } } @@ -191,14 +191,14 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { /** * lock the ENV ram cache */ -void flash_env_lock(void) { +void ef_port_env_lock(void) { __disable_irq(); } /** * unlock the ENV ram cache */ -void flash_env_unlock(void) { +void ef_port_env_unlock(void) { __enable_irq(); } @@ -212,18 +212,18 @@ void flash_env_unlock(void) { * @param ... args * */ -void flash_log_debug(const char *file, const long line, const char *format, ...) { +void ef_log_debug(const char *file, const long line, const char *format, ...) { -#ifdef FLASH_PRINT_DEBUG +#ifdef PRINT_DEBUG va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash](%s:%ld) ", file, line); + ef_print("[Flash](%s:%ld) ", file, line); /* must use vprintf to print */ vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); printf("\r"); va_end(args); @@ -237,15 +237,15 @@ void flash_log_debug(const char *file, const long line, const char *format, ...) * @param format output format * @param ... args */ -void flash_log_info(const char *format, ...) { +void ef_log_info(const char *format, ...) { va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash]"); + ef_print("[Flash]"); /* must use vprintf to print */ vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); printf("\r"); va_end(args); } @@ -255,7 +255,7 @@ void flash_log_info(const char *format, ...) { * @param format output format * @param ... args */ -void flash_print(const char *format, ...) { +void ef_print(const char *format, ...) { va_list args; /* args point to the first variable parameter */ diff --git a/demo/stm32f10x/rtt/EWARM/EasyFlash.dep b/demo/stm32f10x/rtt/EWARM/EasyFlash.dep index 970d66d..0276345 100644 --- a/demo/stm32f10x/rtt/EWARM/EasyFlash.dep +++ b/demo/stm32f10x/rtt/EWARM/EasyFlash.dep @@ -2,984 +2,1235 @@ 2 - 3533578524 + 3678892060 stm32f103xE $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c - $PROJ_DIR$\..\app\src\stm32f10x_it.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c - $PROJ_DIR$\..\components\others\bsp.c - $PROJ_DIR$\..\app\src\user_finsh_cmd.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c - $PROJ_DIR$\..\components\easyflash\port\flash_port.c - $PROJ_DIR$\..\components\rtt_uart\usart.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c - $PROJ_DIR$\..\app\src\app.c - $PROJ_DIR$\..\components\others\utils.c - $PROJ_DIR$\..\app\src\app_task.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c - $PROJ_DIR$\..\app\inc\rtconfig.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.o - $PROJ_DIR$\stm32f103xE\Obj\pipe.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.o - $PROJ_DIR$\stm32f103xE\Obj\flash_utils.o - $PROJ_DIR$\stm32f103xE\Obj\serial.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_heap.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_compiler.o - $PROJ_DIR$\stm32f103xE\Obj\flash_iap.o - $PROJ_DIR$\stm32f103xE\Obj\cmd.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_init.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.o - $PROJ_DIR$\stm32f103xE\Obj\dataqueue.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.o - $PROJ_DIR$\stm32f103xE\Obj\wrokqueue.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.o - $PROJ_DIR$\stm32f103xE\Obj\ringbuffer.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.o - $PROJ_DIR$\stm32f103xE\Obj\completion.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.o - $PROJ_DIR$\stm32f103xE\Obj\portal.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.o - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\cpuport.c - $PROJ_DIR$\stm32f103xE\Obj\finsh_error.o + $PROJ_DIR$\..\app\src\user_finsh_cmd.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env.c + $PROJ_DIR$\..\app\src\app_task.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env_wl.c + $PROJ_DIR$\..\..\..\..\easyflash\src\iap.c + $PROJ_DIR$\..\app\src\stm32f10x_it.c + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + $PROJ_DIR$\..\components\others\utils.c + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c + $PROJ_DIR$\..\components\others\bsp.c + $PROJ_DIR$\..\app\src\app.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c + $PROJ_DIR$\..\components\rtt_uart\usart.c + $PROJ_DIR$\..\app\inc\rtconfig.h + $PROJ_DIR$\..\components\easyflash\port\ef_port.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\context_iar.S + $PROJ_DIR$\stm32f103xE\Obj\device.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_node.pbi + $PROJ_DIR$\..\components\easyflash\port\port.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c + $PROJ_DIR$\..\..\..\..\easyflash\src\utils.c + $PROJ_DIR$\stm32f103xE\Obj\finsh_heap.pbi + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\context_iar.S - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.o - $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c + $PROJ_DIR$\stm32f103xE\Obj\ipc.pbi + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out + $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c - $PROJ_DIR$\stm32f103xE\Obj\ipc.o - $PROJ_DIR$\stm32f103xE\Obj\kservice.o - $PROJ_DIR$\stm32f103xE\Obj\device.o - $PROJ_DIR$\stm32f103xE\Obj\mem.o - $PROJ_DIR$\stm32f103xE\Obj\memheap.o - $PROJ_DIR$\stm32f103xE\Obj\object.o - $PROJ_DIR$\stm32f103xE\Obj\app_task.o - $PROJ_DIR$\stm32f103xE\Obj\bsp.o - $PROJ_DIR$\stm32f103xE\Obj\user_finsh_cmd.o - $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_node.o - $PROJ_DIR$\stm32f103xE\Obj\utils.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.o - $PROJ_DIR$\stm32f103xE\Obj\shell.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.o - $PROJ_DIR$\stm32f103xE\Obj\usart.o - $PROJ_DIR$\stm32f103xE\Obj\misc.o - $PROJ_DIR$\stm32f103xE\Obj\flash_env.o - $PROJ_DIR$\stm32f103xE\Obj\msh.o - $PROJ_DIR$\stm32f103xE\Obj\thread.o - $PROJ_DIR$\stm32f103xE\Obj\app.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_var.o - $PROJ_DIR$\stm32f103xE\Obj\symbol.o - $PROJ_DIR$\stm32f103xE\Obj\msh_cmd.o - $PROJ_DIR$\stm32f103xE\Obj\clock.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.o - $PROJ_DIR$\stm32f103xE\Obj\idle.o - $PROJ_DIR$\stm32f103xE\Obj\flash.o - $PROJ_DIR$\stm32f103xE\Obj\slab.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_vm.o - $PROJ_DIR$\stm32f103xE\Obj\flash_port.o - $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.o - $PROJ_DIR$\stm32f103xE\Obj\flash_utils.pbi - $PROJ_DIR$\stm32f103xE\Obj\scheduler.o - $PROJ_DIR$\stm32f103xE\Obj\finsh_token.o - $PROJ_DIR$\stm32f103xE\Obj\cpuusage.o + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\cpuport.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.pbi + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.bin + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.pbi $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.pbi - $PROJ_DIR$\stm32f103xE\Obj\app_task.pbi - $PROJ_DIR$\stm32f103xE\Obj\timer.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.pbi - $PROJ_DIR$\stm32f103xE\Obj\bsp.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash.pbi - $PROJ_DIR$\stm32f103xE\Obj\startup_stm32f10x_hd.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.pbi - $PROJ_DIR$\stm32f103xE\Obj\cpuport.o - $PROJ_DIR$\stm32f103xE\Obj\module.o - $PROJ_DIR$\stm32f103xE\Obj\mempool.o - $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_port.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_parser.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_token.o + $PROJ_DIR$\stm32f103xE\Obj\EasyFlash.pbd + $PROJ_DIR$\stm32f103xE\Obj\cpuport.pbi + $PROJ_DIR$\stm32f103xE\Obj\misc.pbi + $PROJ_DIR$\stm32f103xE\Obj\irq.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.pbi + $PROJ_DIR$\stm32f103xE\Obj\mempool.pbi + $PROJ_DIR$\stm32f103xE\Obj\idle.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.pbi + $PROJ_DIR$\stm32f103xE\Obj\slab.pbi $PROJ_DIR$\stm32f103xE\Obj\finsh_ops.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_parser.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.pbi - $PROJ_DIR$\stm32f103xE\Obj\context_iar.o - $PROJ_DIR$\stm32f103xE\Obj\flash_env.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash_iap.pbi - $PROJ_DIR$\stm32f103xE\Obj\irq.o - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.pbi - $PROJ_DIR$\stm32f103xE\Obj\user_finsh_cmd.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.pbi - $PROJ_DIR$\stm32f103xE\Obj\memheap.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.pbi - $PROJ_DIR$\stm32f103xE\Obj\module.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_compiler.pbi - $PROJ_DIR$\stm32f103xE\Obj\ipc.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_error.pbi - $PROJ_DIR$\stm32f103xE\Obj\clock.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_var.pbi + $PROJ_DIR$\stm32f103xE\Obj\cpuusage.pbi + $PROJ_DIR$\stm32f103xE\Obj\shell.pbi + $PROJ_DIR$\stm32f103xE\Obj\utils.pbi $PROJ_DIR$\stm32f103xE\Obj\serial.pbi - $PROJ_DIR$\stm32f103xE\Obj\wrokqueue.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.pbi - $PROJ_DIR$\stm32f103xE\Obj\thread.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.pbi - $PROJ_DIR$\stm32f103xE\Obj\pipe.pbi - $PROJ_DIR$\stm32f103xE\Obj\timer.pbi - $PROJ_DIR$\stm32f103xE\Obj\mem.pbi - $PROJ_DIR$\stm32f103xE\Obj\cmd.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_vm.pbi - $PROJ_DIR$\stm32f103xE\Obj\msh.pbi - $PROJ_DIR$\stm32f103xE\Obj\ringbuffer.pbi - $PROJ_DIR$\stm32f103xE\Obj\portal.pbi - $PROJ_DIR$\stm32f103xE\Obj\device.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.pbi - $PROJ_DIR$\stm32f103xE\Obj\completion.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.pbi - $PROJ_DIR$\stm32f103xE\Obj\symbol.pbi - $PROJ_DIR$\stm32f103xE\Obj\object.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_heap.pbi - $PROJ_DIR$\stm32f103xE\Obj\scheduler.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_init.pbi - $PROJ_DIR$\stm32f103xE\Obj\idle.pbi - $PROJ_DIR$\stm32f103xE\Obj\kservice.pbi - $PROJ_DIR$\stm32f103xE\Obj\utils.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.pbi - $PROJ_DIR$\stm32f103xE\Obj\irq.pbi - $PROJ_DIR$\stm32f103xE\Obj\EasyFlash.pbd $PROJ_DIR$\stm32f103xE\Obj\app.pbi - $PROJ_DIR$\stm32f103xE\Obj\shell.pbi - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.bin - $PROJ_DIR$\stm32f103xE\Obj\finsh_var.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_ops.pbi $PROJ_DIR$\stm32f103xE\Obj\finsh_token.pbi - $PROJ_DIR$\stm32f103xE\Obj\mempool.pbi - $PROJ_DIR$\stm32f103xE\Obj\slab.pbi - $PROJ_DIR$\stm32f103xE\Obj\flash_port.pbi - $PROJ_DIR$\stm32f103xE\Obj\finsh_node.pbi - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.pbi - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out - $PROJ_DIR$\stm32f103xE\Obj\finsh_parser.pbi - $PROJ_DIR$\stm32f103xE\Obj\cpuusage.pbi - $PROJ_DIR$\stm32f103xE\Obj\cpuport.pbi - $PROJ_DIR$\stm32f103xE\Obj\misc.pbi - $PROJ_DIR$\stm32f103xE\Obj\usart.pbi - $PROJ_DIR$\stm32f103xE\Obj\msh_cmd.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_init.pbi + $PROJ_DIR$\stm32f103xE\Obj\object.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.o + $PROJ_DIR$\stm32f103xE\Obj\finsh_error.o + $PROJ_DIR$\stm32f103xE\Obj\finsh_compiler.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.o + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.o + $PROJ_DIR$\stm32f103xE\Obj\ringbuffer.o + $PROJ_DIR$\stm32f103xE\Obj\flash_iap.o + $PROJ_DIR$\..\app\inc\app_task.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.o + $PROJ_DIR$\stm32f103xE\Obj\utils.o + $PROJ_DIR$\stm32f103xE\Obj\completion.o + $PROJ_DIR$\stm32f103xE\Obj\wrokqueue.o + $PROJ_DIR$\stm32f103xE\Obj\dataqueue.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_bkp.o + $PROJ_DIR$\stm32f103xE\Obj\cmd.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dma.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.o + $PROJ_DIR$\stm32f103xE\Obj\finsh_init.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_fsmc.pbi + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h + $PROJ_DIR$\stm32f103xE\Obj\portal.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.o + $PROJ_DIR$\..\components\others\utils.h + $PROJ_DIR$\stm32f103xE\Obj\cmd.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h + $PROJ_DIR$\stm32f103xE\Obj\kservice.pbi $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h $TOOLKIT_DIR$\inc\c\cmsis_iar.h + $PROJ_DIR$\stm32f103xE\Obj\finsh_ops.pbi $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cm3.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\app\inc\stm32f10x_conf.h + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmInstr.h + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmFunc.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h + $PROJ_DIR$\stm32f103xE\Obj\dataqueue.pbi $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtservice.h - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.pbi - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h - $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtm.h - $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmFunc.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.pbi $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h + $PROJ_DIR$\stm32f103xE\Obj\context_iar.o + $PROJ_DIR$\stm32f103xE\Obj\scheduler.pbi + $TOOLKIT_DIR$\inc\c\intrinsics.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rcc.pbi - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\Include\core_cmInstr.h - $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.pbi - $PROJ_DIR$\stm32f103xE\Obj\dataqueue.pbi + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtm.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_i2c.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_vm.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_iwdg.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_error.pbi + $PROJ_DIR$\stm32f103xE\Obj\memheap.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h + $PROJ_DIR$\stm32f103xE\Obj\usart.pbi + $PROJ_DIR$\stm32f103xE\Obj\port.pbi + $PROJ_DIR$\stm32f103xE\Obj\module.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_rtc.pbi + $PROJ_DIR$\..\app\inc\stm32f10x_conf.h + $PROJ_DIR$\stm32f103xE\Obj\completion.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.pbi + $PROJ_DIR$\stm32f103xE\Obj\portal.pbi + $PROJ_DIR$\stm32f103xE\Obj\symbol.pbi + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.pbi + $PROJ_DIR$\stm32f103xE\Obj\wrokqueue.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dbgmcu.pbi + $PROJ_DIR$\stm32f103xE\Obj\clock.pbi + $PROJ_DIR$\stm32f103xE\Obj\mem.pbi + $PROJ_DIR$\stm32f103xE\Obj\pipe.pbi + $PROJ_DIR$\stm32f103xE\Obj\finsh_compiler.pbi + $PROJ_DIR$\..\RT-Thread-1.2.2\include\cpuusage.h + $PROJ_DIR$\stm32f103xE\Obj\ringbuffer.pbi + $PROJ_DIR$\stm32f103xE\Obj\msh_cmd.pbi + $PROJ_DIR$\stm32f103xE\Obj\timer.pbi + $PROJ_DIR$\stm32f103xE\Obj\msh.pbi + $PROJ_DIR$\..\app\inc\delay_conf.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_usart.pbi + $PROJ_DIR$\stm32f103xE\Obj\thread.pbi + $TOOLKIT_DIR$\lib\shb_l.a + $TOOLKIT_DIR$\inc\c\xmtx.h $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_spi.pbi - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdebug.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdef.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\app\inc\app_task.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rthw.h - $TOOLKIT_DIR$\inc\c\yvals.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtthread.h - $TOOLKIT_DIR$\inc\c\stdbool.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $TOOLKIT_DIR$\inc\c\string.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\..\..\..\easyflash\inc\flash.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\..\components\others\bsp.h - $PROJ_DIR$\..\components\rtt_uart\usart.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\drivers\serial.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h - $PROJ_DIR$\..\components\others\utils.h $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h + $TOOLKIT_DIR$\inc\c\xtls.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.h + $TOOLKIT_DIR$\inc\c\xlocale.h $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_sdio.pbi $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.h + $PROJ_DIR$\stm32f103xE\List\EasyFlash.map + $TOOLKIT_DIR$\inc\c\wchar.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_tim.pbi $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.h $TOOLKIT_DIR$\lib\m7M_tl.a - $PROJ_DIR$\stm32f103xE\List\EasyFlash.map + $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.pbi + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.h + $TOOLKIT_DIR$\inc\c\xlocaleuse.h $TOOLKIT_DIR$\lib\dl7M_tln.a - $PROJ_DIR$\..\components\others\stm32f103xE.icf - $TOOLKIT_DIR$\lib\rt7M_tl.a - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh.h - $TOOLKIT_DIR$\inc\c\xlocale.h - $TOOLKIT_DIR$\inc\c\xlocale_c.h - $TOOLKIT_DIR$\inc\c\xlocaleuse.h - $TOOLKIT_DIR$\inc\c\xtls.h - $TOOLKIT_DIR$\inc\c\xmtx.h - $TOOLKIT_DIR$\inc\c\ctype.h - $TOOLKIT_DIR$\inc\c\wchar.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.h + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\stm32f103xE\Obj\cpuport.o + $TOOLKIT_DIR$\inc\c\ysizet.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdebug.h + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rthw.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtthread.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h + $PROJ_DIR$\stm32f103xE\Obj\usart.o + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h + $PROJ_DIR$\stm32f103xE\Obj\kservice.o + $PROJ_DIR$\stm32f103xE\Obj\memheap.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_adc.pbi + $PROJ_DIR$\stm32f103xE\Obj\shell.o + $PROJ_DIR$\stm32f103xE\Obj\app_task.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_utils.pbi + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\stm32f103xE\Obj\msh.o + $PROJ_DIR$\..\components\others\bsp.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h + $PROJ_DIR$\..\..\..\..\easyflash\inc\flash.h + $PROJ_DIR$\stm32f103xE\Obj\serial.o + $PROJ_DIR$\stm32f103xE\Obj\flash.o + $PROJ_DIR$\..\components\rtt_uart\usart.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\drivers\serial.h + $PROJ_DIR$\stm32f103xE\Obj\finsh_node.o + $PROJ_DIR$\stm32f103xE\Obj\idle.o $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.h + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.pbi + $TOOLKIT_DIR$\inc\c\ctype.h $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.h + $PROJ_DIR$\stm32f103xE\Obj\finsh_parser.o + $PROJ_DIR$\stm32f103xE\Obj\irq.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_flash.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash.pbi + $PROJ_DIR$\stm32f103xE\Obj\flash_iap.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.pbi + $PROJ_DIR$\stm32f103xE\Obj\mempool.o + $PROJ_DIR$\stm32f103xE\Obj\system_stm32f10x.o + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.h + $PROJ_DIR$\stm32f103xE\Obj\user_finsh_cmd.pbi + $PROJ_DIR$\..\components\others\stm32f103xE.icf + $PROJ_DIR$\stm32f103xE\Obj\module.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h + $PROJ_DIR$\stm32f103xE\Obj\bsp.pbi + $TOOLKIT_DIR$\inc\c\stdbool.h + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.pbi + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\stm32f103xE\Obj\finsh_vm.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h + $PROJ_DIR$\stm32f103xE\Obj\timer.o + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $PROJ_DIR$\stm32f103xE\Obj\scheduler.o + $PROJ_DIR$\stm32f103xE\Obj\pipe.o + $PROJ_DIR$\stm32f103xE\Obj\finsh_var.o + $PROJ_DIR$\stm32f103xE\Obj\finsh_heap.o + $PROJ_DIR$\stm32f103xE\Obj\flash_env.pbi + $PROJ_DIR$\stm32f103xE\Obj\bsp.o + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h + $PROJ_DIR$\stm32f103xE\Obj\thread.o + $PROJ_DIR$\stm32f103xE\Obj\user_finsh_cmd.o + $PROJ_DIR$\stm32f103xE\Obj\clock.o + $PROJ_DIR$\stm32f103xE\Obj\msh_cmd.o + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdef.h + $PROJ_DIR$\stm32f103xE\Obj\flash_env.o + $PROJ_DIR$\stm32f103xE\Obj\device.o + $PROJ_DIR$\stm32f103xE\Obj\object.o + $PROJ_DIR$\stm32f103xE\Obj\flash_env_wl.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_crc.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_gpio.o + $PROJ_DIR$\stm32f103xE\Obj\app_task.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_cec.o + $PROJ_DIR$\stm32f103xE\Obj\startup_stm32f10x_hd.o + $PROJ_DIR$\stm32f103xE\Obj\app.o + $PROJ_DIR$\stm32f103xE\Obj\symbol.o + $PROJ_DIR$\stm32f103xE\Obj\cpuusage.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_it.o + $PROJ_DIR$\stm32f103xE\Obj\flash_utils.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_can.o + $PROJ_DIR$\stm32f103xE\Obj\ipc.o + $PROJ_DIR$\stm32f103xE\Obj\slab.o + $PROJ_DIR$\stm32f103xE\Obj\misc.o + $PROJ_DIR$\stm32f103xE\Obj\mem.o + $PROJ_DIR$\stm32f103xE\Obj\flash_port.o + $PROJ_DIR$\stm32f103xE\Obj\env.o + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\stm32f103xE\Obj\iap.o + $PROJ_DIR$\stm32f103xE\Obj\env_wl.o + $PROJ_DIR$\stm32f103xE\Obj\easyflash.o + $PROJ_DIR$\stm32f103xE\Obj\ef_utils.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_utils.o + $PROJ_DIR$\stm32f103xE\Obj\ef_port.pbi + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_wwdg.o + $PROJ_DIR$\..\..\..\..\easyflash\inc\easyflash.h + $PROJ_DIR$\stm32f103xE\Obj\easyflash.pbi + $TOOLKIT_DIR$\inc\c\ystdio.h + $PROJ_DIR$\stm32f103xE\Obj\iap.pbi + $PROJ_DIR$\stm32f103xE\Obj\env_wl.pbi + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_pwr.o + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_exti.o + $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\stm32f103xE\Obj\stm32f10x_dac.o + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\stm32f103xE\Obj\ef_port.o + $PROJ_DIR$\stm32f103xE\Obj\env.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_env.o + $PROJ_DIR$\stm32f103xE\Obj\ef_env.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_iap.pbi + $PROJ_DIR$\stm32f103xE\Obj\ef_iap.o + $PROJ_DIR$\stm32f103xE\Obj\ef_env_wl.o + $PROJ_DIR$\stm32f103xE\Obj\ef_env_wl.pbi + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c + + + BICOMP + 61 + + + ICCARM + 260 + + + + + BICOMP + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 208 275 262 266 + + + + + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c + + + BICOMP + 149 + + + ICCARM + 103 + + + + + BICOMP + 223 216 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 262 + + + + + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c BICOMP - 222 + 110 ICCARM - 123 + 92 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 310 311 312 315 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 226 275 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c BICOMP - 218 + 72 ICCARM - 147 + 291 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 316 311 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 262 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c BICOMP - 217 + 111 ICCARM - 161 + 136 BICOMP - 309 313 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 312 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 208 216 262 214 275 266 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c + [ROOT_NODE] + + + ILINK + 79 217 + + + + + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c BICOMP - 201 + 185 ICCARM - 60 + 141 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 312 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c BICOMP - 203 + 86 ICCARM - 70 + 338 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 310 313 312 314 311 315 + 254 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - [ROOT_NODE] + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c - ILINK - 224 293 + BICOMP + 154 + + + ICCARM + 127 + + + BICOMP + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 237 + + - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c BICOMP - 209 + 220 ICCARM - 83 + 135 BICOMP - 285 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 156 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 170 138 145 - $PROJ_DIR$\..\app\src\stm32f10x_it.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c BICOMP - 152 + 183 ICCARM 125 + + + BICOMP + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 + + - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c BICOMP - 207 + 139 ICCARM - 57 + 128 BICOMP - 245 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 258 248 240 260 231 244 232 246 261 255 + 187 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 294 147 171 156 170 138 145 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c BICOMP - 223 + 172 ICCARM - 127 + 123 BICOMP - 287 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 221 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c BICOMP - 164 + 196 ICCARM - 138 + 120 BICOMP - 286 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 235 232 213 - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c BICOMP - 160 + 194 ICCARM - 144 + 115 BICOMP - 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 208 275 262 223 216 - $PROJ_DIR$\..\components\others\bsp.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c BICOMP - 153 + 181 ICCARM - 120 + 119 BICOMP - 279 236 257 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 245 258 248 240 260 231 244 232 246 261 255 269 272 27 262 263 265 238 242 280 + 263 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\app\src\user_finsh_cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c BICOMP - 170 + 91 ICCARM - 121 + 267 + + + + + BICOMP + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 226 208 275 214 262 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c + + + BICOMP + 184 + + + ICCARM + 332 + + + BICOMP + 138 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 145 + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c BICOMP - 210 + 88 ICCARM - 71 + 341 BICOMP - 288 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 222 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c BICOMP - 167 + 272 ICCARM - 68 + 339 BICOMP - 277 256 271 270 264 268 235 237 241 276 278 273 + 243 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c BICOMP - 221 + 97 ICCARM - 143 + 314 BICOMP - 277 256 271 270 264 268 235 237 241 276 278 273 269 272 27 262 263 265 238 242 236 257 259 234 251 233 243 247 250 245 258 248 240 260 231 244 232 246 261 255 + 153 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 243 164 187 294 147 171 156 170 138 145 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c + + + BICOMP + 168 ICCARM - 277 256 271 270 264 268 235 237 241 276 278 273 269 272 27 262 263 265 238 242 236 257 259 234 251 233 243 247 250 245 258 248 240 260 231 244 232 246 261 255 + 131 + + + + + BICOMP + 171 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 156 170 138 145 - $PROJ_DIR$\..\components\rtt_uart\usart.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c BICOMP - 229 + 98 ICCARM - 128 + 304 BICOMP - 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 280 269 272 27 262 263 265 238 242 279 282 281 + 279 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c BICOMP - 208 + 89 ICCARM - 122 + 134 BICOMP - 277 256 271 270 264 268 235 237 241 276 278 273 275 274 266 + 212 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 + + + + + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c + + + BICOMP + 193 ICCARM - 277 256 271 270 264 268 235 237 241 276 278 273 275 274 266 + 289 + + + + + BICOMP + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c BICOMP - 166 + 269 ICCARM - 130 + 137 BICOMP - 277 256 271 270 264 268 235 237 241 276 278 273 275 274 266 + 164 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 187 294 147 171 156 170 138 145 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c + + + BICOMP + 174 ICCARM - 277 256 271 270 264 268 235 237 241 276 278 273 275 274 266 + 116 + + + + + BICOMP + 147 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 171 156 170 138 145 - $PROJ_DIR$\..\app\src\app.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c BICOMP - 213 + 108 ICCARM - 133 + 256 BICOMP - 267 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 236 257 259 234 256 251 233 243 247 250 245 258 248 240 260 231 244 232 246 261 255 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 - $PROJ_DIR$\..\components\others\utils.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c BICOMP - 206 + 130 ICCARM - 124 + 144 BICOMP - 284 236 257 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 245 258 248 240 260 231 244 232 246 261 255 272 27 262 263 265 238 242 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 229 265 209 207 204 118 232 227 287 218 235 213 - $PROJ_DIR$\..\app\src\app_task.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c BICOMP - 150 + 175 ICCARM - 119 + 114 + + + BICOMP + 275 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 + + - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c BICOMP - 145 + 189 ICCARM - 58 + 126 BICOMP - 277 256 271 270 264 268 235 237 241 276 278 273 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 241 259 - $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c - AARM - 155 + BICOMP + 282 + + + ICCARM + 307 + + + BICOMP + 210 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 + + - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c BICOMP - 228 + 190 ICCARM - 129 + 142 BICOMP - 255 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 + 285 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c BICOMP - 154 + 188 ICCARM - 140 + 305 + + + BICOMP + 294 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 147 171 156 170 138 145 + + - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c BICOMP - 169 + 211 ICCARM - 81 + 133 BICOMP - 257 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 245 258 248 240 260 231 244 232 246 261 255 + 215 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c BICOMP - 181 + 205 + + + ICCARM + 132 + + + + + BICOMP + 177 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c + + + BICOMP + 101 + + + ICCARM + 129 + + + + + BICOMP + 206 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 + + + + + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c + + + BICOMP + 201 ICCARM - 75 + 117 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 + 170 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 138 145 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c + $PROJ_DIR$\..\app\src\user_finsh_cmd.c BICOMP - 197 + 276 ICCARM - 62 + 296 BICOMP - 240 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 260 231 244 232 246 261 255 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 182 161 250 150 162 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 333 230 232 281 229 265 209 207 204 118 227 287 218 235 213 + + + ICCARM + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 182 161 250 150 162 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 333 230 232 281 229 265 209 207 204 118 227 287 218 235 213 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env.c BICOMP - 171 + 344 ICCARM - 84 + 320 BICOMP - 289 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c + $PROJ_DIR$\..\app\src\app_task.c BICOMP - 149 + 248 ICCARM - 76 + 306 BICOMP - 290 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 122 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 182 161 250 150 162 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 118 232 324 335 253 258 333 230 281 229 265 209 207 204 227 287 218 235 213 158 200 195 143 + + + ICCARM + 122 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 182 161 250 150 162 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 118 232 324 335 253 258 333 230 281 229 265 209 207 204 227 287 218 235 213 158 200 195 143 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c + $PROJ_DIR$\..\..\..\..\easyflash\src\env_wl.c BICOMP - 198 + 337 ICCARM - 73 + 326 BICOMP - 283 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c + $PROJ_DIR$\..\..\..\..\easyflash\src\iap.c BICOMP - 194 + 336 ICCARM - 64 + 325 BICOMP - 291 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c + $PROJ_DIR$\..\app\src\stm32f10x_it.c BICOMP - 156 + 264 ICCARM - 61 + 312 - + + + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\startup\iar\startup_stm32f10x_hd.s + - BICOMP - 258 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 248 240 260 231 244 232 246 261 255 + AARM + 308 - + - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c + $PROJ_DIR$\..\components\others\utils.c BICOMP - 178 + 107 ICCARM - 88 + 124 BICOMP - 311 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 + 143 182 161 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 238 52 234 299 233 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c + $PROJ_DIR$\..\Libraries\CMSIS_EWARM\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c BICOMP @@ -987,564 +1238,581 @@ ICCARM - 163 + 274 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 316 310 311 314 312 + 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c BICOMP - 196 + 95 ICCARM - 63 + 317 BICOMP - 298 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 145 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c BICOMP - 174 + 334 ICCARM - 55 + 327 BICOMP - 260 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 231 244 232 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c + $PROJ_DIR$\..\components\others\bsp.c BICOMP - 162 + 280 ICCARM - 102 + 293 BICOMP - 248 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 240 260 231 244 232 246 261 255 + 253 182 161 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 237 238 52 234 299 233 157 169 258 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c + $PROJ_DIR$\..\app\src\app.c BICOMP - 249 + 109 ICCARM - 79 + 309 BICOMP - 244 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 232 246 261 255 + 122 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 182 161 250 150 162 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c BICOMP - 252 + 328 ICCARM - 78 + 329 BICOMP - 299 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c + $PROJ_DIR$\..\components\rtt_uart\usart.c BICOMP - 195 + 178 ICCARM - 82 + 240 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 + 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 161 153 243 164 187 294 147 171 156 170 138 145 258 237 238 52 234 299 233 157 169 253 241 259 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c BICOMP - 253 + 330 ICCARM - 72 + 343 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 269 + 333 162 242 236 251 239 159 155 283 230 232 281 237 238 52 234 299 233 157 169 182 161 250 150 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 237 238 52 234 299 233 157 169 182 161 250 150 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c + $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c BICOMP - 180 + 246 ICCARM - 59 + 113 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 + 161 250 150 162 242 236 251 239 159 155 283 151 148 167 152 140 182 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c BICOMP - 188 + 106 ICCARM - 69 + 247 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 301 307 302 305 306 266 278 304 303 308 275 274 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 229 265 209 207 204 118 232 227 287 218 235 213 158 160 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c BICOMP - 192 + 199 ICCARM - 85 + 252 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 + 160 238 52 234 299 233 242 236 251 239 159 155 283 157 169 229 265 209 207 204 118 232 227 287 218 235 213 158 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c BICOMP - 184 + 176 ICCARM - 66 + 245 BICOMP - 261 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 255 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c BICOMP - 185 + 166 ICCARM - 56 + 288 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\context_iar.S - BICOMP - 239 + AARM + 165 + + + + $PROJ_DIR$\..\components\easyflash\port\port.c + - ICCARM - 80 + BICOMP + 179 BICOMP - 232 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 246 261 255 + 333 162 242 236 251 239 159 155 283 230 232 281 324 335 118 233 182 161 250 150 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c BICOMP - 191 + 78 ICCARM - 77 + 315 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 282 281 275 278 274 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c BICOMP - 254 + 180 ICCARM - 74 + 278 BICOMP - 300 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 246 261 255 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c BICOMP - 182 + 197 ICCARM - 65 + 298 BICOMP - 231 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 244 232 246 261 255 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 229 265 209 207 204 118 232 227 287 218 235 213 160 - $PROJ_DIR$\..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c BICOMP - 173 + 96 ICCARM - 86 + 268 BICOMP - 246 259 234 256 271 270 264 268 235 237 241 251 233 243 247 250 236 257 245 258 248 240 260 231 244 232 261 255 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c BICOMP - 176 + 146 ICCARM - 67 + 244 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 310 311 312 309 313 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\cpuport.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c BICOMP - 227 + 192 ICCARM - 157 + 318 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 229 265 209 207 204 118 232 227 287 218 235 213 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c BICOMP - 230 + 105 ICCARM - 136 + 311 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 301 307 302 305 306 266 278 304 303 308 275 274 317 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c BICOMP - 204 + 99 ICCARM - 139 + 273 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c + $PROJ_DIR$\..\..\..\..\easyflash\src\utils.c BICOMP - 226 + 107 ICCARM - 148 + 124 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 333 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c BICOMP - 179 + 104 ICCARM - 137 + 290 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 262 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c BICOMP - 187 + 100 ICCARM - 116 + 261 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 301 307 302 305 306 266 278 304 303 308 275 274 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c BICOMP - 193 + 112 ICCARM - 115 + 302 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c BICOMP - 219 + 60 ICCARM - 159 + 301 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c BICOMP - 175 + 198 ICCARM - 158 + 286 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c + $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out - BICOMP - 214 + OBJCOPY + 87 - ICCARM - 126 + ILINK + 217 - BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 301 307 302 305 306 266 278 304 303 308 275 274 318 317 + ILINK + 277 309 306 293 297 144 125 165 231 311 127 301 327 345 349 348 343 329 115 114 291 136 260 103 267 92 290 284 261 315 268 244 318 245 273 317 278 252 298 302 289 141 120 288 256 247 316 308 113 129 314 307 304 341 142 134 339 137 128 305 123 312 116 338 131 119 133 132 135 117 332 310 274 295 286 240 296 124 126 203 219 224 228 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c BICOMP - 177 + 191 ICCARM - 113 + 297 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 @@ -1553,22 +1821,22 @@ BICOMP - 183 + 202 ICCARM - 132 + 295 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 237 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c BICOMP @@ -1576,231 +1844,255 @@ ICCARM - 151 + 310 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\context_iar.S + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c - AARM - 165 + BICOMP + 173 + + + ICCARM + 284 + + + BICOMP + 229 238 52 234 299 233 242 236 251 239 159 155 283 157 169 265 209 207 204 118 232 227 287 218 235 213 216 262 223 + + - $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\cpuport.c BICOMP - 220 + 94 ICCARM - 141 + 231 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c BICOMP - 190 + 102 ICCARM - 131 + 316 BICOMP - 317 272 27 262 263 265 271 270 264 268 235 237 241 238 242 301 307 302 305 306 266 278 304 303 308 275 274 318 + 237 238 52 234 299 233 242 236 251 239 159 155 283 157 169 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c BICOMP - 199 + 292 ICCARM - 135 + 300 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 + 255 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 255 162 242 236 251 239 159 155 283 230 232 281 235 213 118 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c + $PROJ_DIR$\..\components\easyflash\port\flash_port.c BICOMP - 211 + 90 ICCARM - 168 + 319 - BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + ICCARM + 255 162 242 236 251 239 159 155 283 230 232 281 237 238 52 234 299 233 157 169 182 161 250 150 151 148 167 152 140 153 243 164 187 294 147 171 156 170 138 145 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c BICOMP - 216 + 249 ICCARM - 134 + 313 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 312 + 255 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c BICOMP - 189 + 163 ICCARM - 142 + 303 BICOMP - 301 272 27 262 263 265 271 270 264 268 235 237 241 238 242 307 302 305 306 266 278 304 303 308 275 274 313 312 309 + 255 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 255 162 242 236 251 239 159 155 283 230 232 281 235 213 118 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c BICOMP - 205 + 270 ICCARM - 114 + 257 - - - BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 - - - $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c + $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c BICOMP - 172 + 271 ICCARM - 117 + 121 BICOMP - 269 272 27 262 263 265 271 270 264 268 235 237 241 238 242 + 255 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c BICOMP - 200 + 346 ICCARM - 118 + 345 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c BICOMP - 202 + 347 ICCARM - 146 + 348 BICOMP - 272 27 262 263 265 271 270 264 268 235 237 241 238 242 269 + 333 162 242 236 251 239 159 155 283 230 232 281 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 - $PROJ_DIR$\stm32f103xE\Exe\EasyFlash.out + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c - ILINK - 293 + BICOMP + 350 - OBJCOPY - 215 + ICCARM + 349 - ILINK - 295 133 119 120 137 69 82 165 157 148 72 115 67 88 60 70 123 161 163 147 134 142 140 130 122 68 143 58 139 113 168 114 116 117 159 129 158 131 136 118 56 85 77 146 59 126 141 155 81 83 57 138 127 71 84 76 61 102 62 55 64 125 65 73 79 63 78 74 80 86 66 135 144 132 151 128 121 124 75 297 296 292 294 + BICOMP + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 + + + ICCARM + 333 162 242 236 251 239 159 155 283 230 232 281 235 213 118 diff --git a/demo/stm32f10x/rtt/EWARM/EasyFlash.ewp b/demo/stm32f10x/rtt/EWARM/EasyFlash.ewp index bbcfa77..74536a8 100644 --- a/demo/stm32f10x/rtt/EWARM/EasyFlash.ewp +++ b/demo/stm32f10x/rtt/EWARM/EasyFlash.ewp @@ -955,25 +955,25 @@ port - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c src - $PROJ_DIR$\..\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\..\..\..\easyflash\src\easyflash.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_env_wl.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_iap.c - $PROJ_DIR$\..\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\..\..\..\easyflash\src\ef_utils.c diff --git a/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.dbgdt b/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.dbgdt index 33d398d..24fb0cc 100644 --- a/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.dbgdt +++ b/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.dbgdt @@ -34,7 +34,7 @@ 20011 - 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 + 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 diff --git a/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.wsdt b/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.wsdt index a8a3d80..4dee332 100644 --- a/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.wsdt +++ b/demo/stm32f10x/rtt/EWARM/settings/EasyFlash.wsdt @@ -35,14 +35,14 @@ - TextEditor$WS_DIR$\..\app\src\app_task.c00000020820800100000010000001 + TextEditor$WS_DIR$\..\app\src\app_task.c000000212100100000010000001 - iaridepm.enu1-2-2744314-2-25105130357152740188095771458-2-21781682-2-21684180100238118614330357152740 + iaridepm.enu1-2-2744314-2-25105130357152740188095771458-2-21781682-2-21684180100238118614330357152740 diff --git a/demo/stm32f10x/rtt/README.md b/demo/stm32f10x/rtt/README.md index d7ed567..8be061f 100644 --- a/demo/stm32f10x/rtt/README.md +++ b/demo/stm32f10x/rtt/README.md @@ -19,7 +19,7 @@ ## 2ļУ˵ -`components\easyflash\port\flash_port.c` ֲοļ +`components\easyflash\port\ef_port.c` ֲοļ `RVMDK` ΪKeilļ diff --git a/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvopt b/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvopt index ffabd6c..e6aa9f1 100644 --- a/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvopt +++ b/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvopt @@ -213,10 +213,10 @@ 1 0 0 - 60 + 101 0 1 - 20 + 1 0 ..\APP\src\app_task.c app_task.c @@ -391,7 +391,7 @@ 0 3 - 0 + 14 1 0 0 @@ -400,12 +400,12 @@ 0 0 0 - ..\components\easyflash\port\flash_port.c - flash_port.c + ..\..\..\..\easyflash\src\easyflash.c + easyflash.c 3 - 0 + 15 1 0 0 @@ -414,12 +414,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash.c - flash.c + ..\..\..\..\easyflash\src\ef_env.c + ef_env.c 3 - 0 + 16 1 0 0 @@ -428,12 +428,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env.c - flash_env.c + ..\..\..\..\easyflash\src\ef_env_wl.c + ef_env_wl.c 3 - 0 + 17 1 0 0 @@ -442,12 +442,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_env_wl.c - flash_env_wl.c + ..\..\..\..\easyflash\src\ef_iap.c + ef_iap.c 3 - 0 + 18 1 0 0 @@ -456,12 +456,12 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_iap.c - flash_iap.c + ..\..\..\..\easyflash\src\ef_utils.c + ef_utils.c 3 - 0 + 19 1 0 0 @@ -470,8 +470,8 @@ 0 0 0 - ..\..\..\..\easyflash\src\flash_utils.c - flash_utils.c + ..\components\easyflash\port\ef_port.c + ef_port.c @@ -1417,7 +1417,7 @@ 0 264 - 01000000040000000100000001000000010000000100000001000000FFFFFFFF0000000001000000010000000000000028000000280000000100000001000000000000000100000040443A5C50726F6772616D5C53544D33325C45617379466C6173685C64656D6F5C73746D3332663130785C7274745C4150505C7372635C6170705F7461736B2E63000000000A6170705F7461736B2E6300000000FFDC7800FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000100000002000000E6000000660000009006000016030000 + 01000000040000000100000001000000010000000100000001000000FFFFFFFF0000000001000000010000000000000028000000280000000100000001000000000000000100000040443A5C50726F6772616D5C53544D33325C45617379466C6173685C64656D6F5C73746D3332663130785C7274745C4150505C7372635C6170705F7461736B2E63000000000A6170705F7461736B2E6300000000C5D4F200FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000100000002000000E6000000660000009006000016030000 @@ -1440,7 +1440,7 @@ 16 - 5501000006010000C704000091010000 + B50000006600000027040000F1000000 @@ -3305,14 +3305,14 @@ 2569 - 000000000D000000000000000040000000000000FFFFFFFFFFFFFFFF260400004F0000002A040000000300000000000002000000040000000100000000000000000000000000000000000000000000000100000077940000000000000000000000000000000000000000000001000000779400000100000077940000000000000020000000000000FFFFFFFFFFFFFFFFB5000000DA00000027040000DE000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E6500200000000000005501000006010000C704000091010000B50000004F00000027040000DA0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF270400004F0000002B040000A8020000000000000200000004000000010000000000000000000000FFFFFFFF16000000E20500002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000CB040000060100007C0500005F0300002B0400004F000000DC040000A80200000000000040410046160000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFE20000004F000000E6000000FF02000001000000020000100400000001000000E1FEFFFF0E020000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000A00000000601000082010000B6030000000000004F000000E2000000FF0200000000000040140056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000005020000DC0400000902000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0900000098070000E30500008F0700009007000091070000B9050000BA050000BB050000BC05000001800080000000000000A0000000C00200007C0500005F0300000000000009020000DC040000A80200000000000040820046090000000A43616C6C20537461636B000000009807000001000000FFFFFFFFFFFFFFFF0A43616C6C20537461636B00000000E305000001000000FFFFFFFFFFFFFFFF064C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF6E0200000902000072020000A802000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF9807000001000000FFFFFFFF9807000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000FF0200009006000003030000010000000100001004000000010000005DFEFFFF36010000FFFFFFFF06000000C5000000C70000009307000094070000950700009607000001800080000001000000A0000000BA030000300700007F040000000000000303000090060000C80300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000D000000000000000040000000000000FFFFFFFFFFFFFFFF260400004F0000002A040000000300000000000002000000040000000100000000000000000000000000000000000000000000000100000077940000000000000000000000000000000000000000000001000000779400000100000077940000000000000020000000000000FFFFFFFFFFFFFFFFB5000000DA00000027040000DE000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000B50000006600000027040000F1000000B50000004F00000027040000DA0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF270400004F0000002B040000A8020000000000000200000004000000010000000000000000000000FFFFFFFF16000000E20500002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C0000018000400000000000002B04000066000000DC040000BF0200002B0400004F000000DC040000A80200000000000040410046160000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFE20000004F000000E6000000FF02000001000000020000100400000001000000E1FEFFFF0E020000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000E200000016030000000000004F000000E2000000FF0200000000000040140056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000005020000DC0400000902000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0900000098070000E30500008F0700009007000091070000B9050000BA050000BB050000BC050000018000800000000000000000000020020000DC040000BF0200000000000009020000DC040000A80200000000000040820046090000000A43616C6C20537461636B000000009807000001000000FFFFFFFFFFFFFFFF0A43616C6C20537461636B00000000E305000001000000FFFFFFFFFFFFFFFF064C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF6E0200000902000072020000A802000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF9807000001000000FFFFFFFF9807000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000FF0200009006000003030000010000000100001004000000010000005DFEFFFF36010000FFFFFFFF06000000C5000000C70000009307000094070000950700009607000001800080000001000000000000001A03000090060000DF030000000000000303000090060000C80300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File 2002 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000004000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000000004001100000000000000000000000000000000010000000100000001800A810000000004001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -3344,7 +3344,7 @@ Debug 2582 - 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473010000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 + 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473000000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 968 @@ -4933,9 +4933,9 @@ ..\APP\src\app_task.c - 60 + 101 1 - 20 + 1 diff --git a/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvproj b/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvproj index d7c639d..803420c 100644 --- a/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvproj +++ b/demo/stm32f10x/rtt/RVMDK/EasyFlash.uvproj @@ -461,34 +461,34 @@ easyflash - flash_port.c + easyflash.c 1 - ..\components\easyflash\port\flash_port.c + ..\..\..\..\easyflash\src\easyflash.c - flash.c + ef_env.c 1 - ..\..\..\..\easyflash\src\flash.c + ..\..\..\..\easyflash\src\ef_env.c - flash_env.c + ef_env_wl.c 1 - ..\..\..\..\easyflash\src\flash_env.c + ..\..\..\..\easyflash\src\ef_env_wl.c - flash_env_wl.c + ef_iap.c 1 - ..\..\..\..\easyflash\src\flash_env_wl.c + ..\..\..\..\easyflash\src\ef_iap.c - flash_iap.c + ef_utils.c 1 - ..\..\..\..\easyflash\src\flash_iap.c + ..\..\..\..\easyflash\src\ef_utils.c - flash_utils.c + ef_port.c 1 - ..\..\..\..\easyflash\src\flash_utils.c + ..\components\easyflash\port\ef_port.c diff --git a/demo/stm32f10x/rtt/RVMDK/EasyFlash_stm32f103xE.dep b/demo/stm32f10x/rtt/RVMDK/EasyFlash_stm32f103xE.dep new file mode 100644 index 0000000..4e88e32 --- /dev/null +++ b/demo/stm32f10x/rtt/RVMDK/EasyFlash_stm32f103xE.dep @@ -0,0 +1,1170 @@ +Dependencies for Project 'EasyFlash', Target 'stm32f103xE': (DO NOT MODIFY !) +F (..\APP\src\app.c)(0x54BE0FA9)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\app.o" --omf_browse ".\Output\app.crf" --depend ".\Output\app.d") +I (..\app\inc\app_task.h)(0x54C0D77F) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\APP\src\app_task.c)(0x5599ED2E)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\app_task.o" --omf_browse ".\Output\app_task.crf" --depend ".\Output\app_task.d") +I (..\app\inc\app_task.h)(0x54C0D77F) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\stdio.h)(0x4BA13B96) +I (..\components\others\bsp.h)(0x5530C8C2) +I (..\components\rtt_uart\usart.h)(0x54C0D275) +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\shell.h)(0x545CB528) +I (..\app\inc\delay_conf.h)(0x54C30EE8) +I (..\RT-Thread-1.2.2\include\cpuusage.h)(0x545CB529) +I (..\components\others\utils.h)(0x5530C8E2) +F (..\app\src\user_finsh_cmd.c)(0x5599F51F)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\user_finsh_cmd.o" --omf_browse ".\Output\user_finsh_cmd.crf" --depend ".\Output\user_finsh_cmd.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +F (..\APP\src\stm32f10x_it.c)(0x5530C492)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_it.o" --omf_browse ".\Output\stm32f10x_it.crf" --depend ".\Output\stm32f10x_it.d") +I (..\app\inc\stm32f10x_it.h)(0x545CB528) +I (..\components\others\bsp.h)(0x5530C8C2) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\components\rtt_uart\usart.h)(0x54C0D275) +F (..\APP\inc\delay_conf.h)(0x54C30EE8)() +F (..\APP\inc\stm32f10x_conf.h)(0x545CB528)() +F (..\APP\inc\rtconfig.h)(0x5531F5F8)() +F (..\components\others\bsp.c)(0x5530C797)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\bsp.o" --omf_browse ".\Output\bsp.crf" --depend ".\Output\bsp.d") +I (..\components\others\bsp.h)(0x5530C8C2) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\components\rtt_uart\usart.h)(0x54C0D275) +F (..\components\others\utils.c)(0x54C30EAD)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\utils.o" --omf_browse ".\Output\utils.crf" --depend ".\Output\utils.d") +I (..\components\others\utils.h)(0x5530C8E2) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\components\rtt_uart\usart.c)(0x54C0D275)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\usart.o" --omf_browse ".\Output\usart.crf" --depend ".\Output\usart.d") +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\components\rtt_uart\usart.h)(0x54C0D275) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\components\others\bsp.h)(0x5530C8C2) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\cpuport.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\cpuport.o" --omf_browse ".\Output\cpuport.crf" --depend ".\Output\cpuport.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\libcpu\arm\cortex-m3\context_rvds.S)(0x545CB528)(--cpu Cortex-M3 -g --apcs=interwork -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" --list ".\Output\list\context_rvds.lst" --xref -o ".\Output\context_rvds.o" --depend ".\Output\context_rvds.d") +F (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s)(0x545CB527)(--cpu Cortex-M3 -g --apcs=interwork -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" --list ".\Output\list\startup_stm32f10x_hd.lst" --xref -o ".\Output\startup_stm32f10x_hd.o" --depend ".\Output\startup_stm32f10x_hd.d") +F (..\..\..\..\easyflash\src\easyflash.c)(0x559796C4)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\easyflash.o" --omf_browse ".\Output\easyflash.crf" --depend ".\Output\easyflash.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +F (..\..\..\..\easyflash\src\ef_env.c)(0x559788F2)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_env.o" --omf_browse ".\Output\ef_env.crf" --depend ".\Output\ef_env.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +F (..\..\..\..\easyflash\src\ef_env_wl.c)(0x559797C3)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_env_wl.o" --omf_browse ".\Output\ef_env_wl.crf" --depend ".\Output\ef_env_wl.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +F (..\..\..\..\easyflash\src\ef_iap.c)(0x5597877C)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_iap.o" --omf_browse ".\Output\ef_iap.crf" --depend ".\Output\ef_iap.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +F (..\..\..\..\easyflash\src\ef_utils.c)(0x55978410)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_utils.o" --omf_browse ".\Output\ef_utils.crf" --depend ".\Output\ef_utils.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +F (..\components\easyflash\port\ef_port.c)(0x5599F40B)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ef_port.o" --omf_browse ".\Output\ef_port.crf" --depend ".\Output\ef_port.d") +I (..\..\..\..\easyflash\inc\easyflash.h)(0x5599EABD) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (C:\Program Files\Keil\ARM\RV31\INC\stddef.h)(0x4C10B340) +I (C:\Program Files\Keil\ARM\RV31\INC\stdbool.h)(0x4BD5D7FC) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\misc.o" --omf_browse ".\Output\misc.crf" --depend ".\Output\misc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_adc.o" --omf_browse ".\Output\stm32f10x_adc.crf" --depend ".\Output\stm32f10x_adc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_bkp.o" --omf_browse ".\Output\stm32f10x_bkp.crf" --depend ".\Output\stm32f10x_bkp.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_bkp.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_can.o" --omf_browse ".\Output\stm32f10x_can.crf" --depend ".\Output\stm32f10x_can.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_cec.o" --omf_browse ".\Output\stm32f10x_cec.crf" --depend ".\Output\stm32f10x_cec.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_cec.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_crc.o" --omf_browse ".\Output\stm32f10x_crc.crf" --depend ".\Output\stm32f10x_crc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_crc.h)(0x545CB527) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dac.o" --omf_browse ".\Output\stm32f10x_dac.crf" --depend ".\Output\stm32f10x_dac.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dac.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dbgmcu.o" --omf_browse ".\Output\stm32f10x_dbgmcu.crf" --depend ".\Output\stm32f10x_dbgmcu.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dbgmcu.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_dma.o" --omf_browse ".\Output\stm32f10x_dma.crf" --depend ".\Output\stm32f10x_dma.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_dma.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_exti.o" --omf_browse ".\Output\stm32f10x_exti.crf" --depend ".\Output\stm32f10x_exti.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_flash.o" --omf_browse ".\Output\stm32f10x_flash.crf" --depend ".\Output\stm32f10x_flash.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_fsmc.o" --omf_browse ".\Output\stm32f10x_fsmc.crf" --depend ".\Output\stm32f10x_fsmc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_gpio.o" --omf_browse ".\Output\stm32f10x_gpio.crf" --depend ".\Output\stm32f10x_gpio.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_i2c.o" --omf_browse ".\Output\stm32f10x_i2c.crf" --depend ".\Output\stm32f10x_i2c.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_i2c.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_iwdg.o" --omf_browse ".\Output\stm32f10x_iwdg.crf" --depend ".\Output\stm32f10x_iwdg.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_pwr.o" --omf_browse ".\Output\stm32f10x_pwr.crf" --depend ".\Output\stm32f10x_pwr.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_pwr.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rcc.o" --omf_browse ".\Output\stm32f10x_rcc.crf" --depend ".\Output\stm32f10x_rcc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_rtc.o" --omf_browse ".\Output\stm32f10x_rtc.crf" --depend ".\Output\stm32f10x_rtc.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rtc.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_sdio.o" --omf_browse ".\Output\stm32f10x_sdio.crf" --depend ".\Output\stm32f10x_sdio.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_sdio.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_spi.o" --omf_browse ".\Output\stm32f10x_spi.crf" --depend ".\Output\stm32f10x_spi.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_spi.h)(0x545CB527) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_tim.o" --omf_browse ".\Output\stm32f10x_tim.crf" --depend ".\Output\stm32f10x_tim.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_usart.o" --omf_browse ".\Output\stm32f10x_usart.crf" --depend ".\Output\stm32f10x_usart.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\stm32f10x_wwdg.o" --omf_browse ".\Output\stm32f10x_wwdg.crf" --depend ".\Output\stm32f10x_wwdg.d") +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\core_cm3.o" --omf_browse ".\Output\core_cm3.crf" --depend ".\Output\core_cm3.d") +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +F (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\system_stm32f10x.o" --omf_browse ".\Output\system_stm32f10x.crf" --depend ".\Output\system_stm32f10x.d") +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\stm32f10x.h)(0x545CB528) +I (..\Libraries\CMSIS_RVMDK\CM3\CoreSupport\core_cm3.h)(0x545CB528) +I (C:\Program Files\Keil\ARM\RV31\INC\stdint.h)(0x4BA13B96) +I (..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x\system_stm32f10x.h)(0x545CB527) +I (..\app\inc\stm32f10x_conf.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_adc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_can.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_exti.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_flash.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_fsmc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_gpio.h)(0x545CB527) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_iwdg.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_rcc.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_tim.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_usart.h)(0x545CB528) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\stm32f10x_wwdg.h)(0x545CB529) +I (..\Libraries\STM32F10x_StdPeriph_Driver\inc\misc.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\clock.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\clock.o" --omf_browse ".\Output\clock.crf" --depend ".\Output\clock.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\cpuusage.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\cpuusage.o" --omf_browse ".\Output\cpuusage.crf" --depend ".\Output\cpuusage.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\device.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\device.o" --omf_browse ".\Output\device.crf" --depend ".\Output\device.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\idle.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\idle.o" --omf_browse ".\Output\idle.crf" --depend ".\Output\idle.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\ipc.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ipc.o" --omf_browse ".\Output\ipc.crf" --depend ".\Output\ipc.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\irq.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\irq.o" --omf_browse ".\Output\irq.crf" --depend ".\Output\irq.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\kservice.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\kservice.o" --omf_browse ".\Output\kservice.crf" --depend ".\Output\kservice.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\mem.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\mem.o" --omf_browse ".\Output\mem.crf" --depend ".\Output\mem.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +F (..\RT-Thread-1.2.2\src\memheap.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\memheap.o" --omf_browse ".\Output\memheap.crf" --depend ".\Output\memheap.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\mempool.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\mempool.o" --omf_browse ".\Output\mempool.crf" --depend ".\Output\mempool.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\module.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\module.o" --omf_browse ".\Output\module.crf" --depend ".\Output\module.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\object.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\object.o" --omf_browse ".\Output\object.crf" --depend ".\Output\object.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\scheduler.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\scheduler.o" --omf_browse ".\Output\scheduler.crf" --depend ".\Output\scheduler.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\slab.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\slab.o" --omf_browse ".\Output\slab.crf" --depend ".\Output\slab.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\src\thread.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\thread.o" --omf_browse ".\Output\thread.crf" --depend ".\Output\thread.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\src\timer.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\timer.o" --omf_browse ".\Output\timer.crf" --depend ".\Output\timer.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\drivers\src\completion.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\completion.o" --omf_browse ".\Output\completion.crf" --depend ".\Output\completion.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\dataqueue.o" --omf_browse ".\Output\dataqueue.crf" --depend ".\Output\dataqueue.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\drivers\src\pipe.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\pipe.o" --omf_browse ".\Output\pipe.crf" --depend ".\Output\pipe.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\components\drivers\src\portal.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\portal.o" --omf_browse ".\Output\portal.crf" --depend ".\Output\portal.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\ringbuffer.o" --omf_browse ".\Output\ringbuffer.crf" --depend ".\Output\ringbuffer.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +F (..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\wrokqueue.o" --omf_browse ".\Output\wrokqueue.crf" --depend ".\Output\wrokqueue.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\components\drivers\serial\serial.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\serial.o" --omf_browse ".\Output\serial.crf" --depend ".\Output\serial.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\drivers\include\drivers/serial.h)(0x54631D35) +F (..\RT-Thread-1.2.2\components\finsh\cmd.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\cmd.o" --omf_browse ".\Output\cmd.crf" --depend ".\Output\cmd.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +F (..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_compiler.o" --omf_browse ".\Output\finsh_compiler.crf" --depend ".\Output\finsh_compiler.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_node.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_ops.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_vm.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\finsh_error.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_error.o" --omf_browse ".\Output\finsh_error.crf" --depend ".\Output\finsh_error.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +F (..\RT-Thread-1.2.2\components\finsh\finsh_heap.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_heap.o" --omf_browse ".\Output\finsh_heap.crf" --depend ".\Output\finsh_heap.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\finsh_init.c)(0x545CB529)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_init.o" --omf_browse ".\Output\finsh_init.crf" --depend ".\Output\finsh_init.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_node.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_vm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_parser.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_heap.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\finsh_node.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_node.o" --omf_browse ".\Output\finsh_node.crf" --depend ".\Output\finsh_node.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_node.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_heap.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\finsh_ops.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_ops.o" --omf_browse ".\Output\finsh_ops.crf" --depend ".\Output\finsh_ops.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh_ops.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_vm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\finsh_parser.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_parser.o" --omf_browse ".\Output\finsh_parser.crf" --depend ".\Output\finsh_parser.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_token.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_node.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_parser.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\finsh_token.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_token.o" --omf_browse ".\Output\finsh_token.crf" --depend ".\Output\finsh_token.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_token.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_error.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\finsh_var.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_var.o" --omf_browse ".\Output\finsh_var.crf" --depend ".\Output\finsh_var.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\finsh_vm.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\finsh_vm.o" --omf_browse ".\Output\finsh_vm.crf" --depend ".\Output\finsh_vm.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\finsh_vm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh_var.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\finsh_ops.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\msh.c)(0x545CB527)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\msh.o" --omf_browse ".\Output\msh.crf" --depend ".\Output\msh.d") +I (..\RT-Thread-1.2.2\components\finsh\msh.h)(0x545CB527) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\shell.h)(0x545CB528) +F (..\RT-Thread-1.2.2\components\finsh\msh_cmd.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\msh_cmd.o" --omf_browse ".\Output\msh_cmd.crf" --depend ".\Output\msh_cmd.d") +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\msh.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\shell.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\shell.o" --omf_browse ".\Output\shell.crf" --depend ".\Output\shell.d") +I (..\RT-Thread-1.2.2\include\rthw.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) +I (..\RT-Thread-1.2.2\components\finsh\shell.h)(0x545CB528) +I (..\RT-Thread-1.2.2\components\finsh\msh.h)(0x545CB527) +F (..\RT-Thread-1.2.2\components\finsh\symbol.c)(0x545CB528)(-c --cpu Cortex-M3 -g -O0 -Otime --apcs=interwork --split_sections -I..\app\inc -I..\components\rtt_uart -I..\components\others -I..\Libraries\STM32F10x_StdPeriph_Driver\inc -I..\Libraries\CMSIS_RVMDK\CM3\CoreSupport -I..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x -I..\RT-Thread-1.2.2\include -I..\RT-Thread-1.2.2\components\drivers\include -I..\RT-Thread-1.2.2\components\drivers\include\drivers -I..\RT-Thread-1.2.2\components\finsh -I..\..\..\..\easyflash\inc -I "C:\Program Files\Keil\ARM\INC" -I "C:\Program Files\Keil\ARM\INC\ST\STM32F10x" -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -DUSE_FULL_ASSERT -o ".\Output\symbol.o" --omf_browse ".\Output\symbol.crf" --depend ".\Output\symbol.d") +I (..\RT-Thread-1.2.2\components\finsh\finsh.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtthread.h)(0x545CB528) +I (..\app\inc\rtconfig.h)(0x5531F5F8) +I (..\RT-Thread-1.2.2\include\rtdebug.h)(0x545CB529) +I (..\RT-Thread-1.2.2\include\rtdef.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\stdarg.h)(0x4BD5D7FE) +I (..\RT-Thread-1.2.2\include\rtservice.h)(0x545CB528) +I (..\RT-Thread-1.2.2\include\rtm.h)(0x545CB527) +I (C:\Program Files\Keil\ARM\RV31\INC\ctype.h)(0x4BA13B98) +I (C:\Program Files\Keil\ARM\RV31\INC\stdlib.h)(0x4BD5D7FE) +I (C:\Program Files\Keil\ARM\RV31\INC\string.h)(0x4BA13B9A) diff --git a/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvopt.bak b/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvopt.bak index a3ed52d..aab5c62 100644 --- a/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvopt.bak +++ b/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvopt.bak @@ -213,10 +213,10 @@ 1 0 0 - 25 + 101 0 1 - 7 + 1 0 ..\APP\src\app_task.c app_task.c @@ -391,7 +391,7 @@ 0 3 - 14 + 0 1 0 0 @@ -400,12 +400,12 @@ 0 0 0 - ..\components\flash\port\flash_port.c - flash_port.c + ..\..\..\..\easyflash\src\easyflash.c + easyflash.c 3 - 15 + 0 1 0 0 @@ -414,12 +414,12 @@ 0 0 0 - ..\..\..\..\flash\src\flash.c - flash.c + ..\..\..\..\easyflash\src\ef_env.c + ef_env.c 3 - 16 + 0 1 0 0 @@ -428,12 +428,12 @@ 0 0 0 - ..\..\..\..\flash\src\flash_env.c - flash_env.c + ..\..\..\..\easyflash\src\ef_env_wl.c + ef_env_wl.c 3 - 17 + 0 1 0 0 @@ -442,12 +442,12 @@ 0 0 0 - ..\..\..\..\flash\src\flash_env_wl.c - flash_env_wl.c + ..\..\..\..\easyflash\src\ef_iap.c + ef_iap.c 3 - 18 + 0 1 0 0 @@ -456,8 +456,8 @@ 0 0 0 - ..\..\..\..\flash\src\flash_iap.c - flash_iap.c + ..\..\..\..\easyflash\src\ef_utils.c + ef_utils.c 3 @@ -470,8 +470,8 @@ 0 0 0 - ..\..\..\..\flash\src\flash_utils.c - flash_utils.c + ..\components\easyflash\port\ef_port.c + ef_port.c @@ -3236,7 +3236,7 @@ 0 16 - 00000000000000009006000017000000 + 00000000000000009106000017000000 16 @@ -3256,7 +3256,7 @@ 0 16 - 00000000000000009006000017000000 + 00000000000000009106000017000000 16 @@ -3312,7 +3312,7 @@ File 2002 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000004000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050FFFFFFFF0096000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000 1423 @@ -3344,7 +3344,7 @@ Debug 2582 - 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473000000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 + 00200000000000001B00FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380DB8B00000000000031000000064C6F63616C73000000000000000000000000010000000100000000000000000000000100000000001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138046010000000000004900000013446562756720526573746F72652056696577730000000000000000000000000100000001000000000000000000000001000000030013802C8C000000000000FFFFFFFF1A446562756720526573746F726520566965777320416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013802B8C000000000000FFFFFFFF17265265736574205669657720746F2044656661756C7473010000000000000001000000000000000100000000000000000000000100000000000000000005446562756791020000 968 @@ -4933,9 +4933,9 @@ ..\APP\src\app_task.c - 25 + 101 1 - 7 + 1 diff --git a/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvproj.bak b/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvproj.bak index fa56fd3..fe9c57d 100644 --- a/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvproj.bak +++ b/demo/stm32f10x/rtt/RVMDK/EasyFlash_uvproj.bak @@ -345,7 +345,7 @@ USE_STDPERIPH_DRIVER,STM32F10X_HD,USE_FULL_ASSERT - ..\app\inc;..\components\rtt_uart;..\components\others;..\Libraries\STM32F10x_StdPeriph_Driver\inc;..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x;..\RT-Thread-1.2.2\include;..\RT-Thread-1.2.2\components\drivers\include;..\RT-Thread-1.2.2\components\drivers\include\drivers;..\RT-Thread-1.2.2\components\finsh;..\..\..\..\flash\inc + ..\app\inc;..\components\rtt_uart;..\components\others;..\Libraries\STM32F10x_StdPeriph_Driver\inc;..\Libraries\CMSIS_RVMDK\CM3\CoreSupport;..\Libraries\CMSIS_RVMDK\CM3\DeviceSupport\ST\STM32F10x;..\RT-Thread-1.2.2\include;..\RT-Thread-1.2.2\components\drivers\include;..\RT-Thread-1.2.2\components\drivers\include\drivers;..\RT-Thread-1.2.2\components\finsh;..\..\..\..\easyflash\inc @@ -461,34 +461,34 @@ easyflash - flash_port.c + easyflash.c 1 - ..\components\flash\port\flash_port.c + ..\..\..\..\easyflash\src\easyflash.c - flash.c + ef_utils.c 1 - ..\..\..\..\flash\src\flash.c + ..\..\..\..\easyflash\src\ef_utils.c - flash_env.c + env.c 1 - ..\..\..\..\flash\src\flash_env.c + ..\..\..\..\easyflash\src\env.c - flash_env_wl.c + env_wl.c 1 - ..\..\..\..\flash\src\flash_env_wl.c + ..\..\..\..\easyflash\src\env_wl.c - flash_iap.c + iap.c 1 - ..\..\..\..\flash\src\flash_iap.c + ..\..\..\..\easyflash\src\iap.c - flash_utils.c + ef_port.c 1 - ..\..\..\..\flash\src\flash_utils.c + ..\components\easyflash\port\ef_port.c diff --git a/demo/stm32f10x/rtt/app/src/app_task.c b/demo/stm32f10x/rtt/app/src/app_task.c index a2b302d..e8456df 100644 --- a/demo/stm32f10x/rtt/app/src/app_task.c +++ b/demo/stm32f10x/rtt/app/src/app_task.c @@ -2,7 +2,7 @@ #include #include #include "bsp.h" -#include "flash.h" +#include "easyflash.h" #include "finsh.h" #include "shell.h" #include "delay_conf.h" @@ -64,7 +64,7 @@ void test_env(void) { char *c_old_boot_times, c_new_boot_times[11] = {0}; /* get the boot count number from Env */ - c_old_boot_times = flash_get_env("boot_times"); + c_old_boot_times = ef_get_env("boot_times"); RT_ASSERT(c_old_boot_times); i_boot_times = atol(c_old_boot_times); /* boot count +1 */ @@ -73,8 +73,8 @@ void test_env(void) { /* interger to string */ sprintf(c_new_boot_times,"%ld", i_boot_times); /* set and store the boot count number to Env */ - flash_set_env("boot_times", c_new_boot_times); - flash_save_env(); + ef_set_env("boot_times", c_new_boot_times); + ef_save_env(); } /** @@ -86,7 +86,7 @@ void sys_init_thread(void* parameter){ set_system_status(SYSTEM_STATUS_INIT); /* EasyFlash initialization */ - if (flash_init() == FLASH_NO_ERR) { + if (easyflash_init() == EF_NO_ERR) { /* initialize OK and switch to running status */ set_system_status(SYSTEM_STATUS_RUN); /* test Env demo */ diff --git a/demo/stm32f10x/rtt/app/src/user_finsh_cmd.c b/demo/stm32f10x/rtt/app/src/user_finsh_cmd.c index 1fb3bcc..9d70a42 100644 --- a/demo/stm32f10x/rtt/app/src/user_finsh_cmd.c +++ b/demo/stm32f10x/rtt/app/src/user_finsh_cmd.c @@ -7,7 +7,7 @@ #include #include #include -#include "flash.h" +#include "easyflash.h" #include "finsh.h" void reboot(uint8_t argc, char **argv) { @@ -32,28 +32,28 @@ void setenv(uint8_t argc, char **argv) { } } if (argc == 1) { - flash_set_env(value, value); + ef_set_env(value, value); } else if (argc == 2) { - flash_set_env(argv[1], value); + ef_set_env(argv[1], value); } else { - flash_set_env(argv[1], argv[2]); + ef_set_env(argv[1], argv[2]); } } MSH_CMD_EXPORT(setenv, Set an envrionment variable.); void printenv(uint8_t argc, char **argv) { - flash_print_env(); + ef_print_env(); } MSH_CMD_EXPORT(printenv, Print all envrionment variables.); void saveenv(uint8_t argc, char **argv) { - flash_save_env(); + ef_save_env(); } MSH_CMD_EXPORT(saveenv, Save all envrionment variables to flash.); void getvalue(uint8_t argc, char **argv) { char *value = NULL; - value = flash_get_env(argv[1]); + value = ef_get_env(argv[1]); if (value) { rt_kprintf("The %s value is %s.\n", argv[1], value); } else { diff --git a/demo/stm32f10x/rtt/components/easyflash/port/flash_port.c b/demo/stm32f10x/rtt/components/easyflash/port/ef_port.c similarity index 74% rename from demo/stm32f10x/rtt/components/easyflash/port/flash_port.c rename to demo/stm32f10x/rtt/components/easyflash/port/ef_port.c index a84ba26..58915b5 100644 --- a/demo/stm32f10x/rtt/components/easyflash/port/flash_port.c +++ b/demo/stm32f10x/rtt/components/easyflash/port/ef_port.c @@ -26,7 +26,7 @@ * Created on: 2015-01-16 */ -#include "flash.h" +#include "easyflash.h" #include #include #include @@ -39,21 +39,21 @@ #endif /* Environment variables start address */ -#define FLASH_ENV_START_ADDR (FLASH_BASE + 100 * 1024) /* from the chip position: 100KB */ +#define ENV_START_ADDR (FLASH_BASE + 100 * 1024) /* from the chip position: 100KB */ /* the minimum size of flash erasure */ -#define FLASH_ERASE_MIN_SIZE PAGE_SIZE /* it is one page for STM32 */ -#ifdef FLASH_ENV_USING_WEAR_LEVELING_MODE +#define ERASE_MIN_SIZE PAGE_SIZE /* it is one page for STM32 */ +#ifdef EF_ENV_USING_WL_MODE /* ENV section total bytes size in wear leveling mode. */ -#define FLASH_ENV_SECTION_SIZE (4 * FLASH_ERASE_MIN_SIZE)/* 8K */ +#define ENV_SECTION_SIZE (4 * ERASE_MIN_SIZE) /* 8K */ #else /* ENV section total bytes size in normal mode. It's equal with FLASH_USER_SETTING_ENV_SIZE */ -#define FLASH_ENV_SECTION_SIZE (FLASH_USER_SETTING_ENV_SIZE) +#define ENV_SECTION_SIZE (EF_USER_SETTING_ENV_SIZE) #endif /* print debug information of flash */ -#define FLASH_PRINT_DEBUG +#define PRINT_DEBUG /* default environment variables set for user */ -static const flash_env default_env_set[] = { +static const ef_env default_env_set[] = { {"iap_need_copy_app","0"}, {"iap_copy_app_size","0"}, {"stop_in_bootloader","0"}, @@ -61,7 +61,7 @@ static const flash_env default_env_set[] = { {"boot_times","0"}, }; -static char log_buf[RT_CONSOLEBUF_SIZE]; +static char log_buf[128]; static struct rt_semaphore env_cache_lock; /** @@ -76,25 +76,24 @@ static struct rt_semaphore env_cache_lock; * * @return result */ -FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, - flash_env const **default_env, size_t *default_env_size, size_t *log_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, + ef_env const **default_env, size_t *default_env_size, size_t *log_size) { + EfErrCode result = EF_NO_ERR; + + EF_ASSERT(EF_USER_SETTING_ENV_SIZE % 4 == 0); + EF_ASSERT(ENV_SECTION_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_ENV_SECTION_SIZE % 4 == 0); - - *env_addr = FLASH_ENV_START_ADDR; - *env_total_size = FLASH_ENV_SECTION_SIZE; - *erase_min_size = FLASH_ERASE_MIN_SIZE; + *env_addr = ENV_START_ADDR; + *env_total_size = ENV_SECTION_SIZE; + *erase_min_size = ERASE_MIN_SIZE; *default_env = default_env_set; - *default_env_size = sizeof(default_env_set)/sizeof(default_env_set[0]); - + *default_env_size = sizeof(default_env_set) / sizeof(default_env_set[0]); + rt_sem_init(&env_cache_lock, "env lock", 1, RT_IPC_FLAG_PRIO); return result; } - /** * Read data from flash. * @note This operation's units is word. @@ -105,10 +104,10 @@ FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t * * @return result */ -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(size % 4 == 0); + EF_ASSERT(size % 4 == 0); /*copy from flash to ram */ for (; size > 0; size -= 4, addr += 4, buf++) { @@ -128,13 +127,13 @@ FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { * * @return result */ -FlashErrCode flash_erase(uint32_t addr, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_erase(uint32_t addr, size_t size) { + EfErrCode result = EF_NO_ERR; FLASH_Status flash_status; size_t erase_pages, i; /* make sure the start address is a multiple of FLASH_ERASE_MIN_SIZE */ - FLASH_ASSERT(addr % FLASH_ERASE_MIN_SIZE == 0); + EF_ASSERT(addr % ERASE_MIN_SIZE == 0); /* calculate pages */ erase_pages = size / PAGE_SIZE; @@ -148,7 +147,7 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { for (i = 0; i < erase_pages; i++) { flash_status = FLASH_ErasePage(addr + (PAGE_SIZE * i)); if (flash_status != FLASH_COMPLETE) { - result = FLASH_ERASE_ERR; + result = EF_ERASE_ERR; break; } } @@ -167,13 +166,13 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { * * @return result */ -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; size_t i; uint32_t read_data; - FLASH_ASSERT(size % 4 == 0); - + EF_ASSERT(size % 4 == 0); + FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_BSY | FLASH_FLAG_EOP | FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR); for (i = 0; i < size; i += 4, buf++, addr += 4) { @@ -182,7 +181,7 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { read_data = *(uint32_t *)addr; /* check data */ if (read_data != *buf) { - result = FLASH_WRITE_ERR; + result = EF_WRITE_ERR; break; } } @@ -194,17 +193,18 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { /** * lock the ENV ram cache */ -void flash_env_lock(void) { +void ef_port_env_lock(void) { rt_sem_take(&env_cache_lock, RT_WAITING_FOREVER); } /** * unlock the ENV ram cache */ -void flash_env_unlock(void) { +void ef_port_env_unlock(void) { rt_sem_release(&env_cache_lock); } + /** * This function is print flash debug info. * @@ -214,18 +214,18 @@ void flash_env_unlock(void) { * @param ... args * */ -void flash_log_debug(const char *file, const long line, const char *format, ...) { +void ef_log_debug(const char *file, const long line, const char *format, ...) { -#ifdef FLASH_PRINT_DEBUG +#ifdef PRINT_DEBUG va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash](%s:%ld) ", file, line); + ef_print("[Flash](%s:%ld) ", file, line); /* must use vprintf to print */ rt_vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); va_end(args); #endif @@ -238,15 +238,15 @@ void flash_log_debug(const char *file, const long line, const char *format, ...) * @param format output format * @param ... args */ -void flash_log_info(const char *format, ...) { +void ef_log_info(const char *format, ...) { va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash]"); + ef_print("[Flash]"); /* must use vprintf to print */ rt_vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); va_end(args); } /** @@ -255,7 +255,7 @@ void flash_log_info(const char *format, ...) { * @param format output format * @param ... args */ -void flash_print(const char *format, ...) { +void ef_print(const char *format, ...) { va_list args; /* args point to the first variable parameter */ diff --git a/demo/stm32f4xx/EWARM/EasyFlash.dep b/demo/stm32f4xx/EWARM/EasyFlash.dep index 2e14498..f758024 100644 --- a/demo/stm32f4xx/EWARM/EasyFlash.dep +++ b/demo/stm32f4xx/EWARM/EasyFlash.dep @@ -2,2106 +2,2267 @@ 2 - 963838495 + 798699133 STM32F405RG - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_aes.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dcmi.o - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\cpuport.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_tim.pbi - $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c - $PROJ_DIR$\STM32F405RG\Obj\misc.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_adc.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_can.o - $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_crc.o - $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c - $PROJ_DIR$\STM32F405RG\Obj\usart.o - $PROJ_DIR$\STM32F405RG\Obj\system_stm32f4xx.o - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c - $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\context_iar.S - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_syscfg.pbi - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_tim.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_usart.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_wwdg.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c - $PROJ_DIR$\STM32F405RG\Obj\app_task.o - $PROJ_DIR$\STM32F405RG\Obj\flash_port.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_tdes.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_it.o - $PROJ_DIR$\STM32F405RG\Obj\app.o - $PROJ_DIR$\STM32F405RG\Obj\user_finsh_cmd.o - $PROJ_DIR$\STM32F405RG\Obj\flash_env.o - $PROJ_DIR$\STM32F405RG\Obj\flash.o - $PROJ_DIR$\STM32F405RG\Obj\flash_env_wl.o - $PROJ_DIR$\STM32F405RG\Obj\flash_iap.o - $PROJ_DIR$\STM32F405RG\Obj\flash_utils.o - $PROJ_DIR$\STM32F405RG\Obj\bsp.o - $PROJ_DIR$\STM32F405RG\Obj\utils.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma.o $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sdio.c - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_des.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dbgmcu.o $PROJ_DIR$\..\components\rtt_uart\usart.c - $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\system_stm32f4xx.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_utils.c - $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\iar\startup_stm32f40_41xxx.s + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\misc.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_adc.c - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dac.o + $PROJ_DIR$\..\app\inc\rtconfig.h $PROJ_DIR$\..\..\..\easyflash\src\flash.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_iap.c - $PROJ_DIR$\..\components\easyflash\port\flash_port.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_env.c $PROJ_DIR$\..\..\..\easyflash\src\flash_env_wl.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\misc.c $PROJ_DIR$\..\components\others\bsp.c - $PROJ_DIR$\..\app\inc\rtconfig.h + $PROJ_DIR$\..\components\others\utils.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\app\src\stm32f4xx_it.c + $PROJ_DIR$\..\components\easyflash\port\flash_port.c $PROJ_DIR$\..\app\src\app.c $PROJ_DIR$\..\app\src\app_task.c - $PROJ_DIR$\..\app\src\stm32f4xx_it.c $PROJ_DIR$\..\app\src\user_finsh_cmd.c - $PROJ_DIR$\..\components\others\utils.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\iar\startup_stm32f40_41xxx.s + $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\system_stm32f4xx.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dcmi.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_gpio.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_ltdc.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_exti.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rcc.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rtc.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_pwr.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_crc.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dac.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_sha1.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_can.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_des.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rng.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sai.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_tdes.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash_ramfunc.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma2d.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_iwdg.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash_ramfunc.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_aes.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_crc.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_des.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dac.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_pwr.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dbgmcu.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma2d.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_fsmc.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_exti.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_gpio.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_sha1.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_ltdc.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_md5.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rcc.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dbgmcu.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rng.c $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_i2c.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dcmi.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_fsmc.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rtc.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sai.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_can.c - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_tim.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_usart.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_wwdg.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c + $PROJ_DIR$\STM32F405RG\Obj\usart.o + $PROJ_DIR$\STM32F405RG\Obj\system_stm32f4xx.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_des.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dac.o + $PROJ_DIR$\STM32F405RG\Obj\user_finsh_cmd.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_can.o + $PROJ_DIR$\STM32F405RG\Obj\flash_env_wl.o + $PROJ_DIR$\STM32F405RG\Obj\flash_utils.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_i2c.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rtc.o + $PROJ_DIR$\STM32F405RG\Obj\completion.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dbgmcu.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_wwdg.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_md5.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_crc.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_tdes.o + $PROJ_DIR$\STM32F405RG\Obj\flash_iap.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_syscfg.pbi + $PROJ_DIR$\STM32F405RG\Obj\app_task.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_it.o + $PROJ_DIR$\STM32F405RG\Obj\flash_env.o + $PROJ_DIR$\STM32F405RG\Obj\flash_port.o + $PROJ_DIR$\STM32F405RG\Obj\bsp.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_syscfg.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_tim.o + $PROJ_DIR$\STM32F405RG\Obj\flash.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_pwr.o - $PROJ_DIR$\STM32F405RG\Obj\completion.o + $PROJ_DIR$\STM32F405RG\Obj\utils.o $PROJ_DIR$\STM32F405RG\Obj\dataqueue.o + $PROJ_DIR$\STM32F405RG\Obj\app.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_gpio.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_wwdg.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rtc.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_aes.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dcmi.o + $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_tim.pbi + $PROJ_DIR$\STM32F405RG\Obj\misc.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_adc.o $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_fsmc.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_md5.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash_ramfunc.o - $PROJ_DIR$\STM32F405RG\Obj\pipe.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_iwdg.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rng.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_sha1.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sai.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_usart.o - $PROJ_DIR$\STM32F405RG\Obj\portal.o - $PROJ_DIR$\STM32F405RG\Obj\ringbuffer.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rcc.o - $PROJ_DIR$\STM32F405RG\Obj\memheap.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_ltdc.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_spi.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_exti.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma2d.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sdio.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash.o - $PROJ_DIR$\STM32F405RG\Obj\wrokqueue.o - $PROJ_DIR$\STM32F405RG\Obj\device.o - $PROJ_DIR$\STM32F405RG\Obj\irq.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_parser.o - $PROJ_DIR$\STM32F405RG\Obj\cmd.o - $PROJ_DIR$\STM32F405RG\Obj\msh.o - $PROJ_DIR$\STM32F405RG\Obj\serial.o - $PROJ_DIR$\STM32F405RG\Obj\shell.o - $PROJ_DIR$\STM32F405RG\Obj\clock.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_token.o - $PROJ_DIR$\STM32F405RG\Obj\ipc.o - $PROJ_DIR$\STM32F405RG\Obj\kservice.o - $PROJ_DIR$\STM32F405RG\Obj\msh_cmd.o - $PROJ_DIR$\STM32F405RG\Obj\mem.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_var.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_init.o - $PROJ_DIR$\STM32F405RG\Obj\idle.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_compiler.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_error.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_heap.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_node.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_ops.o - $PROJ_DIR$\STM32F405RG\Obj\finsh_vm.o - $PROJ_DIR$\STM32F405RG\Obj\symbol.o - $PROJ_DIR$\STM32F405RG\Obj\cpuusage.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_des.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash.pbi - $PROJ_DIR$\STM32F405RG\Obj\misc.pbi - $PROJ_DIR$\STM32F405RG\Obj\system_stm32f4xx.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_adc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_md5.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_fsmc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_iwdg.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash_ramfunc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dac.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_ltdc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_can.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp.pbi - $PROJ_DIR$\STM32F405RG\Obj\usart.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_gpio.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_pwr.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_tdes.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dcmi.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma2d.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_sha1.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dbgmcu.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sdio.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_aes.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_exti.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rcc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_crc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_i2c.pbi - $PROJ_DIR$\STM32F405RG\Obj\flash.pbi - $PROJ_DIR$\STM32F405RG\Obj\scheduler.o - $PROJ_DIR$\STM32F405RG\Obj\app.pbi - $PROJ_DIR$\STM32F405RG\Obj\thread.o - $PROJ_DIR$\STM32F405RG\Obj\flash_port.pbi - $PROJ_DIR$\STM32F405RG\Obj\timer.o - $PROJ_DIR$\STM32F405RG\Obj\flash_env.pbi - $PROJ_DIR$\STM32F405RG\Obj\user_finsh_cmd.pbi - $PROJ_DIR$\STM32F405RG\Obj\flash_env_wl.pbi - $PROJ_DIR$\STM32F405RG\Obj\flash_iap.pbi - $PROJ_DIR$\STM32F405RG\Obj\context_iar.o - $PROJ_DIR$\STM32F405RG\Obj\flash_utils.pbi - $PROJ_DIR$\STM32F405RG\Obj\startup_stm32f40_41xxx.o - $PROJ_DIR$\STM32F405RG\Obj\bsp.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rtc.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sai.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_it.pbi - $PROJ_DIR$\STM32F405RG\Obj\slab.o - $PROJ_DIR$\STM32F405RG\Obj\utils.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rng.pbi - $PROJ_DIR$\STM32F405RG\Obj\cpuport.o - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_spi.pbi - $PROJ_DIR$\STM32F405RG\Obj\mempool.o - $PROJ_DIR$\STM32F405RG\Obj\object.o + $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\context_iar.S + $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\cpuport.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp.o + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c + $PROJ_DIR$\STM32F405RG\Obj\EasyFlash.pbd + $PROJ_DIR$\STM32F405RG\Obj\ringbuffer.pbi $PROJ_DIR$\STM32F405RG\Obj\app_task.pbi - $PROJ_DIR$\STM32F405RG\Obj\module.o - $PROJ_DIR$\STM32F405RG\Obj\irq.pbi $PROJ_DIR$\STM32F405RG\Obj\kservice.pbi + $PROJ_DIR$\STM32F405RG\Obj\device.pbi + $PROJ_DIR$\STM32F405RG\Exe\EasyFlash.bin $PROJ_DIR$\STM32F405RG\Obj\object.pbi - $PROJ_DIR$\STM32F405RG\Obj\EasyFlash.pbd + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rtc.pbi + $PROJ_DIR$\STM32F405RG\Obj\module.o + $PROJ_DIR$\STM32F405RG\Obj\mem.pbi + $PROJ_DIR$\STM32F405RG\Obj\cpuport.o $PROJ_DIR$\STM32F405RG\Obj\module.pbi $PROJ_DIR$\STM32F405RG\Obj\thread.pbi - $PROJ_DIR$\STM32F405RG\Obj\cpuusage.pbi - $PROJ_DIR$\STM32F405RG\Exe\EasyFlash.bin - $PROJ_DIR$\STM32F405RG\Obj\memheap.pbi - $PROJ_DIR$\STM32F405RG\Obj\device.pbi - $PROJ_DIR$\STM32F405RG\Obj\scheduler.pbi - $PROJ_DIR$\STM32F405RG\Obj\mem.pbi - $PROJ_DIR$\STM32F405RG\Obj\mempool.pbi $PROJ_DIR$\STM32F405RG\Obj\ipc.pbi + $PROJ_DIR$\STM32F405RG\Obj\mempool.pbi $PROJ_DIR$\STM32F405RG\Obj\slab.pbi - $PROJ_DIR$\STM32F405RG\Obj\cpuport.pbi + $PROJ_DIR$\STM32F405RG\Obj\utils.pbi $PROJ_DIR$\STM32F405RG\Obj\timer.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_spi.pbi + $PROJ_DIR$\STM32F405RG\Obj\memheap.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sai.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rng.pbi + $PROJ_DIR$\STM32F405RG\Obj\bsp.pbi + $PROJ_DIR$\STM32F405RG\Obj\object.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_it.pbi + $PROJ_DIR$\STM32F405RG\Obj\mempool.o + $PROJ_DIR$\STM32F405RG\Obj\cpuusage.pbi + $PROJ_DIR$\STM32F405RG\Obj\scheduler.pbi $PROJ_DIR$\STM32F405RG\Exe\EasyFlash.out + $PROJ_DIR$\STM32F405RG\Obj\cpuport.pbi + $PROJ_DIR$\STM32F405RG\Obj\slab.o + $PROJ_DIR$\STM32F405RG\Obj\irq.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_sha1.pbi + $PROJ_DIR$\STM32F405RG\Obj\timer.o + $PROJ_DIR$\STM32F405RG\Obj\flash_env.pbi + $PROJ_DIR$\STM32F405RG\Obj\flash_utils.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dcmi.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_exti.pbi + $PROJ_DIR$\STM32F405RG\Obj\context_iar.o $PROJ_DIR$\STM32F405RG\Obj\idle.pbi - $PROJ_DIR$\STM32F405RG\Obj\ringbuffer.pbi - $PROJ_DIR$\STM32F405RG\Obj\clock.pbi - $PROJ_DIR$\STM32F405RG\Obj\cmd.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_var.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_wwdg.pbi - $PROJ_DIR$\STM32F405RG\Obj\pipe.pbi - $PROJ_DIR$\STM32F405RG\Obj\serial.pbi - $PROJ_DIR$\STM32F405RG\Obj\wrokqueue.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_compiler.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_heap.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_init.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_ops.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_error.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_parser.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_token.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_vm.pbi - $PROJ_DIR$\STM32F405RG\Obj\completion.pbi - $PROJ_DIR$\STM32F405RG\Obj\dataqueue.pbi - $PROJ_DIR$\STM32F405RG\Obj\portal.pbi - $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_usart.pbi - $PROJ_DIR$\STM32F405RG\Obj\finsh_node.pbi - $PROJ_DIR$\STM32F405RG\Obj\msh.pbi - $PROJ_DIR$\STM32F405RG\Obj\msh_cmd.pbi - $PROJ_DIR$\STM32F405RG\Obj\shell.pbi - $PROJ_DIR$\STM32F405RG\Obj\symbol.pbi - $TOOLKIT_DIR$\inc\c\stdint.h - $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\STM32F405RG\Obj\user_finsh_cmd.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rcc.pbi + $PROJ_DIR$\STM32F405RG\Obj\app.pbi + $PROJ_DIR$\STM32F405RG\Obj\flash_port.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_pwr.pbi + $PROJ_DIR$\STM32F405RG\Obj\flash_env_wl.pbi + $PROJ_DIR$\STM32F405RG\Obj\flash_iap.pbi + $PROJ_DIR$\STM32F405RG\Obj\startup_stm32f40_41xxx.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma2d.pbi + $PROJ_DIR$\STM32F405RG\Obj\flash.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sdio.pbi + $PROJ_DIR$\STM32F405RG\Obj\scheduler.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_aes.pbi + $PROJ_DIR$\STM32F405RG\Obj\thread.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_tdes.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_crc.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_gpio.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dbgmcu.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_i2c.pbi + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtthread.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_usart.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtm.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rthw.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\..\..\easyflash\inc\flash.h + $TOOLKIT_DIR$\inc\c\stddef.h $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\..\..\easyflash\inc\flash.h $TOOLKIT_DIR$\inc\c\DLib_Product.h $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $TOOLKIT_DIR$\inc\c\string.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\inc\c\stddef.h $TOOLKIT_DIR$\inc\c\xencoding_limits.h - $TOOLKIT_DIR$\inc\c\stdbool.h $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cm4.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_iwdg.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_adc.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_can.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_usart.h $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtservice.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtm.h + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_iwdg.h + $TOOLKIT_DIR$\inc\c\stdbool.h + $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdebug.h + $PROJ_DIR$\..\app\inc\stm32f4xx_conf.h + $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cm4.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\misc.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_adc.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cmFunc.h $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cmInstr.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rthw.h $TOOLKIT_DIR$\inc\c\cmsis_iar.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtthread.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdebug.h - $PROJ_DIR$\..\app\inc\stm32f4xx_conf.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_tim.h - $TOOLKIT_DIR$\inc\c\stdarg.h $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\STM32F405RG\Obj\wrokqueue.pbi + $PROJ_DIR$\STM32F405RG\Obj\completion.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_node.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_wwdg.pbi + $PROJ_DIR$\STM32F405RG\Obj\pipe.pbi + $PROJ_DIR$\STM32F405RG\Obj\msh_cmd.pbi + $PROJ_DIR$\STM32F405RG\Obj\shell.pbi + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\STM32F405RG\Obj\finsh_vm.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_compiler.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_init.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_error.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_parser.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_var.pbi + $PROJ_DIR$\STM32F405RG\Obj\serial.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_heap.pbi + $PROJ_DIR$\STM32F405RG\Obj\portal.pbi + $PROJ_DIR$\STM32F405RG\Obj\cmd.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_ops.pbi + $PROJ_DIR$\STM32F405RG\Obj\clock.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_token.pbi + $PROJ_DIR$\STM32F405RG\Obj\dataqueue.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_usart.pbi + $PROJ_DIR$\STM32F405RG\Obj\msh.pbi + $PROJ_DIR$\STM32F405RG\Obj\symbol.pbi + $TOOLKIT_DIR$\inc\c\stdint.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_flash.h - $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_exti.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdef.h - $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cmSimd.h - $TOOLKIT_DIR$\inc\c\xmtx.h - $PROJ_DIR$\..\RT-Thread-1.2.2\include\cpuusage.h - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\..\components\others\bsp.h - $TOOLKIT_DIR$\inc\c\xlocale_c.h - $PROJ_DIR$\..\components\others\utils.h - $TOOLKIT_DIR$\inc\c\wchar.h - $PROJ_DIR$\..\app\inc\app_task.h - $PROJ_DIR$\..\components\rtt_uart\usart.h - $TOOLKIT_DIR$\inc\c\ctype.h - $TOOLKIT_DIR$\inc\c\xlocale.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h - $TOOLKIT_DIR$\inc\c\ystdio.h - $TOOLKIT_DIR$\inc\c\xtls.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\drivers\serial.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.h - $PROJ_DIR$\..\app\inc\delay_conf.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh.h - $TOOLKIT_DIR$\inc\c\xlocaleuse.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dbgmcu.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_i2c.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_sdio.h $PROJ_DIR$\..\app\inc\stm32f4xx_it.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dma.h $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dac.h $TOOLKIT_DIR$\lib\shb_l.a - $TOOLKIT_DIR$\lib\rt7M_tl.a $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_flash_ramfunc.h $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_pwr.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_ltdc.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_crc.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.h - $PROJ_DIR$\..\components\others\stm32f405xG.icf + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_pwr.h $TOOLKIT_DIR$\lib\m7M_tl.a - $TOOLKIT_DIR$\lib\dl7M_tln.a $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dcmi.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dma.h + $PROJ_DIR$\..\components\others\stm32f405xG.icf $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_cryp.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dma2d.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_fsmc.h + $TOOLKIT_DIR$\lib\dl7M_tln.a $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.h $PROJ_DIR$\STM32F405RG\List\EasyFlash.map $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.h + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_dbgmcu.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_fsmc.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_ltdc.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_hash.h $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_i2c.h - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_sdio.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rtc.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\app\inc\app_task.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\rtdevice.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_exti.h + $PROJ_DIR$\..\components\others\bsp.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_gpio.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rcc.h + $TOOLKIT_DIR$\inc\c\xmtx.h + $TOOLKIT_DIR$\inc\c\wchar.h + $PROJ_DIR$\..\components\rtt_uart\usart.h + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\cpuusage.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\include\drivers\serial.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.h + $PROJ_DIR$\..\app\inc\delay_conf.h + $PROJ_DIR$\..\Libraries\CMSIS\Include\core_cmSimd.h + $PROJ_DIR$\..\components\others\utils.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $TOOLKIT_DIR$\inc\c\ystdio.h + $TOOLKIT_DIR$\inc\c\xtls.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh.h + $PROJ_DIR$\..\RT-Thread-1.2.2\include\rtdef.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_syscfg.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_sai.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rng.h - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_spi.h $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_wwdg.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_rtc.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_spi.h + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\inc\stm32f4xx_sai.h + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rng.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_ltdc.o + $PROJ_DIR$\STM32F405RG\Obj\wrokqueue.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma2d.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_token.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_sha1.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash.o + $PROJ_DIR$\STM32F405RG\Obj\msh_cmd.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_usart.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_exti.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sdio.o + $PROJ_DIR$\STM32F405RG\Obj\irq.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_spi.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_iwdg.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_sai.o + $PROJ_DIR$\STM32F405RG\Obj\device.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_parser.o + $PROJ_DIR$\STM32F405RG\Obj\memheap.o + $PROJ_DIR$\STM32F405RG\Obj\cmd.o + $PROJ_DIR$\STM32F405RG\Obj\ringbuffer.o + $PROJ_DIR$\STM32F405RG\Obj\serial.o + $PROJ_DIR$\STM32F405RG\Obj\shell.o + $PROJ_DIR$\STM32F405RG\Obj\pipe.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash_ramfunc.o + $PROJ_DIR$\STM32F405RG\Obj\portal.o + $PROJ_DIR$\STM32F405RG\Obj\msh.o + $PROJ_DIR$\STM32F405RG\Obj\clock.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_rcc.o + $PROJ_DIR$\STM32F405RG\Obj\ipc.o + $PROJ_DIR$\STM32F405RG\Obj\kservice.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp.pbi + $PROJ_DIR$\STM32F405RG\Obj\system_stm32f4xx.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_fsmc.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dma.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_ops.o + $PROJ_DIR$\STM32F405RG\Obj\idle.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_can.pbi + $PROJ_DIR$\STM32F405RG\Obj\usart.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_dac.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_var.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_init.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_cryp_des.pbi + $PROJ_DIR$\STM32F405RG\Obj\symbol.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_flash_ramfunc.pbi + $PROJ_DIR$\STM32F405RG\Obj\misc.pbi + $PROJ_DIR$\STM32F405RG\Obj\mem.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_node.o + $PROJ_DIR$\STM32F405RG\Obj\cpuusage.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash_md5.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_iwdg.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_heap.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_ltdc.pbi + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_adc.pbi + $PROJ_DIR$\STM32F405RG\Obj\finsh_compiler.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_error.o + $PROJ_DIR$\STM32F405RG\Obj\finsh_vm.o + $PROJ_DIR$\STM32F405RG\Obj\stm32f4xx_hash.pbi + $PROJ_DIR$\STM32F405RG\Obj\ef_env.o + $PROJ_DIR$\STM32F405RG\Obj\ef_iap.o + $PROJ_DIR$\STM32F405RG\Obj\ef_utils.o + $PROJ_DIR$\STM32F405RG\Obj\easyflash.pbi + $PROJ_DIR$\STM32F405RG\Obj\easyflash.o + $PROJ_DIR$\STM32F405RG\Obj\ef_env_wl.o + $PROJ_DIR$\STM32F405RG\Obj\ef_port.o + $PROJ_DIR$\STM32F405RG\Obj\ef_port.pbi + $PROJ_DIR$\..\..\..\easyflash\inc\easyflash.h + $PROJ_DIR$\..\..\..\easyflash\src\easyflash.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env_wl.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_iap.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_utils.c + $PROJ_DIR$\STM32F405RG\Obj\ef_utils.pbi + $PROJ_DIR$\STM32F405RG\Obj\ef_iap.pbi + $PROJ_DIR$\STM32F405RG\Obj\ef_env_wl.pbi + $PROJ_DIR$\STM32F405RG\Obj\ef_env.pbi - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\cpuport.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sdio.c + + + BICOMP + 180 + + + ICCARM + 320 + + + + + ICCARM + 250 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 + + + + + [ROOT_NODE] + + + ILINK + 158 267 + + + + + $PROJ_DIR$\..\components\rtt_uart\usart.c BICOMP - 243 + 348 ICCARM - 222 + 75 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 211 214 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 288 193 189 4 210 302 194 204 192 283 281 291 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\misc.c BICOMP - 248 + 355 ICCARM - 156 + 112 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 213 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_adc.c BICOMP - 238 + 363 ICCARM - 203 + 113 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 214 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c + $PROJ_DIR$\..\..\..\easyflash\src\flash.c BICOMP - 246 + 179 ICCARM - 164 + 100 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 195 246 198 228 197 215 199 201 200 196 208 207 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_env_wl.c BICOMP - 237 + 175 ICCARM - 149 + 82 + + BICOMP + 195 246 198 228 197 215 199 201 200 196 208 207 205 191 202 + ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 195 246 198 228 197 215 199 201 200 196 208 207 205 191 202 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c + $PROJ_DIR$\..\components\others\bsp.c BICOMP - 232 + 152 ICCARM - 227 + 97 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 283 211 214 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 193 189 4 210 302 194 204 192 288 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c + $PROJ_DIR$\..\components\others\utils.c BICOMP - 233 + 146 ICCARM - 205 + 102 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 295 211 214 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 189 4 210 302 194 204 192 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_env.c BICOMP - 228 + 164 ICCARM - 150 + 95 + + BICOMP + 195 246 198 228 197 215 199 201 200 196 208 207 205 191 202 + ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 195 246 198 228 197 215 199 201 200 196 208 207 205 191 202 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c + $PROJ_DIR$\..\app\src\stm32f4xx_it.c BICOMP - 244 + 154 ICCARM - 207 + 94 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 251 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 283 193 189 4 210 302 194 204 192 288 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c + $PROJ_DIR$\..\components\easyflash\port\flash_port.c BICOMP - 234 + 173 + + + ICCARM + 96 + + + + + BICOMP + 195 246 198 228 197 215 199 201 200 196 208 207 193 189 4 210 302 194 204 192 211 214 220 212 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 ICCARM + 195 246 198 228 197 215 199 201 200 196 208 207 193 189 4 210 302 194 204 192 211 214 220 212 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 + + + + + $PROJ_DIR$\..\app\src\app.c + + + BICOMP 172 + + ICCARM + 104 + ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 280 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 211 214 220 212 246 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c + $PROJ_DIR$\..\app\src\app_task.c BICOMP - 241 + 132 ICCARM - 158 + 93 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 280 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 211 214 220 212 246 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 202 208 300 298 283 288 376 196 207 301 289 296 299 286 269 297 287 205 191 292 293 290 295 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c + $PROJ_DIR$\..\app\src\user_finsh_cmd.c BICOMP - 239 + 170 ICCARM - 161 + 80 + + BICOMP + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 211 214 220 212 246 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 376 196 208 207 301 289 296 299 286 202 269 297 287 205 191 + ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 330 322 323 326 313 286 282 331 317 319 280 281 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 211 214 220 212 246 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 376 196 208 207 301 289 296 299 286 202 269 297 287 205 191 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_iap.c BICOMP - 236 + 176 ICCARM - 140 + 91 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 195 246 198 228 197 215 199 201 200 196 208 207 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c + $PROJ_DIR$\..\..\..\easyflash\src\flash_utils.c BICOMP - 240 + 165 ICCARM - 224 + 83 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 195 246 198 228 197 215 199 201 200 196 208 207 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c + $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\iar\startup_stm32f40_41xxx.s + + + AARM + 177 + + + + + $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\system_stm32f4xx.c BICOMP - 230 + 341 ICCARM - 225 + 76 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dcmi.c BICOMP - 242 + 166 ICCARM - 219 + 108 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 + 260 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_gpio.c BICOMP - 229 + 186 ICCARM - 159 + 105 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 298 + 284 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\context_iar.S + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_ltdc.c - AARM - 212 + BICOMP + 362 + + + ICCARM + 310 + + + ICCARM + 275 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 + + - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_exti.c BICOMP - 260 + 167 ICCARM - 151 + 318 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 340 350 345 358 342 + 282 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp.c BICOMP - 261 + 340 ICCARM - 157 + 128 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 340 345 + 263 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rcc.c BICOMP - 257 + 171 ICCARM - 163 + 337 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 350 354 342 358 345 360 + 285 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rtc.c BICOMP - 258 + 137 ICCARM - 169 + 106 ICCARM - 356 354 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 342 + 306 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_pwr.c + + + BICOMP + 174 + + + ICCARM + 101 + + + + + ICCARM + 258 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 + + + + + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_crc.c + + + BICOMP + 185 + + + ICCARM + 89 + + + + + ICCARM + 257 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 + + + + + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dac.c BICOMP - 250 + 349 + + + ICCARM + 79 + + ICCARM + 253 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 + + + + + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_sha1.c + + + BICOMP 162 + + ICCARM + 314 + ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 342 + 276 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_can.c BICOMP - 268 + 347 ICCARM - 153 + 81 ICCARM - 335 300 86 301 311 304 276 273 274 275 278 284 279 293 294 330 322 323 326 313 286 282 331 317 319 280 281 328 + 203 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_des.c BICOMP - 270 + 352 ICCARM - 155 + 78 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 330 322 323 326 313 286 282 331 317 319 280 281 328 335 + 263 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rng.c BICOMP - 249 + 151 ICCARM - 152 + 309 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 330 322 323 326 313 286 282 331 317 319 280 281 + 304 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sai.c BICOMP - 223 + 150 ICCARM - 142 + 324 ICCARM - 366 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 308 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_tim.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma.c BICOMP - 6 + 343 ICCARM - 122 + 77 ICCARM - 303 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 292 289 291 + 261 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_usart.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_tdes.c BICOMP - 266 + 184 ICCARM - 136 + 90 ICCARM - 292 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 289 291 + 263 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_wwdg.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash_ramfunc.c BICOMP - 251 + 354 ICCARM - 127 + 333 ICCARM - 367 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 255 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash.c BICOMP - 262 + 346 ICCARM - 170 + 319 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 354 342 356 + 247 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_iwdg.c BICOMP - 259 + 360 ICCARM - 166 + 323 ICCARM - 345 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 + 206 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_aes.c BICOMP - 269 + 182 ICCARM - 160 + 107 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 330 322 323 326 313 286 282 331 317 319 280 281 335 + 263 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dbgmcu.c BICOMP - 271 + 187 ICCARM - 171 + 86 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 + 270 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma2d.c BICOMP - 247 + 178 ICCARM - 138 + 312 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 280 282 281 + 264 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_fsmc.c BICOMP - 254 + 342 ICCARM - 148 + 114 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 + 274 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash.c BICOMP - 28 + 367 ICCARM - 121 + 315 ICCARM - 363 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 276 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_md5.c BICOMP - 263 + 359 ICCARM - 124 + 88 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 + 276 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_i2c.c BICOMP - 264 + 188 ICCARM - 125 + 84 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 298 + 248 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\cpuusage.c BICOMP - 265 + 156 ICCARM - 137 + 358 ICCARM - 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c BICOMP - 253 + 236 ICCARM - 154 + 361 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 272 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\dataqueue.c BICOMP - 252 + 242 ICCARM - 131 + 103 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 324 327 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 193 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_tim.c BICOMP - 255 + 111 ICCARM - 165 + 99 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 350 345 342 356 354 + 219 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 190 213 203 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_heap.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_var.c BICOMP - 256 + 234 ICCARM - 167 + 350 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 342 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 272 - $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_error.c BICOMP - 267 + 232 ICCARM - 168 + 365 ICCARM - 330 300 86 301 311 304 276 273 274 275 278 284 279 293 294 322 323 326 313 286 282 331 317 319 280 281 350 345 342 360 + 278 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sdio.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_init.c BICOMP - 196 + 231 ICCARM - 146 + 351 ICCARM - 361 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 273 266 272 277 278 249 - [ROOT_NODE] - - - ILINK - 245 355 - - - - - $PROJ_DIR$\..\components\rtt_uart\usart.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_vm.c BICOMP - 188 + 229 ICCARM - 19 + 366 ICCARM - 302 290 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 321 298 300 86 301 311 304 293 294 316 324 327 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 266 272 268 - $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\system_stm32f4xx.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_parser.c BICOMP - 176 + 233 ICCARM - 20 + 326 ICCARM - 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 256 273 278 277 272 - $PROJ_DIR$\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\pipe.c BICOMP - 213 + 225 ICCARM - 66 + 332 ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 - $PROJ_DIR$\..\Libraries\CMSIS\Device\ST\STM32F4xx\Source\Templates\iar\startup_stm32f40_41xxx.s - - - AARM - 214 - - - - - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_adc.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_spi.c BICOMP - 177 + 148 ICCARM - 11 + 322 ICCARM - 290 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 308 306 309 288 310 303 292 289 291 + 307 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_syscfg.c BICOMP - 202 + 92 ICCARM - 63 + 98 ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 + 303 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\completion.c BICOMP - 211 + 222 ICCARM - 65 + 85 ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_ops.c BICOMP - 206 + 239 ICCARM - 57 + 344 - - BICOMP - 277 272 276 273 274 275 278 284 279 283 282 285 298 300 86 301 311 304 293 294 302 290 305 287 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 - ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 298 300 86 301 311 304 293 294 302 290 305 287 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 + 268 266 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 272 - $PROJ_DIR$\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_token.c BICOMP - 208 + 241 ICCARM - 62 + 313 - - BICOMP - 277 272 276 273 274 275 278 284 279 283 282 285 280 281 286 - ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 280 281 286 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 256 278 - $PROJ_DIR$\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\portal.c BICOMP - 210 + 237 ICCARM - 64 + 334 - - BICOMP - 277 272 276 273 274 275 278 284 279 283 282 285 280 281 286 - ICCARM - 277 272 276 273 274 275 278 284 279 283 282 285 280 281 286 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\misc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh.c BICOMP - 175 + 244 ICCARM - 10 + 335 ICCARM - 289 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 291 + 252 189 4 210 302 194 198 228 197 215 199 201 200 204 192 301 289 296 299 286 202 208 269 297 287 205 191 292 - $PROJ_DIR$\..\components\others\bsp.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\msh_cmd.c BICOMP - 215 + 226 ICCARM - 67 + 316 ICCARM - 316 302 290 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 298 300 86 301 311 304 293 294 321 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 301 289 296 299 286 202 208 269 297 287 205 191 252 - $PROJ_DIR$\..\app\src\app.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\shell.c BICOMP - 204 + 227 ICCARM - 60 + 331 ICCARM - 320 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 302 290 305 287 272 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 301 289 296 299 286 202 208 269 297 287 205 191 292 252 - $PROJ_DIR$\..\app\src\app_task.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\clock.c BICOMP - 226 + 240 ICCARM - 56 + 336 ICCARM - 320 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 302 290 305 287 272 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 286 282 315 325 316 321 277 283 285 330 322 323 326 313 331 317 319 280 281 328 329 314 318 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\app\src\stm32f4xx_it.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\cmd.c BICOMP - 218 + 238 ICCARM - 59 + 328 ICCARM - 333 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 316 298 300 86 301 311 304 293 294 321 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 301 289 296 299 286 202 208 269 297 287 205 191 - $PROJ_DIR$\..\app\src\user_finsh_cmd.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_node.c BICOMP - 209 + 223 ICCARM - 61 + 357 ICCARM - 298 300 86 301 311 304 276 273 274 275 278 284 279 293 294 302 290 305 287 272 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 277 283 282 285 330 322 323 326 313 286 331 317 319 280 281 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 273 278 272 249 - $PROJ_DIR$\..\components\others\utils.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\serial\serial.c BICOMP - 220 + 235 ICCARM - 68 + 330 ICCARM - 318 302 290 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 308 306 309 288 310 303 292 289 291 300 86 301 311 304 293 294 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_tdes.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_usart.c BICOMP - 191 + 243 ICCARM - 58 + 317 ICCARM - 351 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 190 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash.c + $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_wwdg.c BICOMP - 185 + 224 ICCARM - 144 + 87 ICCARM - 306 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 309 288 310 303 292 289 291 + 305 220 212 246 198 228 197 215 199 201 200 217 218 279 216 294 209 211 214 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma2d.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\ringbuffer.c BICOMP - 193 + 131 ICCARM - 145 + 329 ICCARM - 352 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 205 208 191 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_iwdg.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\drivers\src\wrokqueue.c BICOMP - 180 + 221 ICCARM - 132 + 311 ICCARM - 288 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 281 291 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_flash_ramfunc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\finsh_compiler.c BICOMP - 181 + 230 ICCARM - 130 + 364 ICCARM - 339 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 273 278 272 268 266 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_aes.c + $PROJ_DIR$\..\RT-Thread-1.2.2\components\finsh\symbol.c BICOMP - 197 + 245 ICCARM - 1 + 353 ICCARM - 351 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 301 189 4 210 302 194 198 228 197 215 199 201 200 204 192 289 296 299 286 202 208 269 297 287 205 191 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_crc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\kservice.c BICOMP - 200 + 133 ICCARM - 15 + 339 ICCARM - 344 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp_des.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\device.c BICOMP - 173 + 134 ICCARM - 71 + 325 ICCARM - 351 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dac.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\timer.c BICOMP - 182 + 147 ICCARM - 78 + 163 ICCARM - 336 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_pwr.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\memheap.c BICOMP - 190 + 149 ICCARM - 123 + 327 ICCARM - 341 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\context_iar.S + + + AARM + 168 + + + + + $PROJ_DIR$\..\RT-Thread-1.2.2\src\ipc.c BICOMP - 174 + 143 ICCARM - 147 + 338 ICCARM - 357 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_exti.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mem.c BICOMP - 198 + 139 ICCARM - 143 + 356 ICCARM - 308 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 301 289 296 299 286 202 208 269 297 287 205 191 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_gpio.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\object.c BICOMP - 189 + 136 ICCARM - 126 + 153 ICCARM - 309 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_sha1.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\idle.c BICOMP - 194 + 169 ICCARM - 134 + 345 ICCARM - 357 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_ltdc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\module.c BICOMP - 183 + 141 ICCARM - 141 + 138 ICCARM - 343 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_hash_md5.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\scheduler.c BICOMP - 178 + 157 ICCARM - 129 + 181 ICCARM - 357 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dma.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\slab.c BICOMP - 184 + 145 ICCARM - 69 + 160 ICCARM - 334 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rcc.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\thread.c BICOMP - 199 + 142 ICCARM - 139 + 183 ICCARM - 310 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 193 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dbgmcu.c + $PROJ_DIR$\..\RT-Thread-1.2.2\libcpu\arm\cortex-m4\cpuport.c BICOMP - 195 + 159 ICCARM - 72 + 140 ICCARM - 332 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rng.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\irq.c BICOMP - 221 + 161 ICCARM - 133 + 321 ICCARM - 365 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_i2c.c + $PROJ_DIR$\..\RT-Thread-1.2.2\src\mempool.c BICOMP - 201 + 144 ICCARM - 119 + 155 ICCARM - 359 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 193 189 4 210 302 194 198 228 197 215 199 201 200 204 192 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_dcmi.c + $PROJ_DIR$\STM32F405RG\Exe\EasyFlash.out - BICOMP - 192 + ILINK + 267 - ICCARM - 2 + OBJCOPY + 135 - ICCARM - 349 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + ILINK + 262 104 93 97 336 328 85 168 140 358 103 325 372 368 373 369 374 370 364 365 361 351 357 344 326 313 350 366 345 338 321 339 356 327 155 112 138 335 316 153 332 334 329 181 330 331 160 177 113 81 89 128 107 78 90 79 86 108 77 312 318 319 333 114 105 315 88 314 84 94 323 310 101 337 309 106 324 320 322 98 99 317 87 353 76 183 163 75 80 102 311 254 271 259 265 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_fsmc.c + $PROJ_DIR$\..\..\..\easyflash\src\easyflash.c BICOMP - 179 + 371 ICCARM - 128 + 372 + + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 + ICCARM - 353 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 376 246 198 228 197 215 199 201 200 196 208 207 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_rtc.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env_wl.c BICOMP - 216 + 385 ICCARM - 120 + 373 + + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 205 191 202 + ICCARM - 362 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 376 246 198 228 197 215 199 201 200 196 208 207 205 191 202 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_sai.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c BICOMP - 217 + 375 ICCARM - 135 + 374 + + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 193 189 4 210 302 194 204 192 211 214 220 212 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 + ICCARM - 364 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 376 246 198 228 197 215 199 201 200 196 208 207 193 189 4 210 302 194 204 192 211 214 220 212 217 218 279 216 294 209 282 247 284 206 285 219 190 213 203 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_can.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env.c BICOMP - 186 + 386 ICCARM - 12 + 368 + + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 205 191 202 + ICCARM - 291 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 + 376 246 198 228 197 215 199 201 200 196 208 207 205 191 202 - $PROJ_DIR$\..\Libraries\STM32F4xx_StdPeriph_Driver\src\stm32f4xx_cryp.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_iap.c BICOMP - 187 + 384 ICCARM - 0 + 369 + + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 + ICCARM - 351 305 287 272 276 273 274 275 278 284 279 297 299 307 296 312 295 302 290 308 306 309 288 310 303 292 289 291 + 376 246 198 228 197 215 199 201 200 196 208 207 - $PROJ_DIR$\STM32F405RG\Exe\EasyFlash.out + $PROJ_DIR$\..\..\..\easyflash\src\ef_utils.c - ILINK - 355 + BICOMP + 383 - OBJCOPY - 235 + ICCARM + 370 - ILINK - 346 60 56 67 156 152 124 212 222 172 125 149 165 166 167 163 168 169 151 157 162 170 63 62 64 65 57 66 164 158 150 159 161 140 224 10 227 153 160 225 131 137 138 203 154 155 219 214 11 12 15 0 1 71 58 78 72 2 69 145 143 144 130 128 126 147 129 134 119 59 132 141 123 139 133 120 135 146 142 121 122 136 127 171 20 205 207 19 61 68 148 337 338 347 348 + BICOMP + 376 246 198 228 197 215 199 201 200 196 208 207 + + + ICCARM + 376 246 198 228 197 215 199 201 200 196 208 207 diff --git a/demo/stm32f4xx/EWARM/EasyFlash.ewp b/demo/stm32f4xx/EWARM/EasyFlash.ewp index d423eee..d007fa5 100644 --- a/demo/stm32f4xx/EWARM/EasyFlash.ewp +++ b/demo/stm32f4xx/EWARM/EasyFlash.ewp @@ -955,25 +955,25 @@ port - $PROJ_DIR$\..\components\easyflash\port\flash_port.c + $PROJ_DIR$\..\components\easyflash\port\ef_port.c src - $PROJ_DIR$\..\..\..\easyflash\src\flash.c + $PROJ_DIR$\..\..\..\easyflash\src\easyflash.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_env.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_env_wl.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_env_wl.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_iap.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_iap.c - $PROJ_DIR$\..\..\..\easyflash\src\flash_utils.c + $PROJ_DIR$\..\..\..\easyflash\src\ef_utils.c diff --git a/demo/stm32f4xx/EWARM/settings/EasyFlash.dbgdt b/demo/stm32f4xx/EWARM/settings/EasyFlash.dbgdt index b0daba6..5d03a0d 100644 --- a/demo/stm32f4xx/EWARM/settings/EasyFlash.dbgdt +++ b/demo/stm32f4xx/EWARM/settings/EasyFlash.dbgdt @@ -34,7 +34,7 @@ 20011 - 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 + 58082994eMasterRcvStateeMasterSndStateCpuUsageMinorExpressionLocationTypeValue138150100221200StaticWatch200WATCH_1StaticWatchExpressionLocationTypeValue100150100100ExpressionLocationTypeValue140150100139 diff --git a/demo/stm32f4xx/EWARM/settings/EasyFlash.wsdt b/demo/stm32f4xx/EWARM/settings/EasyFlash.wsdt index 58d8b49..30d0dd4 100644 --- a/demo/stm32f4xx/EWARM/settings/EasyFlash.wsdt +++ b/demo/stm32f4xx/EWARM/settings/EasyFlash.wsdt @@ -17,7 +17,7 @@ 300Find-All-DeclarationsDebug-Log20121532481191622300Debug-Log58082994300AccessAddressNameSizeZone_I01201501505012020 - + TabID-30370-1297 @@ -29,20 +29,20 @@ - 0TabID-28122-19222Debug LogDebug-LogTabID-16453-20055BuildBuild1 + 0TabID-28122-19222Debug LogDebug-LogTabID-16453-20055BuildBuild1 - TextEditor$WS_DIR$\..\app\src\app_task.c0000002110211000100000010000001 + TextEditor$WS_DIR$\..\app\src\app_task.c00000033933900100000010000001 - iaridepm.enu1-2-2744314-2-25105130357152740188095771458-2-21781682-2-21684180100238118614330357152740 + iaridepm.enu1-2-2744314-2-25105130357152740188095771458-2-21781682-2-21684180100238118614330357152740 diff --git a/demo/stm32f4xx/app/src/app_task.c b/demo/stm32f4xx/app/src/app_task.c index 884eec3..8fe6528 100644 --- a/demo/stm32f4xx/app/src/app_task.c +++ b/demo/stm32f4xx/app/src/app_task.c @@ -2,7 +2,7 @@ #include #include #include "bsp.h" -#include "flash.h" +#include "easyflash.h" #include "finsh.h" #include "shell.h" #include "delay_conf.h" @@ -56,7 +56,7 @@ void test_env(void) { char *c_old_boot_times, c_new_boot_times[11] = {0}; /* get the boot count number from Env */ - c_old_boot_times = flash_get_env("boot_times"); + c_old_boot_times = ef_get_env("boot_times"); RT_ASSERT(c_old_boot_times); i_boot_times = atol(c_old_boot_times); /* boot count +1 */ @@ -65,8 +65,8 @@ void test_env(void) { /* interger to string */ sprintf(c_new_boot_times,"%ld", i_boot_times); /* set and store the boot count number to Env */ - flash_set_env("boot_times", c_new_boot_times); - flash_save_env(); + ef_set_env("boot_times", c_new_boot_times); + ef_save_env(); } /** @@ -78,7 +78,7 @@ void sys_init_thread(void* parameter){ set_system_status(SYSTEM_STATUS_INIT); /* EasyFlash initialization */ - if (flash_init() == FLASH_NO_ERR) { + if (easyflash_init() == EF_NO_ERR) { /* initialize OK and switch to running status */ set_system_status(SYSTEM_STATUS_RUN); /* test Env demo */ diff --git a/demo/stm32f4xx/app/src/user_finsh_cmd.c b/demo/stm32f4xx/app/src/user_finsh_cmd.c index 380fdde..020a9fe 100644 --- a/demo/stm32f4xx/app/src/user_finsh_cmd.c +++ b/demo/stm32f4xx/app/src/user_finsh_cmd.c @@ -7,7 +7,7 @@ #include #include #include -#include "flash.h" +#include "easyflash.h" #include "finsh.h" void reboot(uint8_t argc, char **argv) { @@ -32,28 +32,28 @@ void setenv(uint8_t argc, char **argv) { } } if (argc == 1) { - flash_set_env(value, value); + ef_set_env(value, value); } else if (argc == 2) { - flash_set_env(argv[1], value); + ef_set_env(argv[1], value); } else { - flash_set_env(argv[1], argv[2]); + ef_set_env(argv[1], argv[2]); } } MSH_CMD_EXPORT(setenv, Set an envrionment variable.); void printenv(uint8_t argc, char **argv) { - flash_print_env(); + ef_print_env(); } MSH_CMD_EXPORT(printenv, Print all envrionment variables.); void saveenv(uint8_t argc, char **argv) { - flash_save_env(); + ef_save_env(); } MSH_CMD_EXPORT(saveenv, Save all envrionment variables to flash.); void getvalue(uint8_t argc, char **argv) { char *value = NULL; - value = flash_get_env(argv[1]); + value = ef_get_env(argv[1]); if (value) { rt_kprintf("The %s value is %s.\n", argv[1], value); } else { diff --git a/demo/stm32f4xx/components/easyflash/port/flash_port.c b/demo/stm32f4xx/components/easyflash/port/ef_port.c similarity index 85% rename from demo/stm32f4xx/components/easyflash/port/flash_port.c rename to demo/stm32f4xx/components/easyflash/port/ef_port.c index 69abbfe..cb56a3a 100644 --- a/demo/stm32f4xx/components/easyflash/port/flash_port.c +++ b/demo/stm32f4xx/components/easyflash/port/ef_port.c @@ -26,24 +26,24 @@ * Created on: 2015-01-16 */ -#include "flash.h" +#include "easyflash.h" #include #include #include /* ENV start address */ -#define FLASH_ENV_START_ADDR (FLASH_BASE + 256 * 1024) /* on the chip position: 256KB */ +#define ENV_START_ADDR (FLASH_BASE + 256 * 1024) /* on the chip position: 256KB */ /* the minimum size of flash erasure */ -#define FLASH_ERASE_MIN_SIZE (128 * 1024) /* it is 128K for compatibility */ -#ifdef FLASH_ENV_USING_WEAR_LEVELING_MODE +#define ERASE_MIN_SIZE (128 * 1024) /* it is 128K for compatibility */ +#ifdef EF_ENV_USING_WL_MODE /* ENV section total bytes size in wear leveling mode. */ -#define FLASH_ENV_SECTION_SIZE (4 * FLASH_ERASE_MIN_SIZE)/* 512K */ +#define ENV_SECTION_SIZE (4 * ERASE_MIN_SIZE) /* 512K */ #else -/* ENV section total bytes size in normal mode. It's equal with FLASH_USER_SETTING_ENV_SIZE */ -#define FLASH_ENV_SECTION_SIZE (FLASH_USER_SETTING_ENV_SIZE) +/* ENV section total bytes size in normal mode. It's equal with EF_USER_SETTING_ENV_SIZE */ +#define ENV_SECTION_SIZE (EF_USER_SETTING_ENV_SIZE) #endif /* print debug information of flash */ -#define FLASH_PRINT_DEBUG +#define PRINT_DEBUG /* base address of the flash sectors */ #define ADDR_FLASH_SECTOR_0 ((uint32_t)0x08000000) /* Base address of Sector 0, 16 K bytes */ @@ -72,7 +72,7 @@ #define ADDR_FLASH_SECTOR_23 ((uint32_t)0x081E0000) /* Base address of Sector 23, 128 K bytes */ /* default ENV set for user */ -static const flash_env default_env_set[] = { +static const ef_env default_env_set[] = { {"iap_need_copy_app","0"}, {"iap_copy_app_size","0"}, {"stop_in_bootloader","0"}, @@ -98,25 +98,24 @@ static uint32_t stm32_get_sector_size(uint32_t sector); * * @return result */ -FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, - flash_env const **default_env, size_t *default_env_size, size_t *log_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, + ef_env const **default_env, size_t *default_env_size, size_t *log_size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_ENV_SECTION_SIZE % 4 == 0); + EF_ASSERT(EF_USER_SETTING_ENV_SIZE % 4 == 0); + EF_ASSERT(ENV_SECTION_SIZE % 4 == 0); - *env_addr = FLASH_ENV_START_ADDR; - *env_total_size = FLASH_ENV_SECTION_SIZE; - *erase_min_size = FLASH_ERASE_MIN_SIZE; + *env_addr = ENV_START_ADDR; + *env_total_size = ENV_SECTION_SIZE; + *erase_min_size = ERASE_MIN_SIZE; *default_env = default_env_set; - *default_env_size = sizeof(default_env_set)/sizeof(default_env_set[0]); - + *default_env_size = sizeof(default_env_set) / sizeof(default_env_set[0]); + rt_sem_init(&env_cache_lock, "env lock", 1, RT_IPC_FLAG_PRIO); return result; } - /** * Read data from flash. * @note This operation's units is word. @@ -127,10 +126,10 @@ FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t * * @return result */ -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(size % 4 == 0); + EF_ASSERT(size % 4 == 0); /*copy from flash to ram */ for (; size > 0; size -= 4, addr += 4, buf++) { @@ -150,14 +149,14 @@ FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { * * @return result */ -FlashErrCode flash_erase(uint32_t addr, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_erase(uint32_t addr, size_t size) { + EfErrCode result = EF_NO_ERR; FLASH_Status flash_status; size_t erased_size = 0; uint32_t cur_erase_sector; - /* make sure the start address is a multiple of FLASH_ERASE_MIN_SIZE */ - FLASH_ASSERT(addr % FLASH_ERASE_MIN_SIZE == 0); + /* make sure the start address is a multiple of ERASE_MIN_SIZE */ + EF_ASSERT(addr % ERASE_MIN_SIZE == 0); /* start erase */ FLASH_Unlock(); @@ -168,7 +167,7 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { cur_erase_sector = stm32_get_sector(addr + erased_size); flash_status = FLASH_EraseSector(cur_erase_sector, VoltageRange_3); if (flash_status != FLASH_COMPLETE) { - result = FLASH_ERASE_ERR; + result = EF_ERASE_ERR; break; } erased_size += stm32_get_sector_size(cur_erase_sector); @@ -188,13 +187,13 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { * * @return result */ -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; size_t i; uint32_t read_data; - FLASH_ASSERT(size % 4 == 0); - + EF_ASSERT(size % 4 == 0); + FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_EOP | FLASH_FLAG_OPERR | FLASH_FLAG_WRPERR | FLASH_FLAG_PGAERR | FLASH_FLAG_PGPERR | FLASH_FLAG_PGSERR); @@ -204,7 +203,7 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { read_data = *(uint32_t *)addr; /* check data */ if (read_data != *buf) { - result = FLASH_WRITE_ERR; + result = EF_WRITE_ERR; break; } } @@ -216,17 +215,18 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { /** * lock the ENV ram cache */ -void flash_env_lock(void) { +void ef_port_env_lock(void) { rt_sem_take(&env_cache_lock, RT_WAITING_FOREVER); } /** * unlock the ENV ram cache */ -void flash_env_unlock(void) { +void ef_port_env_unlock(void) { rt_sem_release(&env_cache_lock); } + /** * Get the sector of a given address * @@ -299,7 +299,7 @@ static uint32_t stm32_get_sector(uint32_t address) { * @return sector size */ static uint32_t stm32_get_sector_size(uint32_t sector) { - FLASH_ASSERT(IS_FLASH_SECTOR(sector)); + EF_ASSERT(IS_FLASH_SECTOR(sector)); switch (sector) { case 0: return 16 * 1024; @@ -339,18 +339,18 @@ static uint32_t stm32_get_sector_size(uint32_t sector) { * @param ... args * */ -void flash_log_debug(const char *file, const long line, const char *format, ...) { +void ef_log_debug(const char *file, const long line, const char *format, ...) { -#ifdef FLASH_PRINT_DEBUG +#ifdef PRINT_DEBUG va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash](%s:%ld) ", file, line); + ef_print("[Flash](%s:%ld) ", file, line); /* must use vprintf to print */ rt_vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); va_end(args); #endif @@ -363,15 +363,15 @@ void flash_log_debug(const char *file, const long line, const char *format, ...) * @param format output format * @param ... args */ -void flash_log_info(const char *format, ...) { +void ef_log_info(const char *format, ...) { va_list args; /* args point to the first variable parameter */ va_start(args, format); - flash_print("[Flash]"); + ef_print("[Flash]"); /* must use vprintf to print */ rt_vsprintf(log_buf, format, args); - flash_print("%s", log_buf); + ef_print("%s", log_buf); va_end(args); } /** @@ -380,7 +380,7 @@ void flash_log_info(const char *format, ...) { * @param format output format * @param ... args */ -void flash_print(const char *format, ...) { +void ef_print(const char *format, ...) { va_list args; /* args point to the first variable parameter */ diff --git a/docs/zh/api.md b/docs/zh/api.md index 3903f65..abb2d3e 100644 --- a/docs/zh/api.md +++ b/docs/zh/api.md @@ -2,11 +2,11 @@ --- -所有支持的API接口都在 `\flash\inc\flash.h` 中声明。以下内容较多,建议使用 **CTRL+F** 搜索。 +所有支持的API接口都在 `\easyflash\inc\easyflash.h` 中声明。以下内容较多,建议使用 **CTRL+F** 搜索。 名词介绍: -**备份区** :是EasyFlash定义的一个存放环境变量及已下载程序的Flash区域,详细存储架构可以参考 `\flash\src\flash.c` 文件头位置的注释说明。 +**备份区** :是EasyFlash定义的一个存放环境变量及已下载程序的Flash区域,详细存储架构可以参考 `\easyflash\src\easyflash.c` 文件头位置的注释说明。 **环境变量表** :负责存放所有的环境变量,该表在Flash及RAM中均存在,上电后需从Flash加载到RAM中,修改后,则需要保存其至Flash中。。 @@ -14,10 +14,10 @@ ### 1.1 初始化 -初始化EasyFlash。在初始化的过程中会使用 `\flash\port\flash_port.c` 中的用户自定义参数。 +初始化EasyFlash。在初始化的过程中会使用 `\easyflash\port\ef_port.c` 中的用户自定义参数。 ```C -FlashErrCode flash_init(void) +EfErrCode easyflash_init(void) ``` ### 1.2 环境变量 @@ -27,15 +27,15 @@ FlashErrCode flash_init(void) 加载Flash中的所有环境变量到系统内存中。 ```C -void flash_load_env(void) +void ef_load_env(void) ``` #### 1.2.2 打印环境变量 -通过在移植接口( `\flash\port\flash_port.c` )中定义的 `flash_print` 打印方法,来将Flash中的所有环境变量输出出来。 +通过在移植接口( `\easyflash\port\ef_port.c` )中定义的 `ef_print` 打印方法,来将Flash中的所有环境变量输出出来。 ```C -void flash_print_env(void) +void ef_print_env(void) ``` #### 1.2.3 获取环境变量 @@ -43,7 +43,7 @@ void flash_print_env(void) 通过环境变量的名字来获取其对应的值。(注意:此处的环境变量指代的已加载到内存中的环境变量) ```C -char *flash_get_env(const char *key) +char *ef_get_env(const char *key) ``` |参数 |描述| @@ -61,7 +61,7 @@ char *flash_get_env(const char *key) - **删除** :当入参中的value为空时,则会删除入参名对应的环境变量。 ```C -FlashErrCode flash_set_env(const char *key, const char *value) +EfErrCode ef_set_env(const char *key, const char *value) ``` |参数 |描述| @@ -74,26 +74,26 @@ FlashErrCode flash_set_env(const char *key, const char *value) 保存内存中的环境变量表到Flash中。 ```C -FlashErrCode flash_save_env(void) +EfErrCode ef_save_env(void) ``` #### 1.2.6 重置环境变量 将内存中的环境变量表重置为默认值。 ```C -FlashErrCode flash_env_set_default(void) +EfErrCode ef_env_set_default(void) ``` #### 1.2.7 获取环境变量分区的总容量 ```C -size_t flash_get_env_total_size(void) +size_t ef_get_env_total_size(void) ``` #### 1.2.8 获取当前环境变量写入到Flash的字节大小 ```C -size_t flash_get_env_write_bytes(void) +size_t ef_get_env_write_bytes(void) ``` ### 1.3 在线升级 @@ -101,7 +101,7 @@ size_t flash_get_env_write_bytes(void) #### 1.3.1 擦除备份区中的应用程序 ```C -FlashErrCode flash_erase_bak_app(size_t app_size) +EfErrCode ef_erase_bak_app(size_t app_size) ``` #### 1.3.2 擦除用户的应用程序 @@ -109,7 +109,7 @@ FlashErrCode flash_erase_bak_app(size_t app_size) 注意:请不要在应用程序中调用该方法 ```C -FlashErrCode flash_erase_user_app(uint32_t user_app_addr, size_t user_app_size) +EfErrCode ef_erase_user_app(uint32_t user_app_addr, size_t user_app_size) ``` |参数 |描述| @@ -122,7 +122,7 @@ FlashErrCode flash_erase_user_app(uint32_t user_app_addr, size_t user_app_size) 注意:请不要在Bootloader中调用该方法 ```C -FlashErrCode flash_erase_bl(uint32_t bl_addr, size_t bl_size) +EfErrCode ef_erase_bl(uint32_t bl_addr, size_t bl_size) ``` |参数 |描述| @@ -136,10 +136,10 @@ FlashErrCode flash_erase_bl(uint32_t bl_addr, size_t bl_size) 注意:写之前请先确认Flash已进行擦除。 ```C -FlashErrCode flash_write_data_to_bak(uint8_t *data, - size_t size, - size_t *cur_size, - size_t total_size) +EfErrCode ef_write_data_to_bak(uint8_t *data, + size_t size, + size_t *cur_size, + size_t total_size) ``` |参数 |描述| @@ -157,7 +157,7 @@ FlashErrCode flash_write_data_to_bak(uint8_t *data, 2、不要在应用程序中调用该方法 ```C -FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) +EfErrCode ef_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) ``` |参数 |描述| @@ -173,7 +173,7 @@ FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) 2、不要在Bootloader中调用该方法 ```C -FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) +EfErrCode ef_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) ``` |参数 |描述| @@ -186,7 +186,7 @@ FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) #### 1.4.1 从Flash中读取已存在的日志 ```C -FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size); +EfErrCode ef_log_read(size_t index, uint32_t *log, size_t size); ``` |参数 |描述| @@ -198,7 +198,7 @@ FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size); #### 1.4.2 往Flash中保存日志 ```C -FlashErrCode flash_log_write(const uint32_t *log, size_t size); +EfErrCode ef_log_write(const uint32_t *log, size_t size); ``` |参数 |描述| @@ -209,13 +209,13 @@ FlashErrCode flash_log_write(const uint32_t *log, size_t size); #### 1.4.3 清空存储在Flash中全部日志 ```C -FlashErrCode flash_log_clean(void); +EfErrCode ef_log_clean(void); ``` #### 1.4.4 获取已存储在Flash中的日志大小 ```C -size_t flash_log_get_used_size(void); +size_t ef_log_get_used_size(void); ``` ## 2 移植接口 @@ -225,7 +225,7 @@ size_t flash_log_get_used_size(void); 最小单位为4个字节 ```C -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size) ``` |参数 |描述| @@ -237,7 +237,7 @@ FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) ### 2.2 擦除Flash ```C -FlashErrCode flash_erase(uint32_t addr, size_t size) +EfErrCode ef_port_erase(uint32_t addr, size_t size) ``` |参数 |描述| @@ -250,7 +250,7 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) 最小单位为4个字节 ```C -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size) ``` |参数 |描述| @@ -262,21 +262,21 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) ### 2.4 对环境变量缓冲区加锁 ```C -void flash_env_lock(void) +void ef_port_env_lock(void) ``` ### 2.5 对环境变量缓冲区解锁 ```C -void flash_env_unlock(void) +void ef_port_env_unlock(void) ``` ### 2.6 打印调试日志信息 -在定义 `FLASH_PRINT_DEBUG` 宏后,打印调试日志信息 +在定义 `PRINT_DEBUG` 宏后,打印调试日志信息 ```C -void flash_log_debug(const char *file, const long line, const char *format, ...) +void ef_log_debug(const char *file, const long line, const char *format, ...) ``` |参数 |描述| @@ -289,7 +289,7 @@ void flash_log_debug(const char *file, const long line, const char *format, ...) ### 2.7 打印普通日志信息 ```C -void flash_log_info(const char *format, ...) +void ef_log_info(const char *format, ...) ``` |参数 |描述| @@ -299,10 +299,10 @@ void flash_log_info(const char *format, ...) ### 2.8 无格式打印信息 -该方法输出无固定格式的打印信息,为 `flash_print_env` 方法所用。而 `flash_log_debug` 及 `flash_log_info` 可以输出带指定前缀及格式的打印日志信息。 +该方法输出无固定格式的打印信息,为 `ef_print_env` 方法所用。而 `ef_log_debug` 及 `ef_log_info` 可以输出带指定前缀及格式的打印日志信息。 ```C -void flash_print(const char *format, ...) +void ef_print(const char *format, ...) ``` |参数 |描述| @@ -312,33 +312,35 @@ void flash_print(const char *format, ...) ## 3、配置 -配置该库需要打开`\flash\flash.h`文件,开启、关闭、修改对应的宏即可。 +配置该库需要打开`\easyflash\easyflash.h`文件,开启、关闭、修改对应的宏即可。 ### 3.1 ENV功能 - 默认状态:开启 -- 操作方法:开启、关闭`FLASH_USING_ENV`宏即可 +- 操作方法:开启、关闭`EF_USING_ENV`宏即可 ### 3.2 IAP功能 - 默认状态:开启 -- 操作方法:开启、关闭`FLASH_USING_IAP`宏即可 +- 操作方法:开启、关闭`EF_USING_IAP`宏即可 ### 3.3 Log功能 - 默认状态:开启 -- 操作方法:开启、关闭`FLASH_USING_LOG`宏即可 +- 操作方法:开启、关闭`EF_USING_LOG`宏即可 ### 3.4 环境变量的容量 - 默认容量:2K Bytes -- 操作方法:修改`FLASH_USER_SETTING_ENV_SIZE`宏定义即可 +- 操作方法:修改`EF_USER_SETTING_ENV_SIZE`宏定义即可 ### 3.5 磨损平衡/常规 模式 +> 磨损平衡:由于flash在写操作之前需要擦除且使用寿命有限,所以需要设计合理的磨损平衡(写平衡)机制,来保证数据被安全的保存在未到擦写寿命的Flash区中。 + - 默认状态:常规模式 -- 磨损平衡模式:打开`FLASH_ENV_USING_WEAR_LEVELING_MODE`,关闭`FLASH_ENV_USING_NORMAL_MODE` -- 常规模式:打开`FLASH_ENV_USING_NORMAL_MODE`,关闭`FLASH_ENV_USING_WEAR_LEVELING_MODE` +- 磨损平衡模式:打开`EF_ENV_USING_WL_MODE`,关闭`EF_ENV_USING_NORMAL_MODE` +- 常规模式:打开`EF_ENV_USING_NORMAL_MODE`,关闭`FLASH_ENV_USING_WL_MODE` > 注意:只能选择其中一种模式,两种模式不能同时使用 @@ -347,6 +349,6 @@ void flash_print(const char *format, ...) ## 4、注意 - 写数据前务必记得先擦除 -- 环境变量设置完后,只有调用 `flash_save_env`才会保存在Flash中,否则开机会丢失修改的内容 +- 环境变量设置完后,只有调用 `ef_save_env`才会保存在Flash中,否则开机会丢失修改的内容 - 不要在应用程序及Bootloader中执行擦除及拷贝自身的动作 - ENV及Log功能对Flash擦除和写入要求4个字节对齐,擦除的最小单位则需根据用户的平台来确定 diff --git a/docs/zh/images/EnvDemo.gif b/docs/zh/images/EnvDemo.gif index ee93f11..92cdcc8 100644 Binary files a/docs/zh/images/EnvDemo.gif and b/docs/zh/images/EnvDemo.gif differ diff --git a/easyflash/inc/easyflash.h b/easyflash/inc/easyflash.h new file mode 100644 index 0000000..0667e3a --- /dev/null +++ b/easyflash/inc/easyflash.h @@ -0,0 +1,142 @@ +/* + * This file is part of the EasyFlash Library. + * + * Copyright (c) 2014, Armink, + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * 'Software'), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * Function: Is is an head file for this library. You can see all be called functions. + * Created on: 2014-09-10 + */ + + +#ifndef EASYFLASH_H_ +#define EASYFLASH_H_ + +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* using ENV function */ +#define EF_USING_ENV +/* using IAP function */ +#define EF_USING_IAP +/* using save log function */ +/* #define EF_USING_LOG */ +/* the user setting size of ENV, must be word alignment */ +#define EF_USER_SETTING_ENV_SIZE (2 * 1024) /* default 2K */ +/* using wear leveling mode or normal mode */ +/* #define EF_ENV_USING_WL_MODE */ +#define EF_ENV_USING_NORMAL_MODE + +/* EasyFlash debug print function. Must be implement by user. */ +#define EF_DEBUG(...) ef_log_debug(__FILE__, __LINE__, __VA_ARGS__) +/* EasyFlash routine print function. Must be implement by user. */ +#define EF_INFO(...) ef_log_info(__VA_ARGS__) +/* EasyFlash assert for developer. */ +#define EF_ASSERT(EXPR) \ +if (!(EXPR)) \ +{ \ + EF_DEBUG("(%s) has assert failed at %s.\n", #EXPR, __FUNCTION__); \ + while (1); \ +} +/* EasyFlash software version number */ +#define EF_SW_VERSION "1.07.04" + +typedef struct _eflash_env{ + char *key; + char *value; +}ef_env, *ef_env_t; + +/* EasyFlash error code */ +typedef enum { + EF_NO_ERR, + EF_ERASE_ERR, + EF_WRITE_ERR, + EF_ENV_NAME_ERR, + EF_ENV_NAME_EXIST, + EF_ENV_FULL, +} EfErrCode; + +/* the flash sector current status */ +typedef enum { + FLASH_SECTOR_EMPTY, + FLASH_SECTOR_USING, + FLASH_SECTOR_FULL, +}FlashSecrorStatus; + +/* easyflash.c */ +EfErrCode easyflash_init(void); + +#ifdef EF_USING_ENV +/* env.c env_wl.c */ +void ef_load_env(void); +void ef_print_env(void); +char *ef_get_env(const char *key); +EfErrCode ef_set_env(const char *key, const char *value); +EfErrCode ef_save_env(void); +EfErrCode ef_env_set_default(void); +size_t ef_get_env_total_size(void); +size_t ef_get_env_write_bytes(void); +#endif + +#ifdef EF_USING_IAP +/* iap.c */ +EfErrCode ef_erase_bak_app(size_t app_size); +EfErrCode ef_erase_user_app(uint32_t user_app_addr, size_t user_app_size); +EfErrCode ef_erase_bl(uint32_t bl_addr, size_t bl_size); +EfErrCode ef_write_data_to_bak(uint8_t *data, size_t size, size_t *cur_size, + size_t total_size); +EfErrCode ef_copy_app_from_bak(uint32_t user_app_addr, size_t app_size); +EfErrCode ef_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size); +#endif + +#ifdef EF_USING_LOG +/* log.c */ +EfErrCode ef_log_read(size_t index, uint32_t *log, size_t size); +EfErrCode ef_log_write(const uint32_t *log, size_t size); +EfErrCode ef_log_clean(void); +size_t ef_log_get_used_size(void); +#endif + +/* utils.c */ +uint32_t calc_crc32(uint32_t crc, const void *buf, size_t size); +FlashSecrorStatus ef_get_sector_status(uint32_t addr, size_t sec_size); +uint32_t ef_find_sec_using_end_addr(uint32_t addr, size_t sec_size); + +/* port.c */ +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size); +EfErrCode ef_port_erase(uint32_t addr, size_t size); +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size); +void ef_port_env_lock(void); +void ef_port_env_unlock(void); +void ef_log_debug(const char *file, const long line, const char *format, ...); +void ef_log_info(const char *format, ...); +void ef_print(const char *format, ...); + +#ifdef __cplusplus +} +#endif + +#endif /* EASYFLASH_H_ */ diff --git a/easyflash/inc/flash.h b/easyflash/inc/flash.h deleted file mode 100644 index 2eb0ff9..0000000 --- a/easyflash/inc/flash.h +++ /dev/null @@ -1,142 +0,0 @@ -/* - * This file is part of the EasyFlash Library. - * - * Copyright (c) 2014, Armink, - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * 'Software'), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * Function: Is is an head file for this library. You can see all be called functions. - * Created on: 2014-09-10 - */ - - -#ifndef FLASH_H_ -#define FLASH_H_ - -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/* using ENV function */ -#define FLASH_USING_ENV -/* using IAP function */ -#define FLASH_USING_IAP -/* using save log function */ -#define FLASH_USING_LOG -/* the user setting size of ENV, must be word alignment */ -#define FLASH_USER_SETTING_ENV_SIZE (2 * 1024) /* default 2K */ -/* using wear leveling mode or normal mode */ -/* #define FLASH_ENV_USING_WEAR_LEVELING_MODE */ -#define FLASH_ENV_USING_NORMAL_MODE - -/* Flash debug print function. Must be implement by user. */ -#define FLASH_DEBUG(...) flash_log_debug(__FILE__, __LINE__, __VA_ARGS__) -/* Flash routine print function. Must be implement by user. */ -#define FLASH_INFO(...) flash_log_info(__VA_ARGS__) -/* Flash assert for developer. */ -#define FLASH_ASSERT(EXPR) \ -if (!(EXPR)) \ -{ \ - FLASH_DEBUG("(%s) has assert failed at %s.\n", #EXPR, __FUNCTION__); \ - while (1); \ -} -/* EasyFlash software version number */ -#define FLASH_SW_VERSION "1.07.02" - -typedef struct _flash_env{ - char *key; - char *value; -}flash_env, *flash_env_t; - -/* Flash error code */ -typedef enum { - FLASH_NO_ERR, - FLASH_ERASE_ERR, - FLASH_WRITE_ERR, - FLASH_ENV_NAME_ERR, - FLASH_ENV_NAME_EXIST, - FLASH_ENV_FULL, -} FlashErrCode; - -/* the flash sector current status */ -typedef enum { - FLASH_SECTOR_EMPTY, - FLASH_SECTOR_USING, - FLASH_SECTOR_FULL, -}FlashSecrorStatus; - -/* flash.c */ -FlashErrCode flash_init(void); - -#ifdef FLASH_USING_ENV -/* flash_env.c flash_env_wl.c */ -void flash_load_env(void); -void flash_print_env(void); -char *flash_get_env(const char *key); -FlashErrCode flash_set_env(const char *key, const char *value); -FlashErrCode flash_save_env(void); -FlashErrCode flash_env_set_default(void); -size_t flash_get_env_total_size(void); -size_t flash_get_env_write_bytes(void); -#endif - -#ifdef FLASH_USING_IAP -/* flash_iap.c */ -FlashErrCode flash_erase_bak_app(size_t app_size); -FlashErrCode flash_erase_user_app(uint32_t user_app_addr, size_t user_app_size); -FlashErrCode flash_erase_bl(uint32_t bl_addr, size_t bl_size); -FlashErrCode flash_write_data_to_bak(uint8_t *data, size_t size, size_t *cur_size, - size_t total_size); -FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size); -FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size); -#endif - -#ifdef FLASH_USING_LOG -/* flash_log.c */ -FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size); -FlashErrCode flash_log_write(const uint32_t *log, size_t size); -FlashErrCode flash_log_clean(void); -size_t flash_log_get_used_size(void); -#endif - -/* flash_utils.c */ -uint32_t calc_crc32(uint32_t crc, const void *buf, size_t size); -FlashSecrorStatus flash_get_sector_status(uint32_t addr, size_t sec_size); -uint32_t flash_find_sec_using_end_addr(uint32_t addr, size_t sec_size); - -/* flash_port.c */ -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size); -FlashErrCode flash_erase(uint32_t addr, size_t size); -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size); -void flash_env_lock(void); -void flash_env_unlock(void); -void flash_log_debug(const char *file, const long line, const char *format, ...); -void flash_log_info(const char *format, ...); -void flash_print(const char *format, ...); - -#ifdef __cplusplus -} -#endif - -#endif /* FLASH_H_ */ diff --git a/easyflash/port/flash_port.c b/easyflash/port/ef_port.c similarity index 69% rename from easyflash/port/flash_port.c rename to easyflash/port/ef_port.c index 189c2c5..476ad3b 100644 --- a/easyflash/port/flash_port.c +++ b/easyflash/port/ef_port.c @@ -26,23 +26,23 @@ * Created on: 2015-01-16 */ -#include "flash.h" +#include "easyflash.h" /* environment variables start address */ -#define FLASH_ENV_START_ADDR /* @note you must define it for a value */ +#define ENV_START_ADDR /* @note you must define it for a value */ /* the minimum size of flash erasure */ -#define FLASH_ERASE_MIN_SIZE /* @note you must define it for a value */ -#ifdef FLASH_ENV_USING_WEAR_LEVELING_MODE +#define ERASE_MIN_SIZE /* @note you must define it for a value */ +#ifdef EF_ENV_USING_WL_MODE /* ENV section total bytes size in wear leveling mode. */ -#define FLASH_ENV_SECTION_SIZE /* @note you must define it for a value */ +#define ENV_SECTION_SIZE /* @note you must define it for a value */ #else /* ENV section total bytes size in normal mode. It's equal with FLASH_USER_SETTING_ENV_SIZE */ -#define FLASH_ENV_SECTION_SIZE (FLASH_USER_SETTING_ENV_SIZE) +#define ENV_SECTION_SIZE (EF_USER_SETTING_ENV_SIZE) #endif /* saved log section size */ -#define FLASH_LOG_AREA_SIZE /* @note you must define it for a value */ +#define LOG_AREA_SIZE /* @note you must define it for a value */ /* print debug information of flash */ -#define FLASH_PRINT_DEBUG +#define PRINT_DEBUG /* default environment variables set for user */ static const flash_env default_env_set[] = { @@ -61,19 +61,19 @@ static const flash_env default_env_set[] = { * * @return result */ -FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, - flash_env const **default_env, size_t *default_env_size, size_t *log_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_init(uint32_t *env_addr, size_t *env_total_size, size_t *erase_min_size, + ef_env const **default_env, size_t *default_env_size, size_t *log_size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE % 4 == 0); - FLASH_ASSERT(FLASH_ENV_SECTION_SIZE % 4 == 0); + EF_ASSERT(EF_USER_SETTING_ENV_SIZE % 4 == 0); + EF_ASSERT(ENV_SECTION_SIZE % 4 == 0); - *env_addr = FLASH_ENV_START_ADDR; - *env_total_size = FLASH_ENV_SECTION_SIZE; - *erase_min_size = FLASH_ERASE_MIN_SIZE; + *env_addr = ENV_START_ADDR; + *env_total_size = ENV_SECTION_SIZE; + *erase_min_size = ERASE_MIN_SIZE; *default_env = default_env_set; - *default_env_size = sizeof(default_env_set)/sizeof(default_env_set[0]); - *log_size = FLASH_LOG_AREA_SIZE; + *default_env_size = sizeof(default_env_set) / sizeof(default_env_set[0]); + *log_size = LOG_AREA_SIZE; return result; } @@ -88,10 +88,10 @@ FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, size_t * * @return result */ -FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; - - FLASH_ASSERT(size % 4 == 0); +EfErrCode ef_port_read(uint32_t addr, uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; + + EF_ASSERT(size % 4 == 0); /* You can add your code under here. */ @@ -108,11 +108,11 @@ FlashErrCode flash_read(uint32_t addr, uint32_t *buf, size_t size) { * * @return result */ -FlashErrCode flash_erase(uint32_t addr, size_t size) { - FlashErrCode result = FLASH_NO_ERR; - - /* make sure the start address is a multiple of FLASH_ERASE_MIN_SIZE */ - FLASH_ASSERT(addr % FLASH_ERASE_MIN_SIZE == 0); +EfErrCode ef_port_erase(uint32_t addr, size_t size) { + EfErrCode result = EF_NO_ERR; + + /* make sure the start address is a multiple of ERASE_MIN_SIZE */ + EF_ASSERT(addr % ERASE_MIN_SIZE == 0); /* You can add your code under here. */ @@ -129,10 +129,10 @@ FlashErrCode flash_erase(uint32_t addr, size_t size) { * * @return result */ -FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_port_write(uint32_t addr, const uint32_t *buf, size_t size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(size % 4 == 0); + EF_ASSERT(size % 4 == 0); /* You can add your code under here. */ @@ -142,7 +142,7 @@ FlashErrCode flash_write(uint32_t addr, const uint32_t *buf, size_t size) { /** * lock the ENV ram cache */ -void flash_env_lock(void) { +void ef_port_env_lock(void) { /* You can add your code under here. */ @@ -151,7 +151,7 @@ void flash_env_lock(void) { /** * unlock the ENV ram cache */ -void flash_env_unlock(void) { +void ef_port_env_unlock(void) { /* You can add your code under here. */ @@ -167,9 +167,9 @@ void flash_env_unlock(void) { * @param ... args * */ -void flash_log_debug(const char *file, const long line, const char *format, ...) { +void ef_log_debug(const char *file, const long line, const char *format, ...) { -#ifdef FLASH_PRINT_DEBUG +#ifdef PRINT_DEBUG va_list args; @@ -190,7 +190,7 @@ void flash_log_debug(const char *file, const long line, const char *format, ...) * @param format output format * @param ... args */ -void flash_log_info(const char *format, ...) { +void ef_log_info(const char *format, ...) { va_list args; /* args point to the first variable parameter */ @@ -206,7 +206,7 @@ void flash_log_info(const char *format, ...) { * @param format output format * @param ... args */ -void flash_print(const char *format, ...) { +void ef_print(const char *format, ...) { va_list args; /* args point to the first variable parameter */ diff --git a/easyflash/src/flash.c b/easyflash/src/easyflash.c similarity index 56% rename from easyflash/src/flash.c rename to easyflash/src/easyflash.c index e16085c..875a909 100644 --- a/easyflash/src/flash.c +++ b/easyflash/src/easyflash.c @@ -50,66 +50,66 @@ * 2.data section.(storage all environment variables) * */ -#include "flash.h" +#include "easyflash.h" /** - * Flash system initialize. + * EasyFlash system initialize. * * @return result */ -FlashErrCode flash_init(void) { - extern FlashErrCode flash_port_init(uint32_t *env_addr, size_t *env_total_size, - size_t *erase_min_size, flash_env const **default_env, size_t *default_env_size, +EfErrCode easyflash_init(void) { + extern EfErrCode ef_port_init(uint32_t *env_addr, size_t *env_total_size, + size_t *erase_min_size, ef_env const **default_env, size_t *default_env_size, size_t *log_size); - extern FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, - size_t erase_min_size, flash_env const *default_env, size_t default_env_size); - extern FlashErrCode flash_iap_init(uint32_t start_addr); - extern FlashErrCode flash_log_init(uint32_t start_addr, size_t log_size, size_t erase_min_size); + extern EfErrCode ef_env_init(uint32_t start_addr, size_t total_size, size_t erase_min_size, + ef_env const *default_env, size_t default_env_size); + extern EfErrCode ef_iap_init(uint32_t start_addr); + extern EfErrCode ef_log_init(uint32_t start_addr, size_t log_size, size_t erase_min_size); uint32_t env_start_addr; size_t env_total_size = 0, erase_min_size = 0, default_env_set_size = 0, log_size = 0; - const flash_env *default_env_set; - FlashErrCode result = FLASH_NO_ERR; + const ef_env *default_env_set; + EfErrCode result = EF_NO_ERR; - result = flash_port_init(&env_start_addr, &env_total_size, &erase_min_size, &default_env_set, + result = ef_port_init(&env_start_addr, &env_total_size, &erase_min_size, &default_env_set, &default_env_set_size, &log_size); -#ifdef FLASH_USING_ENV - if (result == FLASH_NO_ERR) { - result = flash_env_init(env_start_addr, env_total_size, erase_min_size, default_env_set, +#ifdef EF_USING_ENV + if (result == EF_NO_ERR) { + result = ef_env_init(env_start_addr, env_total_size, erase_min_size, default_env_set, default_env_set_size); } #endif -#ifdef FLASH_USING_IAP - if (result == FLASH_NO_ERR) { - if (flash_get_env_total_size() < erase_min_size) { - result = flash_iap_init(env_start_addr + erase_min_size + log_size); - } else if (flash_get_env_total_size() % erase_min_size == 0) { - result = flash_iap_init(env_start_addr + flash_get_env_total_size() + log_size); +#ifdef EF_USING_IAP + if (result == EF_NO_ERR) { + if (ef_get_env_total_size() < erase_min_size) { + result = ef_iap_init(env_start_addr + erase_min_size + log_size); + } else if (ef_get_env_total_size() % erase_min_size == 0) { + result = ef_iap_init(env_start_addr + ef_get_env_total_size() + log_size); } else { - result = flash_iap_init((flash_get_env_total_size() / erase_min_size + 1) * erase_min_size + log_size); + result = ef_iap_init((ef_get_env_total_size() / erase_min_size + 1) * erase_min_size + log_size); } } #endif -#ifdef FLASH_USING_LOG - if (result == FLASH_NO_ERR) { - if (flash_get_env_total_size() < erase_min_size) { - result = flash_log_init(env_start_addr + erase_min_size, log_size, erase_min_size); - } else if (flash_get_env_total_size() % erase_min_size == 0) { - result = flash_log_init(env_start_addr + flash_get_env_total_size(), log_size, erase_min_size); +#ifdef EF_USING_LOG + if (result == EF_NO_ERR) { + if (ef_get_env_total_size() < erase_min_size) { + result = ef_log_init(env_start_addr + erase_min_size, log_size, erase_min_size); + } else if (ef_get_env_total_size() % erase_min_size == 0) { + result = ef_log_init(env_start_addr + ef_get_env_total_size(), log_size, erase_min_size); } else { - result = flash_log_init((flash_get_env_total_size() / erase_min_size + 1) * erase_min_size, + result = ef_log_init((ef_get_env_total_size() / erase_min_size + 1) * erase_min_size, log_size, erase_min_size); } } #endif - if (result == FLASH_NO_ERR) { - FLASH_DEBUG("EasyFlash V%s is initialize success.\n", FLASH_SW_VERSION); + if (result == EF_NO_ERR) { + EF_DEBUG("EasyFlash V%s is initialize success.\n", EF_SW_VERSION); } else { - FLASH_DEBUG("EasyFlash V%s is initialize fail.\n", FLASH_SW_VERSION); + EF_DEBUG("EasyFlash V%s is initialize fail.\n", EF_SW_VERSION); } return result; diff --git a/easyflash/src/flash_env.c b/easyflash/src/ef_env.c similarity index 72% rename from easyflash/src/flash_env.c rename to easyflash/src/ef_env.c index c032902..92db391 100644 --- a/easyflash/src/flash_env.c +++ b/easyflash/src/ef_env.c @@ -26,13 +26,13 @@ * Created on: 2014-10-06 */ -#include "flash.h" +#include "easyflash.h" #include #include -#ifdef FLASH_USING_ENV +#ifdef EF_USING_ENV -#ifdef FLASH_ENV_USING_NORMAL_MODE +#ifdef EF_ENV_USING_NORMAL_MODE /** * ENV area has 2 sections @@ -58,11 +58,11 @@ enum { }; /* default ENV set, must be initialized by user */ -static flash_env const *default_env_set = NULL; +static ef_env const *default_env_set = NULL; /* default ENV set size, must be initialized by user */ static size_t default_env_set_size = NULL; /* ENV RAM cache */ -static uint32_t env_cache[FLASH_USER_SETTING_ENV_SIZE / 4] = { 0 }; +static uint32_t env_cache[EF_USER_SETTING_ENV_SIZE / 4] = { 0 }; /* ENV start address in flash */ static uint32_t env_start_addr = NULL; @@ -70,11 +70,11 @@ static uint32_t get_env_system_addr(void); static uint32_t get_env_data_addr(void); static uint32_t get_env_end_addr(void); static void set_env_end_addr(uint32_t end_addr); -static FlashErrCode write_env(const char *key, const char *value); +static EfErrCode write_env(const char *key, const char *value); static uint32_t *find_env(const char *key); -static FlashErrCode del_env(const char *key); +static EfErrCode del_env(const char *key); static size_t get_env_data_size(void); -static FlashErrCode create_env(const char *key, const char *value); +static EfErrCode create_env(const char *key, const char *value); static uint32_t calc_env_crc(void); static bool env_crc_is_ok(void); @@ -91,26 +91,26 @@ static bool env_crc_is_ok(void); * * @return result */ -FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, size_t erase_min_size, - flash_env const *default_env, size_t default_env_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_env_init(uint32_t start_addr, size_t total_size, size_t erase_min_size, + ef_env const *default_env, size_t default_env_size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(start_addr); - FLASH_ASSERT(total_size); + EF_ASSERT(start_addr); + EF_ASSERT(total_size); /* user_size must equal with total_size in normal mode */ - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE == total_size); - FLASH_ASSERT(default_env); - FLASH_ASSERT(default_env_size < total_size); + EF_ASSERT(EF_USER_SETTING_ENV_SIZE == total_size); + EF_ASSERT(default_env); + EF_ASSERT(default_env_size < total_size); /* must be word alignment for ENV */ - FLASH_ASSERT(total_size % 4 == 0); + EF_ASSERT(total_size % 4 == 0); env_start_addr = start_addr; default_env_set = default_env; default_env_set_size = default_env_size; - FLASH_DEBUG("Env start address is 0x%08X, size is %d bytes.\n", start_addr, total_size); + EF_DEBUG("Env start address is 0x%08X, size is %d bytes.\n", start_addr, total_size); - flash_load_env(); + ef_load_env(); return result; } @@ -120,15 +120,15 @@ FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, size_t erase * * @return result */ -FlashErrCode flash_env_set_default(void){ - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_env_set_default(void){ + EfErrCode result = EF_NO_ERR; size_t i; - FLASH_ASSERT(default_env_set); - FLASH_ASSERT(default_env_set_size); + EF_ASSERT(default_env_set); + EF_ASSERT(default_env_set_size); /* lock the ENV cache */ - flash_env_lock(); + ef_port_env_lock(); /* set environment end address is at data section start address */ set_env_end_addr(get_env_data_addr()); @@ -139,9 +139,9 @@ FlashErrCode flash_env_set_default(void){ } /* unlock the ENV cache */ - flash_env_unlock(); + ef_port_env_unlock(); - flash_save_env(); + ef_save_env(); return result; } @@ -152,7 +152,7 @@ FlashErrCode flash_env_set_default(void){ * @return system section start address */ static uint32_t get_env_system_addr(void) { - FLASH_ASSERT(env_start_addr); + EF_ASSERT(env_start_addr); return env_start_addr; } @@ -162,7 +162,7 @@ static uint32_t get_env_system_addr(void) { * @return data section start address */ static uint32_t get_env_data_addr(void) { - FLASH_ASSERT(env_start_addr); + EF_ASSERT(env_start_addr); return env_start_addr + ENV_PARAM_BYTE_SIZE; } @@ -201,8 +201,8 @@ static size_t get_env_data_size(void) { * * @return size */ -size_t flash_get_env_total_size(void) { - return FLASH_USER_SETTING_ENV_SIZE; +size_t ef_get_env_total_size(void) { + return EF_USER_SETTING_ENV_SIZE; } /** @@ -210,7 +210,7 @@ size_t flash_get_env_total_size(void) { * * @return write bytes */ -size_t flash_get_env_write_bytes(void) { +size_t ef_get_env_write_bytes(void) { return get_env_end_addr() - env_start_addr; } @@ -222,8 +222,8 @@ size_t flash_get_env_write_bytes(void) { * * @return result */ -static FlashErrCode write_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode write_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; size_t ker_len = strlen(key), value_len = strlen(value), env_str_len; char *env_cache_bak = (char *)env_cache; @@ -233,11 +233,11 @@ static FlashErrCode write_env(const char *key, const char *value) { env_str_len = (env_str_len / 4 + 1) * 4; } /* check capacity of ENV */ - if (env_str_len + get_env_data_size() >= flash_get_env_total_size()) { - return FLASH_ENV_FULL; + if (env_str_len + get_env_data_size() >= ef_get_env_total_size()) { + return EF_ENV_FULL; } /* calculate current ENV ram cache end address */ - env_cache_bak += flash_get_env_write_bytes(); + env_cache_bak += ef_get_env_write_bytes(); /* copy key name */ memcpy(env_cache_bak, key, ker_len); env_cache_bak += ker_len; @@ -269,16 +269,16 @@ static uint32_t *find_env(const char *key) { char *env_start, *env_end, *env; size_t key_len = strlen(key), env_len; - FLASH_ASSERT(env_start_addr); + EF_ASSERT(env_start_addr); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not empty!\n"); + EF_INFO("Flash ENV name must be not empty!\n"); return NULL; } /* from data section start to data section end */ env_start = (char *) ((char *) env_cache + ENV_PARAM_BYTE_SIZE); - env_end = (char *) ((char *) env_cache + flash_get_env_write_bytes()); + env_end = (char *) ((char *) env_cache + ef_get_env_write_bytes()); /* ENV is null */ if (env_start == env_end) { @@ -314,26 +314,26 @@ static uint32_t *find_env(const char *key) { * * @return result */ -static FlashErrCode create_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode create_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(key); - FLASH_ASSERT(value); + EF_ASSERT(key); + EF_ASSERT(value); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not empty!\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name must be not empty!\n"); + return EF_ENV_NAME_ERR; } if (strchr(key, '=')) { - FLASH_INFO("Flash ENV name can't contain '='.\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name can't contain '='.\n"); + return EF_ENV_NAME_ERR; } /* find ENV */ if (find_env(key)) { - FLASH_INFO("The name of \"%s\" is already exist.\n", key); - return FLASH_ENV_NAME_EXIST; + EF_INFO("The name of \"%s\" is already exist.\n", key); + return EF_ENV_NAME_EXIST; } /* write ENV at the end of cache */ result = write_env(key, value); @@ -348,29 +348,29 @@ static FlashErrCode create_env(const char *key, const char *value) { * * @return result */ -static FlashErrCode del_env(const char *key){ - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode del_env(const char *key){ + EfErrCode result = EF_NO_ERR; char *del_env_str = NULL; size_t del_env_length, remain_env_length; - FLASH_ASSERT(key); + EF_ASSERT(key); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not NULL!\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name must be not NULL!\n"); + return EF_ENV_NAME_ERR; } if (strchr(key, '=')) { - FLASH_INFO("Flash ENV name or value can't contain '='.\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name or value can't contain '='.\n"); + return EF_ENV_NAME_ERR; } /* find ENV */ del_env_str = (char *) find_env(key); if (!del_env_str) { - FLASH_INFO("Not find \"%s\" in ENV.\n", key); - return FLASH_ENV_NAME_ERR; + EF_INFO("Not find \"%s\" in ENV.\n", key); + return EF_ENV_NAME_ERR; } del_env_length = strlen(del_env_str); /* '\0' also must be as ENV length */ @@ -399,11 +399,11 @@ static FlashErrCode del_env(const char *key){ * * @return result */ -FlashErrCode flash_set_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_set_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; /* lock the ENV cache */ - flash_env_lock(); + ef_port_env_lock(); /* if ENV value is empty, delete it */ if (*value == NULL) { @@ -413,12 +413,12 @@ FlashErrCode flash_set_env(const char *key, const char *value) { if (find_env(key)) { result = del_env(key); } - if (result == FLASH_NO_ERR) { + if (result == EF_NO_ERR) { result = create_env(key, value); } } /* unlock the ENV cache */ - flash_env_unlock(); + ef_port_env_unlock(); return result; } @@ -430,7 +430,7 @@ FlashErrCode flash_set_env(const char *key, const char *value) { * * @return value */ -char *flash_get_env(const char *key) { +char *ef_get_env(const char *key) { uint32_t *env_cache_addr = NULL; char *value = NULL; @@ -451,7 +451,7 @@ char *flash_get_env(const char *key) { /** * Print ENV. */ -void flash_print_env(void) { +void ef_print_env(void) { uint32_t *env_cache_data_addr = env_cache + ENV_PARAM_WORD_SIZE, *env_cache_end_addr = (uint32_t *) (env_cache + ENV_PARAM_WORD_SIZE + get_env_data_size() / 4); @@ -461,43 +461,43 @@ void flash_print_env(void) { for (; env_cache_data_addr < env_cache_end_addr; env_cache_data_addr += 1) { for (j = 0; j < 4; j++) { c = (*env_cache_data_addr) >> (8 * j); - flash_print("%c", c); + ef_print("%c", c); if (c == NULL) { - flash_print("\n"); + ef_print("\n"); break; } } } - flash_print("\nENV size: %ld/%ld bytes, mode: normal.\n", - flash_get_env_write_bytes(), flash_get_env_total_size()); + ef_print("\nENV size: %ld/%ld bytes, mode: normal.\n", + ef_get_env_write_bytes(), ef_get_env_total_size()); } /** * Load flash ENV to ram. */ -void flash_load_env(void) { +void ef_load_env(void) { uint32_t *env_cache_bak, env_end_addr; /* read ENV end address from flash */ - flash_read(get_env_system_addr() + ENV_PARAM_INDEX_END_ADDR * 4, &env_end_addr, 4); + ef_port_read(get_env_system_addr() + ENV_PARAM_INDEX_END_ADDR * 4, &env_end_addr, 4); /* if ENV is not initialize or flash has dirty data, set default for it */ if ((env_end_addr == 0xFFFFFFFF) - || (env_end_addr > env_start_addr + flash_get_env_total_size())) { - flash_env_set_default(); + || (env_end_addr > env_start_addr + ef_get_env_total_size())) { + ef_env_set_default(); } else { /* set ENV end address */ set_env_end_addr(env_end_addr); env_cache_bak = env_cache + ENV_PARAM_WORD_SIZE; /* read all ENV from flash */ - flash_read(get_env_data_addr(), env_cache_bak, get_env_data_size()); + ef_port_read(get_env_data_addr(), env_cache_bak, get_env_data_size()); /* read ENV CRC code from flash */ - flash_read(get_env_system_addr() + ENV_PARAM_INDEX_DATA_CRC * 4, + ef_port_read(get_env_system_addr() + ENV_PARAM_INDEX_DATA_CRC * 4, &env_cache[ENV_PARAM_INDEX_DATA_CRC] , 4); /* if ENV CRC32 check is fault, set default for it */ if (!env_crc_is_ok()) { - FLASH_INFO("Warning: ENV CRC check failed. Set it to default.\n"); - flash_env_set_default(); + EF_INFO("Warning: ENV CRC check failed. Set it to default.\n"); + ef_env_set_default(); } } } @@ -505,34 +505,34 @@ void flash_load_env(void) { /** * Save ENV to flash. */ -FlashErrCode flash_save_env(void) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_save_env(void) { + EfErrCode result = EF_NO_ERR; /* calculate and cache CRC32 code */ env_cache[ENV_PARAM_INDEX_DATA_CRC] = calc_env_crc(); /* erase ENV */ - result = flash_erase(get_env_system_addr(), flash_get_env_write_bytes()); + result = ef_port_erase(get_env_system_addr(), ef_get_env_write_bytes()); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Erased ENV OK.\n"); + case EF_NO_ERR: { + EF_INFO("Erased ENV OK.\n"); break; } - case FLASH_ERASE_ERR: { - FLASH_INFO("Warning: Erased ENV fault!\n"); + case EF_ERASE_ERR: { + EF_INFO("Warning: Erased ENV fault!\n"); /* will return when erase fault */ return result; } } /* write ENV to flash */ - result = flash_write(get_env_system_addr(), env_cache, flash_get_env_write_bytes()); + result = ef_port_write(get_env_system_addr(), env_cache, ef_get_env_write_bytes()); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Saved ENV OK.\n"); + case EF_NO_ERR: { + EF_INFO("Saved ENV OK.\n"); break; } - case FLASH_WRITE_ERR: { - FLASH_INFO("Warning: Saved ENV fault!\n"); + case EF_WRITE_ERR: { + EF_INFO("Warning: Saved ENV fault!\n"); break; } } @@ -552,7 +552,7 @@ static uint32_t calc_env_crc(void) { * The 4 is ENV end address bytes size. */ crc32 = calc_crc32(crc32, &env_cache[ENV_PARAM_INDEX_END_ADDR], 4); crc32 = calc_crc32(crc32, &env_cache[ENV_PARAM_WORD_SIZE], get_env_data_size()); - FLASH_DEBUG("Calculate Env CRC32 number is 0x%08X.\n", crc32); + EF_DEBUG("Calculate Env CRC32 number is 0x%08X.\n", crc32); return crc32; } @@ -564,13 +564,13 @@ static uint32_t calc_env_crc(void) { */ static bool env_crc_is_ok(void) { if (calc_env_crc() == env_cache[ENV_PARAM_INDEX_DATA_CRC]) { - FLASH_DEBUG("Verify Env CRC32 result is OK.\n"); + EF_DEBUG("Verify Env CRC32 result is OK.\n"); return true; } else { return false; } } -#endif /* FLASH_ENV_USING_NORMAL_MODE */ +#endif /* EF_ENV_USING_NORMAL_MODE */ -#endif /* FLASH_USING_ENV */ +#endif /* EF_USING_ENV */ diff --git a/easyflash/src/flash_env_wl.c b/easyflash/src/ef_env_wl.c similarity index 73% rename from easyflash/src/flash_env_wl.c rename to easyflash/src/ef_env_wl.c index 6272911..504839c 100644 --- a/easyflash/src/flash_env_wl.c +++ b/easyflash/src/ef_env_wl.c @@ -26,13 +26,13 @@ * Created on: 2015-02-11 */ -#include "flash.h" +#include "easyflash.h" #include #include -#ifdef FLASH_USING_ENV +#ifdef EF_USING_ENV -#ifdef FLASH_ENV_USING_WEAR_LEVELING_MODE +#ifdef EF_ENV_USING_WL_MODE /** * ENV area has 2 sections @@ -65,7 +65,7 @@ enum { }; /* default ENV set, must be initialized by user */ -static flash_env const *default_env_set = NULL; +static ef_env const *default_env_set = NULL; /* default ENV set size, must be initialized by user */ static size_t default_env_set_size = NULL; /* flash ENV all section total size */ @@ -73,7 +73,7 @@ static size_t env_total_size = NULL; /* the minimum size of flash erasure */ static size_t flash_erase_min_size = NULL; /* ENV RAM cache */ -static uint32_t env_cache[FLASH_USER_SETTING_ENV_SIZE / 4] = { 0 }; +static uint32_t env_cache[EF_USER_SETTING_ENV_SIZE / 4] = { 0 }; /* ENV start address in flash */ static uint32_t env_start_addr = NULL; /* current using data section address */ @@ -85,13 +85,13 @@ static uint32_t get_env_detail_addr(void); static uint32_t get_env_detail_end_addr(void); static void set_cur_using_data_addr(uint32_t using_data_addr); static void set_env_detail_end_addr(uint32_t end_addr); -static FlashErrCode write_env(const char *key, const char *value); +static EfErrCode write_env(const char *key, const char *value); static uint32_t *find_env(const char *key); static size_t get_env_detail_size(void); static size_t get_env_user_used_size(void); -static FlashErrCode create_env(const char *key, const char *value); -static FlashErrCode del_env(const char *key); -static FlashErrCode save_cur_using_data_addr(uint32_t cur_data_addr); +static EfErrCode create_env(const char *key, const char *value); +static EfErrCode del_env(const char *key); +static EfErrCode save_cur_using_data_addr(uint32_t cur_data_addr); static uint32_t calc_env_crc(void); static bool env_crc_is_ok(void); @@ -106,20 +106,20 @@ static bool env_crc_is_ok(void); * * @return result */ -FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, size_t erase_min_size, - flash_env const *default_env, size_t default_env_size) { - FlashErrCode result = FLASH_NO_ERR; - - FLASH_ASSERT(start_addr); - FLASH_ASSERT(total_size); - FLASH_ASSERT(erase_min_size); - FLASH_ASSERT(default_env); - FLASH_ASSERT(default_env_size < FLASH_USER_SETTING_ENV_SIZE); +EfErrCode ef_env_init(uint32_t start_addr, size_t total_size, size_t erase_min_size, + ef_env const *default_env, size_t default_env_size) { + EfErrCode result = EF_NO_ERR; + + EF_ASSERT(start_addr); + EF_ASSERT(total_size); + EF_ASSERT(erase_min_size); + EF_ASSERT(default_env); + EF_ASSERT(default_env_size < EF_USER_SETTING_ENV_SIZE); /* must be word alignment for ENV */ - FLASH_ASSERT(FLASH_USER_SETTING_ENV_SIZE % 4 == 0); - FLASH_ASSERT(total_size % 4 == 0); + EF_ASSERT(EF_USER_SETTING_ENV_SIZE % 4 == 0); + EF_ASSERT(total_size % 4 == 0); /* the ENV total size should be an integral multiple of erase minimum size. */ - FLASH_ASSERT(total_size % erase_min_size == 0); + EF_ASSERT(total_size % erase_min_size == 0); env_start_addr = start_addr; env_total_size = total_size; @@ -127,9 +127,9 @@ FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, size_t erase default_env_set = default_env; default_env_set_size = default_env_size; - FLASH_DEBUG("Env start address is 0x%08X, size is %d bytes.\n", start_addr, total_size); + EF_DEBUG("Env start address is 0x%08X, size is %d bytes.\n", start_addr, total_size); - flash_load_env(); + ef_load_env(); return result; } @@ -139,15 +139,15 @@ FlashErrCode flash_env_init(uint32_t start_addr, size_t total_size, size_t erase * * @return result */ -FlashErrCode flash_env_set_default(void){ - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_env_set_default(void){ + EfErrCode result = EF_NO_ERR; size_t i; - FLASH_ASSERT(default_env_set); - FLASH_ASSERT(default_env_set_size); + EF_ASSERT(default_env_set); + EF_ASSERT(default_env_set_size); /* lock the ENV cache */ - flash_env_lock(); + ef_port_env_lock(); /* set ENV detail part end address is at ENV detail part start address */ set_env_detail_end_addr(get_env_detail_addr()); @@ -158,9 +158,9 @@ FlashErrCode flash_env_set_default(void){ } /* unlock the ENV cache */ - flash_env_unlock(); + ef_port_env_unlock(); - flash_save_env(); + ef_save_env(); return result; } @@ -171,7 +171,7 @@ FlashErrCode flash_env_set_default(void){ * @return ENV start address in flash */ static uint32_t get_env_start_addr(void) { - FLASH_ASSERT(env_start_addr); + EF_ASSERT(env_start_addr); return env_start_addr; } /** @@ -180,7 +180,7 @@ static uint32_t get_env_start_addr(void) { * @return current using data section address */ static uint32_t get_cur_using_data_addr(void) { - FLASH_ASSERT(cur_using_data_addr); + EF_ASSERT(cur_using_data_addr); return cur_using_data_addr; } @@ -199,7 +199,7 @@ static void set_cur_using_data_addr(uint32_t using_data_addr) { * @return detail part start address */ static uint32_t get_env_detail_addr(void) { - FLASH_ASSERT(cur_using_data_addr); + EF_ASSERT(cur_using_data_addr); return get_cur_using_data_addr() + ENV_PARAM_PART_BYTE_SIZE; } @@ -236,7 +236,7 @@ static size_t get_env_detail_size(void) { /** * Get current user used ENV size. * - * @see FLASH_USER_SETTING_ENV_SIZE + * @see EF_USER_SETTING_ENV_SIZE * * @return size */ @@ -251,7 +251,7 @@ static size_t get_env_user_used_size(void) { * * @return write bytes */ -size_t flash_get_env_write_bytes(void) { +size_t ef_get_env_write_bytes(void) { return get_env_detail_end_addr() - get_env_start_addr(); } @@ -262,9 +262,9 @@ size_t flash_get_env_write_bytes(void) { * * @return size */ -size_t flash_get_env_total_size(void) { +size_t ef_get_env_total_size(void) { /* must be initialized */ - FLASH_ASSERT(env_total_size); + EF_ASSERT(env_total_size); return env_total_size; } @@ -277,8 +277,8 @@ size_t flash_get_env_total_size(void) { * * @return result */ -static FlashErrCode write_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode write_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; size_t ker_len = strlen(key), value_len = strlen(value), env_str_len; char *env_cache_bak = (char *)env_cache; @@ -288,8 +288,8 @@ static FlashErrCode write_env(const char *key, const char *value) { env_str_len = (env_str_len / 4 + 1) * 4; } /* check capacity of ENV */ - if (env_str_len + get_env_detail_size() >= FLASH_USER_SETTING_ENV_SIZE) { - return FLASH_ENV_FULL; + if (env_str_len + get_env_detail_size() >= EF_USER_SETTING_ENV_SIZE) { + return EF_ENV_FULL; } /* calculate current ENV ram cache end address */ env_cache_bak += ENV_PARAM_PART_BYTE_SIZE + get_env_detail_size(); @@ -324,10 +324,10 @@ static uint32_t *find_env(const char *key) { char *env_start, *env_end, *env; size_t key_len = strlen(key), env_len; - FLASH_ASSERT(cur_using_data_addr); + EF_ASSERT(cur_using_data_addr); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not empty!\n"); + EF_INFO("Flash ENV name must be not empty!\n"); return NULL; } @@ -370,26 +370,26 @@ static uint32_t *find_env(const char *key) { * * @return result */ -static FlashErrCode create_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode create_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(key); - FLASH_ASSERT(value); + EF_ASSERT(key); + EF_ASSERT(value); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not empty!\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name must be not empty!\n"); + return EF_ENV_NAME_ERR; } if (strchr(key, '=')) { - FLASH_INFO("Flash ENV name can't contain '='.\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name can't contain '='.\n"); + return EF_ENV_NAME_ERR; } /* find ENV */ if (find_env(key)) { - FLASH_INFO("The name of \"%s\" is already exist.\n", key); - return FLASH_ENV_NAME_EXIST; + EF_INFO("The name of \"%s\" is already exist.\n", key); + return EF_ENV_NAME_EXIST; } /* write ENV at the end of cache */ result = write_env(key, value); @@ -404,29 +404,29 @@ static FlashErrCode create_env(const char *key, const char *value) { * * @return result */ -static FlashErrCode del_env(const char *key) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode del_env(const char *key) { + EfErrCode result = EF_NO_ERR; char *del_env_str = NULL; size_t del_env_length, remain_env_length; - FLASH_ASSERT(key); + EF_ASSERT(key); if (*key == NULL) { - FLASH_INFO("Flash ENV name must be not NULL!\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name must be not NULL!\n"); + return EF_ENV_NAME_ERR; } if (strchr(key, '=')) { - FLASH_INFO("Flash ENV name or value can't contain '='.\n"); - return FLASH_ENV_NAME_ERR; + EF_INFO("Flash ENV name or value can't contain '='.\n"); + return EF_ENV_NAME_ERR; } /* find ENV */ del_env_str = (char *) find_env(key); if (!del_env_str) { - FLASH_INFO("Not find \"%s\" in ENV.\n", key); - return FLASH_ENV_NAME_ERR; + EF_INFO("Not find \"%s\" in ENV.\n", key); + return EF_ENV_NAME_ERR; } del_env_length = strlen(del_env_str); /* '\0' also must be as ENV length */ @@ -455,11 +455,11 @@ static FlashErrCode del_env(const char *key) { * * @return result */ -FlashErrCode flash_set_env(const char *key, const char *value) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_set_env(const char *key, const char *value) { + EfErrCode result = EF_NO_ERR; /* lock the ENV cache */ - flash_env_lock(); + ef_port_env_lock(); /* if ENV value is empty, delete it */ if (*value == NULL) { @@ -469,12 +469,12 @@ FlashErrCode flash_set_env(const char *key, const char *value) { if (find_env(key)) { result = del_env(key); } - if (result == FLASH_NO_ERR) { + if (result == EF_NO_ERR) { result = create_env(key, value); } } /* unlock the ENV cache */ - flash_env_unlock(); + ef_port_env_unlock(); return result; } @@ -486,7 +486,7 @@ FlashErrCode flash_set_env(const char *key, const char *value) { * * @return value */ -char *flash_get_env(const char *key) { +char *ef_get_env(const char *key) { uint32_t *env_cache_addr = NULL; char *value = NULL; @@ -507,9 +507,8 @@ char *flash_get_env(const char *key) { /** * Print ENV. */ -void flash_print_env(void) { - uint32_t *env_cache_detail_addr = env_cache + ENV_PARAM_PART_WORD_SIZE, - *env_cache_end_addr = +void ef_print_env(void) { + uint32_t *env_cache_detail_addr = env_cache + ENV_PARAM_PART_WORD_SIZE, *env_cache_end_addr = (uint32_t *) (env_cache + ENV_PARAM_PART_WORD_SIZE + get_env_detail_size() / 4); uint8_t j; char c; @@ -517,58 +516,58 @@ void flash_print_env(void) { for (; env_cache_detail_addr < env_cache_end_addr; env_cache_detail_addr += 1) { for (j = 0; j < 4; j++) { c = (*env_cache_detail_addr) >> (8 * j); - flash_print("%c", c); + ef_print("%c", c); if (c == NULL) { - flash_print("\n"); + ef_print("\n"); break; } } } - flash_print("\nENV size: %ld/%ld bytes, write bytes %ld/%ld, mode: wear leveling.\n", - get_env_user_used_size(), FLASH_USER_SETTING_ENV_SIZE, flash_get_env_write_bytes(), - flash_get_env_total_size()); + ef_print("\nENV size: %ld/%ld bytes, write bytes %ld/%ld, mode: wear leveling.\n", + get_env_user_used_size(), EF_USER_SETTING_ENV_SIZE, ef_get_env_write_bytes(), + ef_get_env_total_size()); } /** * Load flash ENV to ram. */ -void flash_load_env(void) { +void ef_load_env(void) { uint32_t *env_cache_bak, env_end_addr, using_data_addr; /* read current using data section address */ - flash_read(get_env_start_addr(), &using_data_addr, 4); + ef_port_read(get_env_start_addr(), &using_data_addr, 4); /* if ENV is not initialize or flash has dirty data, set default for it */ if ((using_data_addr == 0xFFFFFFFF) - || (using_data_addr > get_env_start_addr() + flash_get_env_total_size()) + || (using_data_addr > get_env_start_addr() + ef_get_env_total_size()) || (using_data_addr < get_env_start_addr() + flash_erase_min_size)) { /* initialize current using data section address */ set_cur_using_data_addr(get_env_start_addr() + flash_erase_min_size); /* save current using data section address to flash*/ save_cur_using_data_addr(get_cur_using_data_addr()); /* set default ENV */ - flash_env_set_default(); + ef_env_set_default(); } else { /* set current using data section address */ set_cur_using_data_addr(using_data_addr); /* read ENV detail part end address from flash */ - flash_read(get_cur_using_data_addr() + ENV_PARAM_PART_INDEX_END_ADDR * 4, &env_end_addr, 4); + ef_port_read(get_cur_using_data_addr() + ENV_PARAM_PART_INDEX_END_ADDR * 4, &env_end_addr, 4); /* if ENV end address has error, set default for ENV */ - if (env_end_addr > get_env_start_addr() + flash_get_env_total_size()) { - flash_env_set_default(); + if (env_end_addr > get_env_start_addr() + ef_get_env_total_size()) { + ef_env_set_default(); } else { /* set ENV detail part end address */ set_env_detail_end_addr(env_end_addr); env_cache_bak = env_cache + ENV_PARAM_PART_WORD_SIZE; /* read all ENV from flash */ - flash_read(get_env_detail_addr(), env_cache_bak, get_env_detail_size()); + ef_port_read(get_env_detail_addr(), env_cache_bak, get_env_detail_size()); /* read ENV CRC code from flash */ - flash_read(get_cur_using_data_addr() + ENV_PARAM_PART_INDEX_DATA_CRC * 4, + ef_port_read(get_cur_using_data_addr() + ENV_PARAM_PART_INDEX_DATA_CRC * 4, &env_cache[ENV_PARAM_PART_INDEX_DATA_CRC], 4); /* if ENV CRC32 check is fault, set default for it */ if (!env_crc_is_ok()) { - FLASH_INFO("Warning: ENV CRC check failed. Set it to default.\n"); - flash_env_set_default(); + EF_INFO("Warning: ENV CRC check failed. Set it to default.\n"); + ef_env_set_default(); } } @@ -578,26 +577,26 @@ void flash_load_env(void) { /** * Save ENV to flash. */ -FlashErrCode flash_save_env(void) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_save_env(void) { + EfErrCode result = EF_NO_ERR; uint32_t cur_data_addr_bak = get_cur_using_data_addr(), move_offset_addr; size_t env_detail_size = get_env_detail_size(); /* wear leveling process, automatic move ENV to next available position */ while (get_cur_using_data_addr() + env_detail_size - < get_env_start_addr() + flash_get_env_total_size()) { + < get_env_start_addr() + ef_get_env_total_size()) { /* calculate and cache CRC32 code */ env_cache[ENV_PARAM_PART_INDEX_DATA_CRC] = calc_env_crc(); /* erase ENV */ - result = flash_erase(get_cur_using_data_addr(), ENV_PARAM_PART_BYTE_SIZE + env_detail_size); + result = ef_port_erase(get_cur_using_data_addr(), ENV_PARAM_PART_BYTE_SIZE + env_detail_size); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Erased ENV OK.\n"); + case EF_NO_ERR: { + EF_INFO("Erased ENV OK.\n"); break; } - case FLASH_ERASE_ERR: { - FLASH_INFO("Warning: Erased ENV fault!\n"); - FLASH_INFO("Moving ENV to next available position.\n"); + case EF_ERASE_ERR: { + EF_INFO("Warning: Erased ENV fault!\n"); + EF_INFO("Moving ENV to next available position.\n"); /* Calculate move offset address. * Current strategy is optimistic. It will offset the flash erasure minimum size. */ @@ -610,16 +609,16 @@ FlashErrCode flash_save_env(void) { } } /* write ENV to flash */ - result = flash_write(get_cur_using_data_addr(), env_cache, + result = ef_port_write(get_cur_using_data_addr(), env_cache, ENV_PARAM_PART_BYTE_SIZE + env_detail_size); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Saved ENV OK.\n"); + case EF_NO_ERR: { + EF_INFO("Saved ENV OK.\n"); break; } - case FLASH_WRITE_ERR: { - FLASH_INFO("Warning: Saved ENV fault!\n"); - FLASH_INFO("Moving ENV to next available position.\n"); + case EF_WRITE_ERR: { + EF_INFO("Warning: Saved ENV fault!\n"); + EF_INFO("Moving ENV to next available position.\n"); /* Calculate move offset address. * Current strategy is optimistic. It will offset the flash erasure minimum size. */ @@ -632,20 +631,20 @@ FlashErrCode flash_save_env(void) { } } /* save ENV success */ - if (result == FLASH_NO_ERR) { + if (result == EF_NO_ERR) { break; } } if (get_cur_using_data_addr() + env_detail_size - < get_env_start_addr() + flash_get_env_total_size()) { + < get_env_start_addr() + ef_get_env_total_size()) { /* current using data section address has changed, save it */ if (get_cur_using_data_addr() != cur_data_addr_bak) { save_cur_using_data_addr(get_cur_using_data_addr()); } } else { - result = FLASH_ENV_FULL; - FLASH_INFO("Error: The flash has no available space to save ENV.\n"); + result = EF_ENV_FULL; + EF_INFO("Error: The flash has no available space to save ENV.\n"); /* clear current using data section address on flash */ save_cur_using_data_addr(0xFFFFFFFF); } @@ -665,7 +664,7 @@ static uint32_t calc_env_crc(void) { * The 4 is ENV end address bytes size. */ crc32 = calc_crc32(crc32, &env_cache[ENV_PARAM_PART_INDEX_END_ADDR], 4); crc32 = calc_crc32(crc32, &env_cache[ENV_PARAM_PART_WORD_SIZE], get_env_detail_size()); - FLASH_DEBUG("Calculate Env CRC32 number is 0x%08X.\n", crc32); + EF_DEBUG("Calculate Env CRC32 number is 0x%08X.\n", crc32); return crc32; } @@ -677,7 +676,7 @@ static uint32_t calc_env_crc(void) { */ static bool env_crc_is_ok(void) { if (calc_env_crc() == env_cache[ENV_PARAM_PART_INDEX_DATA_CRC]) { - FLASH_DEBUG("Verify Env CRC32 result is OK.\n"); + EF_DEBUG("Verify Env CRC32 result is OK.\n"); return true; } else { return false; @@ -691,24 +690,24 @@ static bool env_crc_is_ok(void) { * * @return result */ -static FlashErrCode save_cur_using_data_addr(uint32_t cur_data_addr) { - FlashErrCode result = FLASH_NO_ERR; +static EfErrCode save_cur_using_data_addr(uint32_t cur_data_addr) { + EfErrCode result = EF_NO_ERR; /* erase ENV system section */ - result = flash_erase(get_env_start_addr(), 4); - if (result == FLASH_NO_ERR) { + result = ef_port_erase(get_env_start_addr(), 4); + if (result == EF_NO_ERR) { /* write current using data section address to flash */ - result = flash_write(get_env_start_addr(), &cur_data_addr, 4); - if (result == FLASH_WRITE_ERR) { - FLASH_INFO("Error: Write system section fault!\n"); - FLASH_INFO("Note: The ENV can not be used.\n"); + result = ef_port_write(get_env_start_addr(), &cur_data_addr, 4); + if (result == EF_WRITE_ERR) { + EF_INFO("Error: Write system section fault!\n"); + EF_INFO("Note: The ENV can not be used.\n"); } } else { - FLASH_INFO("Error: Erased system section fault!\n"); - FLASH_INFO("Note: The ENV can not be used\n"); + EF_INFO("Error: Erased system section fault!\n"); + EF_INFO("Note: The ENV can not be used\n"); } return result; } -#endif /* FLASH_ENV_USING_WEAR_LEVELING_MODE */ +#endif /* EF_ENV_USING_WL_MODE */ -#endif /* FLASH_USING_ENV */ +#endif /* EF_USING_ENV */ diff --git a/easyflash/src/flash_iap.c b/easyflash/src/ef_iap.c similarity index 63% rename from easyflash/src/flash_iap.c rename to easyflash/src/ef_iap.c index aefde10..c59c3c2 100644 --- a/easyflash/src/flash_iap.c +++ b/easyflash/src/ef_iap.c @@ -26,9 +26,9 @@ * Created on: 2015-01-05 */ -#include "flash.h" +#include "easyflash.h" -#ifdef FLASH_USING_IAP +#ifdef EF_USING_IAP /* IAP section backup application section start address in flash */ static uint32_t bak_app_start_addr = NULL; @@ -42,10 +42,10 @@ static uint32_t get_bak_app_start_addr(void); * * @return result */ -FlashErrCode flash_iap_init(uint32_t start_addr) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_iap_init(uint32_t start_addr) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(start_addr); + EF_ASSERT(start_addr); bak_app_start_addr = start_addr; return result; @@ -58,17 +58,17 @@ FlashErrCode flash_iap_init(uint32_t start_addr) { * * @return result */ -FlashErrCode flash_erase_bak_app(size_t app_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_erase_bak_app(size_t app_size) { + EfErrCode result = EF_NO_ERR; - result = flash_erase(get_bak_app_start_addr(), app_size); + result = ef_port_erase(get_bak_app_start_addr(), app_size); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Erased backup area application OK.\n"); + case EF_NO_ERR: { + EF_INFO("Erased backup area application OK.\n"); break; } - case FLASH_ERASE_ERR: { - FLASH_INFO("Warning: Erase backup area application fault!\n"); + case EF_ERASE_ERR: { + EF_INFO("Warning: Erase backup area application fault!\n"); /* will return when erase fault */ return result; } @@ -86,17 +86,17 @@ FlashErrCode flash_erase_bak_app(size_t app_size) { * * @return result */ -FlashErrCode flash_erase_user_app(uint32_t user_app_addr, size_t app_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_erase_user_app(uint32_t user_app_addr, size_t app_size) { + EfErrCode result = EF_NO_ERR; - result = flash_erase(user_app_addr, app_size); + result = ef_port_erase(user_app_addr, app_size); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Erased user application OK.\n"); + case EF_NO_ERR: { + EF_INFO("Erased user application OK.\n"); break; } - case FLASH_ERASE_ERR: { - FLASH_INFO("Warning: Erase user application fault!\n"); + case EF_ERASE_ERR: { + EF_INFO("Warning: Erase user application fault!\n"); /* will return when erase fault */ return result; } @@ -113,17 +113,17 @@ FlashErrCode flash_erase_user_app(uint32_t user_app_addr, size_t app_size) { * * @return result */ -FlashErrCode flash_erase_bl(uint32_t bl_addr, size_t bl_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_erase_bl(uint32_t bl_addr, size_t bl_size) { + EfErrCode result = EF_NO_ERR; - result = flash_erase(bl_addr, bl_size); + result = ef_port_erase(bl_addr, bl_size); switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Erased bootloader OK.\n"); + case EF_NO_ERR: { + EF_INFO("Erased bootloader OK.\n"); break; } - case FLASH_ERASE_ERR: { - FLASH_INFO("Warning: Erase bootloader fault!\n"); + case EF_ERASE_ERR: { + EF_INFO("Warning: Erase bootloader fault!\n"); /* will return when erase fault */ return result; } @@ -142,24 +142,24 @@ FlashErrCode flash_erase_bl(uint32_t bl_addr, size_t bl_size) { * * @return result */ -FlashErrCode flash_write_data_to_bak(uint8_t *data, size_t size, size_t *cur_size, +EfErrCode ef_write_data_to_bak(uint8_t *data, size_t size, size_t *cur_size, size_t total_size) { - FlashErrCode result = FLASH_NO_ERR; + EfErrCode result = EF_NO_ERR; /* make sure don't write excess data */ if (*cur_size + size > total_size) { size = total_size - *cur_size; } - result = flash_write(get_bak_app_start_addr() + *cur_size, (uint32_t *) data, size); + result = ef_port_write(get_bak_app_start_addr() + *cur_size, (uint32_t *) data, size); switch (result) { - case FLASH_NO_ERR: { + case EF_NO_ERR: { *cur_size += size; - FLASH_INFO("Write data to backup area OK.\n"); + EF_INFO("Write data to backup area OK.\n"); break; } - case FLASH_WRITE_ERR: { - FLASH_INFO("Warning: Write data to backup area fault!\n"); + case EF_WRITE_ERR: { + EF_INFO("Warning: Write data to backup area fault!\n"); break; } } @@ -175,10 +175,10 @@ FlashErrCode flash_write_data_to_bak(uint8_t *data, size_t size, size_t *cur_siz * * @return result */ -FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) { +EfErrCode ef_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) { size_t cur_size; uint32_t app_cur_addr, bak_cur_addr; - FlashErrCode result = FLASH_NO_ERR; + EfErrCode result = EF_NO_ERR; /* 32 words size buffer */ uint32_t buff[32]; @@ -186,20 +186,20 @@ FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) { for (cur_size = 0; cur_size < app_size; cur_size += sizeof(buff)) { app_cur_addr = user_app_addr + cur_size; bak_cur_addr = get_bak_app_start_addr() + cur_size; - flash_read(bak_cur_addr, buff, sizeof(buff)); - result = flash_write(app_cur_addr, buff, sizeof(buff)); - if (result != FLASH_NO_ERR) { + ef_port_read(bak_cur_addr, buff, sizeof(buff)); + result = ef_port_write(app_cur_addr, buff, sizeof(buff)); + if (result != EF_NO_ERR) { break; } } switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Write data to application entry OK.\n"); + case EF_NO_ERR: { + EF_INFO("Write data to application entry OK.\n"); break; } - case FLASH_WRITE_ERR: { - FLASH_INFO("Warning: Write data to application entry fault!\n"); + case EF_WRITE_ERR: { + EF_INFO("Warning: Write data to application entry fault!\n"); break; } } @@ -215,10 +215,10 @@ FlashErrCode flash_copy_app_from_bak(uint32_t user_app_addr, size_t app_size) { * * @return result */ -FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) { +EfErrCode ef_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) { size_t cur_size; uint32_t bl_cur_addr, bak_cur_addr; - FlashErrCode result = FLASH_NO_ERR; + EfErrCode result = EF_NO_ERR; /* 32 words buffer */ uint32_t buff[32]; @@ -226,20 +226,20 @@ FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) { for (cur_size = 0; cur_size < bl_size; cur_size += sizeof(buff)) { bl_cur_addr = bl_addr + cur_size; bak_cur_addr = get_bak_app_start_addr() + cur_size; - flash_read(bak_cur_addr, buff, sizeof(buff)); - result = flash_write(bl_cur_addr, buff, sizeof(buff)); - if (result != FLASH_NO_ERR) { + ef_port_read(bak_cur_addr, buff, sizeof(buff)); + result = ef_port_write(bl_cur_addr, buff, sizeof(buff)); + if (result != EF_NO_ERR) { break; } } switch (result) { - case FLASH_NO_ERR: { - FLASH_INFO("Write data to bootloader entry OK.\n"); + case EF_NO_ERR: { + EF_INFO("Write data to bootloader entry OK.\n"); break; } - case FLASH_WRITE_ERR: { - FLASH_INFO("Warning: Write data to bootloader entry fault!\n"); + case EF_WRITE_ERR: { + EF_INFO("Warning: Write data to bootloader entry fault!\n"); break; } } @@ -253,8 +253,8 @@ FlashErrCode flash_copy_bl_from_bak(uint32_t bl_addr, size_t bl_size) { * @return size */ static uint32_t get_bak_app_start_addr(void) { - FLASH_ASSERT(bak_app_start_addr); + EF_ASSERT(bak_app_start_addr); return bak_app_start_addr; } -#endif /* FLASH_USING_IAP */ +#endif /* EF_USING_IAP */ diff --git a/easyflash/src/flash_log.c b/easyflash/src/ef_log.c similarity index 81% rename from easyflash/src/flash_log.c rename to easyflash/src/ef_log.c index a87d46f..398721b 100644 --- a/easyflash/src/flash_log.c +++ b/easyflash/src/ef_log.c @@ -26,9 +26,9 @@ * Created on: 2015-06-04 */ -#include "flash.h" +#include "easyflash.h" -#ifdef FLASH_USING_LOG +#ifdef EF_USING_LOG /* the stored logs start address and end address. It's like a ring buffer which implement by flash. */ static uint32_t log_start_addr = 0, log_end_addr = 0; @@ -53,16 +53,16 @@ static uint32_t get_next_flash_sec_addr(uint32_t cur_addr); * * @return result */ -FlashErrCode flash_log_init(uint32_t start_addr, size_t log_size, size_t erase_min_size) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_log_init(uint32_t start_addr, size_t log_size, size_t erase_min_size) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(start_addr); - FLASH_ASSERT(log_size); - FLASH_ASSERT(erase_min_size); + EF_ASSERT(start_addr); + EF_ASSERT(log_size); + EF_ASSERT(erase_min_size); /* the log area size must be an integral multiple of erase minimum size. */ - FLASH_ASSERT(log_size % erase_min_size == 0); + EF_ASSERT(log_size % erase_min_size == 0); /* the log area size must be more than 2 multiple of erase minimum size */ - FLASH_ASSERT(log_size / erase_min_size >= 2); + EF_ASSERT(log_size / erase_min_size >= 2); log_area_start_addr = start_addr; flash_log_size = log_size; @@ -111,12 +111,12 @@ static void find_start_and_end_addr(void) { uint8_t cur_log_sec_state = 0; /* get the first sector status */ - cur_sec_status = flash_get_sector_status(log_area_start_addr, flash_erase_min_size); + cur_sec_status = ef_get_sector_status(log_area_start_addr, flash_erase_min_size); last_sec_status = cur_sec_status; for (cur_size = flash_erase_min_size; cur_size < flash_log_size; cur_size += flash_erase_min_size) { /* get current sector status */ - cur_sec_status = flash_get_sector_status(log_area_start_addr + cur_size, flash_erase_min_size); + cur_sec_status = ef_get_sector_status(log_area_start_addr + cur_size, flash_erase_min_size); /* compare last and current status */ switch (last_sec_status) { case FLASH_SECTOR_EMPTY: { @@ -124,12 +124,12 @@ static void find_start_and_end_addr(void) { case FLASH_SECTOR_EMPTY: break; case FLASH_SECTOR_USING: - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; case FLASH_SECTOR_FULL: - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; } empty_sec_counts++; @@ -144,8 +144,8 @@ static void find_start_and_end_addr(void) { cur_using_sec_addr = log_area_start_addr + cur_size - flash_erase_min_size; break; case FLASH_SECTOR_USING: - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; case FLASH_SECTOR_FULL: /* like state 2 */ @@ -162,8 +162,8 @@ static void find_start_and_end_addr(void) { case FLASH_SECTOR_EMPTY: /* like state 1 */ if (cur_log_sec_state == 2) { - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; } else { cur_log_sec_state = 1; @@ -203,20 +203,20 @@ static void find_start_and_end_addr(void) { } if (using_sec_counts > 1) { - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; } else if (empty_sec_counts == total_sec_num) { log_start_addr = log_end_addr = log_area_start_addr; } else if (full_sector_counts == total_sec_num) { /* this state is almost impossible */ - FLASH_DEBUG("Error: Log area error! Now will clean all log area.\n"); - flash_log_clean(); + EF_DEBUG("Error: Log area error! Now will clean all log area.\n"); + ef_log_clean(); return; } else if (((cur_log_sec_state == 1) && (cur_using_sec_addr != 0)) || (cur_log_sec_state == 2)) { /* find the end address */ - log_end_addr = flash_find_sec_using_end_addr(cur_using_sec_addr, flash_erase_min_size); + log_end_addr = ef_find_sec_using_end_addr(cur_using_sec_addr, flash_erase_min_size); } } @@ -225,12 +225,12 @@ static void find_start_and_end_addr(void) { * * @return log used flash total size */ -size_t flash_log_get_used_size(void) { - FLASH_ASSERT(log_start_addr); - FLASH_ASSERT(log_end_addr); +size_t ef_log_get_used_size(void) { + EF_ASSERT(log_start_addr); + EF_ASSERT(log_end_addr); /* must be call this function after initialize OK */ - FLASH_ASSERT(init_ok); + EF_ASSERT(init_ok); if (log_start_addr < log_end_addr) { return log_end_addr - log_start_addr + 4; @@ -252,22 +252,22 @@ size_t flash_log_get_used_size(void) { * * @return result */ -FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size) { - FlashErrCode result = FLASH_NO_ERR; - size_t cur_using_size = flash_log_get_used_size(); +EfErrCode ef_log_read(size_t index, uint32_t *log, size_t size) { + EfErrCode result = EF_NO_ERR; + size_t cur_using_size = ef_log_get_used_size(); size_t read_size_temp = 0; - FLASH_ASSERT(size % 4 == 0); - FLASH_ASSERT(index + size <= cur_using_size); + EF_ASSERT(size % 4 == 0); + EF_ASSERT(index + size <= cur_using_size); /* must be call this function after initialize OK */ - FLASH_ASSERT(init_ok); + EF_ASSERT(init_ok); if (!size) { return result; } if (log_start_addr < log_end_addr) { - result = flash_read(log_area_start_addr + index, log, size); + result = ef_port_read(log_area_start_addr + index, log, size); } else if (log_start_addr > log_end_addr) { if (log_start_addr + index + size <= log_area_start_addr + flash_log_size) { /* Flash log area @@ -287,7 +287,7 @@ FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size) { * * read from (log_start_addr + index) to (log_start_addr + index + size) */ - result = flash_read(log_start_addr + index, log, size); + result = ef_port_read(log_start_addr + index, log, size); } else if (log_start_addr + index < log_area_start_addr + flash_log_size) { /* Flash log area * |--------------| @@ -308,9 +308,9 @@ FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size) { * step2: read from flash log area start address to read size's end address */ read_size_temp = (log_area_start_addr + flash_log_size) - (log_start_addr + index); - result = flash_read(log_start_addr + index, log, read_size_temp); - if (result == FLASH_NO_ERR) { - result = flash_read(log_area_start_addr, log + read_size_temp, + result = ef_port_read(log_start_addr + index, log, read_size_temp); + if (result == EF_NO_ERR) { + result = ef_port_read(log_area_start_addr, log + read_size_temp, size - read_size_temp); } } else { @@ -330,7 +330,7 @@ FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size) { * |--------------| * read from (log_start_addr + index - flash_log_size) to read size's end address */ - result = flash_read(log_start_addr + index - flash_log_size, log, size); + result = ef_port_read(log_start_addr + index - flash_log_size, log, size); } } @@ -345,14 +345,14 @@ FlashErrCode flash_log_read(size_t index, uint32_t *log, size_t size) { * * @return result */ -FlashErrCode flash_log_write(const uint32_t *log, size_t size) { - FlashErrCode result = FLASH_NO_ERR; - size_t cur_using_size = flash_log_get_used_size(), write_size = 0, writable_size = 0; +EfErrCode ef_log_write(const uint32_t *log, size_t size) { + EfErrCode result = EF_NO_ERR; + size_t cur_using_size = ef_log_get_used_size(), write_size = 0, writable_size = 0; uint32_t write_addr, erase_addr; - FLASH_ASSERT(size % 4 == 0); + EF_ASSERT(size % 4 == 0); /* must be call this function after initialize OK */ - FLASH_ASSERT(init_ok); + EF_ASSERT(init_ok); /* write address is after log end address */ write_addr = log_end_addr + 4; @@ -360,13 +360,13 @@ FlashErrCode flash_log_write(const uint32_t *log, size_t size) { writable_size = flash_erase_min_size - ((write_addr - log_area_start_addr) % flash_erase_min_size); if (writable_size != flash_erase_min_size) { if (size > writable_size) { - result = flash_write(write_addr, log, writable_size); - if (result != FLASH_NO_ERR) { + result = ef_port_write(write_addr, log, writable_size); + if (result != EF_NO_ERR) { goto exit; } write_size += writable_size; } else { - result = flash_write(write_addr, log, size); + result = ef_port_write(write_addr, log, size); log_end_addr = write_addr + size - 4; goto exit; } @@ -380,19 +380,19 @@ FlashErrCode flash_log_write(const uint32_t *log, size_t size) { log_start_addr = get_next_flash_sec_addr(log_start_addr); } /* erase sector */ - result = flash_erase(erase_addr, flash_erase_min_size); - if (result == FLASH_NO_ERR) { + result = ef_port_erase(erase_addr, flash_erase_min_size); + if (result == EF_NO_ERR) { if (size - write_size > flash_erase_min_size) { - result = flash_write(write_addr, log + write_size / 4, flash_erase_min_size); - if (result != FLASH_NO_ERR) { + result = ef_port_write(write_addr, log + write_size / 4, flash_erase_min_size); + if (result != EF_NO_ERR) { goto exit; } log_end_addr = write_addr + flash_erase_min_size - 4; write_size += flash_erase_min_size; write_addr += flash_erase_min_size; } else { - result = flash_write(write_addr, log + write_size / 4, size - write_size); - if (result != FLASH_NO_ERR) { + result = ef_port_write(write_addr, log + write_size / 4, size - write_size); + if (result != EF_NO_ERR) { goto exit; } log_end_addr = write_addr + (size - write_size) - 4; @@ -430,18 +430,18 @@ static uint32_t get_next_flash_sec_addr(uint32_t cur_addr) { * * @return result */ -FlashErrCode flash_log_clean(void) { - FlashErrCode result = FLASH_NO_ERR; +EfErrCode ef_log_clean(void) { + EfErrCode result = EF_NO_ERR; - FLASH_ASSERT(log_area_start_addr); - FLASH_ASSERT(flash_log_size); + EF_ASSERT(log_area_start_addr); + EF_ASSERT(flash_log_size); /* clean address */ log_start_addr = log_end_addr = log_area_start_addr; /* erase log flash area */ - result = flash_erase(log_area_start_addr, flash_log_size); + result = ef_port_erase(log_area_start_addr, flash_log_size); return result; } -#endif +#endif /* EF_USING_LOG */ diff --git a/easyflash/src/flash_utils.c b/easyflash/src/ef_utils.c similarity index 96% rename from easyflash/src/flash_utils.c rename to easyflash/src/ef_utils.c index 8e3efb0..728f6d9 100644 --- a/easyflash/src/flash_utils.c +++ b/easyflash/src/ef_utils.c @@ -26,7 +26,7 @@ * Created on: 2015-01-14 */ -#include "flash.h" +#include "easyflash.h" static const uint32_t crc32_table[] = { @@ -106,8 +106,8 @@ uint32_t calc_crc32(uint32_t crc, const void *buf, size_t size) * * @return the flash sector current status */ -FlashSecrorStatus flash_get_sector_status(uint32_t addr, size_t sec_size) { - uint32_t cur_using_addr = flash_find_sec_using_end_addr(addr, sec_size); +FlashSecrorStatus ef_get_sector_status(uint32_t addr, size_t sec_size) { + uint32_t cur_using_addr = ef_find_sec_using_end_addr(addr, sec_size); /* get current status by current using address */ if (cur_using_addr == addr) { return FLASH_SECTOR_EMPTY; @@ -126,7 +126,7 @@ FlashSecrorStatus flash_get_sector_status(uint32_t addr, size_t sec_size) { * * @return current flash sector using end address */ -uint32_t flash_find_sec_using_end_addr(uint32_t addr, size_t sec_size) { +uint32_t ef_find_sec_using_end_addr(uint32_t addr, size_t sec_size) { size_t start, continue_ff; /* counts continuous 0xFF */ for (start = 0; start < sec_size; start++) {