- renamed config.h to blt_conf.h.

- supported project specific override for blt_conf.h.

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@55 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2013-08-01 08:58:35 +00:00
parent 5bdefa6487
commit 4b214120a8
142 changed files with 2301 additions and 2302 deletions

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\config.h
* \file Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARM7_LPC2000_Olimex_LPC_L2294_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -155,5 +155,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -7,13 +7,13 @@
<folder Name="Source Files">
<configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
<folder Name="Demo">
<folder Name="Boot">
<file file_name="../config.h"/>
<folder Name="Boot" file_name="">
<file file_name="../hooks.c"/>
<file file_name="../lpc2294.h"/>
<file file_name="../main.c"/>
<file file_name="../extflash.c"/>
<file file_name="../extflash.h"/>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
<folder Name="Source">

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\main.c" y="0" path="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\main.c" left="0" selected="1" name="unnamed" top="0" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\main.c" y="36" path="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot\main.c" left="0" selected="1" name="unnamed" top="19" />
</Files>
<ARMCrossStudioWindow activeProject="openbtl_olimex_lpc_l2294_20mhz" autoConnectTarget="Olimex ARM-USB-TINY" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388479" debugSearchPath="" buildConfiguration="ARM Flash Debug" />
<ARMCrossStudioWindow activeProject="openbtl_olimex_lpc_l2294_20mhz" autoConnectTarget="Olimex ARM-USB-TINY" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Boot" fileDialogDefaultFilter="" autoConnectCapabilities="388479" debugSearchPath="" buildConfiguration="ARM Flash Debug" />
</session>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "lpc2294.h" /* CPU register definitions */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Prog\main.c" y="36" path="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Prog\main.c" left="18" selected="1" name="unnamed" top="18" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Prog\main.c" y="36" path="C:\Work\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Prog\main.c" left="0" selected="1" name="unnamed" top="18" />
</Files>
<ARMCrossStudioWindow activeProject="demoprog_olimex_lpc_l2294_20mhz" autoConnectTarget="Olimex ARM-USB-TINY" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARM7_LPC2000_Olimex_LPC_L2294_Crossworks\Prog" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388479" debugSearchPath="" buildConfiguration="ARM Flash Debug" />
</session>

View File

@ -51,7 +51,7 @@ static void Init(void);
* \details ROM data allocated to the external flash on the Olimex LPC-L2294 board to
* test the programming of data in external flash. To test programming with
* the additional external flash driver, build the bootloader and this program
* with configurable BOOT_NVM_HOOKS_ENABLE set to 1 in config.h
* with configurable BOOT_NVM_HOOKS_ENABLE set to 1 in blt_conf.h
*/
__attribute__((section (".rodata2"))) const unsigned long ExtFlashTestData[] =
{

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARM7_LPC2000_Olimex_LPC_L2294_GCC\Boot\config.h
* \file Demo\ARM7_LPC2000_Olimex_LPC_L2294_GCC\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARM7_LPC2000_Olimex_LPC_L2294_GCC
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -155,5 +155,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -43,12 +43,12 @@
<VirtualDirectory Name="Demo">
<VirtualDirectory Name="ARM7_LPC2000_Olimex_LPC_L2294_GCC">
<VirtualDirectory Name="Boot">
<File Name="../config.h"/>
<File Name="../hooks.c"/>
<File Name="../main.c"/>
<File Name="../lpc2294.h"/>
<File Name="../extflash.c"/>
<File Name="../extflash.h"/>
<File Name="../blt_conf.h"/>
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>

View File

@ -35,7 +35,7 @@ PROJ_NAME=openbtl_olimex_lpc_l2294_20mhz
#| Speficy project source files |
#|---------------------------------------------------------------------------------------|
PROJ_FILES= \
config.h \
blt_conf.h \
hooks.c \
main.c \
extflash.c \

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "lpc2294.h" /* CPU register definitions */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\config.h
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -128,5 +128,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -39,7 +39,7 @@
<file file_name="../../../../Source/xcp.h"/>
</folder>
<folder Name="Demo">
<folder Name="Boot">
<folder Name="Boot" file_name="">
<folder Name="Lib">
<folder Name="Cmsis">
<file file_name="../lib/CMSIS/CM3/CoreSupport/core_cm3.c"/>
@ -115,9 +115,9 @@
<file file_name="../lib/efm32lib/src/efm32_wdog.c"/>
</folder>
</folder>
<file file_name="../config.h"/>
<file file_name="../hooks.c"/>
<file file_name="../main.c"/>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
</folder>

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\main.c" y="85" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\main.c" left="0" selected="1" name="unnamed" top="63" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\main.c" y="71" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot\main.c" left="18" selected="1" name="unnamed" top="0" />
</Files>
<ARMCrossStudioWindow activeProject="openbtl_olimex_efm32g880" autoConnectTarget="SEGGER J-Link" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Source\ARMCM3_EFM32\Crossworks" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Flash Debug" />
<ARMCrossStudioWindow activeProject="openbtl_olimex_efm32g880" autoConnectTarget="SEGGER J-Link" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Boot" fileDialogDefaultFilter="" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Flash Debug" />
</session>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "efm32.h" /* EFM32 registers */
#include "efm32_chip.h" /* EFM32 chip initialization */
#include "efm32_cmu.h" /* EFM32 clock management */

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Prog\main.c" y="21" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Prog\main.c" left="18" selected="1" name="unnamed" top="21" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Prog\main.c" y="21" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Prog\main.c" left="0" selected="1" name="unnamed" top="21" />
</Files>
<ARMCrossStudioWindow activeProject="demoprog_olimex_efm32g880" autoConnectTarget="Olimex ARM-USB-TINY" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_Crossworks\Prog" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Flash Debug" />
</session>

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_GCC\Boot\config.h
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_GCC\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_EFM32_Olimex_EM32G880F128STK_GCC
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -128,5 +128,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<CodeLite_Project Name="DemoBoot" InternalType="">
<Plugins>
<Plugin Name="qmake">
<![CDATA[00010001N0005Debug000000000000]]>
</Plugin>
</Plugins>
<VirtualDirectory Name="Source">
<VirtualDirectory Name="ARMCM3_EFM32">
<VirtualDirectory Name="GCC">
@ -124,17 +129,12 @@
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>
<File Name="../config.h"/>
<File Name="../hooks.c"/>
<File Name="../main.c"/>
<File Name="../blt_conf.h"/>
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>
<Plugins>
<Plugin Name="qmake">
<![CDATA[00010001N0005Debug000000000000]]>
</Plugin>
</Plugins>
<Description/>
<Dependencies/>
<Settings Type="Dynamic Library">

View File

@ -35,7 +35,7 @@ PROJ_NAME=openbtl_olimex_efm32g880
#| Speficy project source files |
#|---------------------------------------------------------------------------------------|
PROJ_FILES= \
config.h \
blt_conf.h \
hooks.c \
main.c \
./lib/CMSIS/CM3/CoreSupport/core_cm3.c \

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "efm32.h" /* EFM32 registers */
#include "efm32_chip.h" /* EFM32 chip initialization */
#include "efm32_cmu.h" /* EFM32 clock management */

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_IAR\Boot\config.h
* \file Demo\ARMCM3_EFM32_Olimex_EM32G880F128STK_IAR\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_EFM32_Olimex_EM32G880F128STK_IAR
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -130,5 +130,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -2,7 +2,7 @@
<project>
<fileVersion>2</fileVersion>
<fileChecksum>524672902</fileChecksum>
<fileChecksum>4013620909</fileChecksum>
<configuration>
<name>Debug</name>
<outputs>
@ -81,7 +81,7 @@
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\cpu.c</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\cpu.h</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\flash.c</file>
<file>$PROJ_DIR$\..\obj\efm32G880.pbd</file>
<file>$PROJ_DIR$\..\obj\core_cm3.lst</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\nvm.c</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\flash.h</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_EFM32\nvm.h</file>
@ -104,14 +104,15 @@
<file>$PROJ_DIR$\..\..\..\..\Source\xcp.c</file>
<file>$PROJ_DIR$\..\..\..\..\Source\xcp.h</file>
<file>$PROJ_DIR$\..\obj\core_cm3.o</file>
<file>$PROJ_DIR$\..\obj\efm32G880.pbd</file>
<file>$PROJ_DIR$\..\obj\system_efm32.pbi</file>
<file>$PROJ_DIR$\..\obj\efm32_assert.lst</file>
<file>$PROJ_DIR$\..\obj\boot.pbi</file>
<file>$PROJ_DIR$\..\obj\timer.o</file>
<file>$PROJ_DIR$\..\obj\vectors.pbi</file>
<file>$PROJ_DIR$\..\obj\boot.lst</file>
<file>$PROJ_DIR$\..\obj\main.pbi</file>
<file>$PROJ_DIR$\..\obj\boot.lst</file>
<file>$PROJ_DIR$\..\obj\timer.o</file>
<file>$PROJ_DIR$\..\obj\timer.pbi</file>
<file>$PROJ_DIR$\..\obj\boot.pbi</file>
<file>$PROJ_DIR$\..\obj\efm32_assert.lst</file>
<file>$PROJ_DIR$\..\obj\uart.pbi</file>
<file>$PROJ_DIR$\..\obj\cstart.o</file>
<file>$PROJ_DIR$\..\obj\vectors.o</file>
@ -122,7 +123,6 @@
<file>$PROJ_DIR$\..\obj\efm32_timer.pbi</file>
<file>$PROJ_DIR$\..\obj\efm32_usart.pbi</file>
<file>$PROJ_DIR$\..\obj\efm32_vcmp.pbi</file>
<file>$PROJ_DIR$\..\obj\core_cm3.lst</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</file>
<file>$PROJ_DIR$\..\obj\efm32_mpu.o</file>
<file>$PROJ_DIR$\..\obj\efm32_msc.o</file>
@ -263,6 +263,7 @@
<file>$TOOLKIT_DIR$\inc\c\stdbool.h</file>
<file>$PROJ_DIR$\..\bin\openbtl_olimex_efm32g880.srec</file>
<file>$PROJ_DIR$\..\..\..\..\Source\file.h</file>
<file>$PROJ_DIR$\..\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
@ -273,7 +274,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 116 97</file>
<file> 75 97</file>
</tool>
</outputs>
<inputs>
@ -292,7 +293,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 98</file>
<file> 99</file>
</tool>
<tool>
<name>ICCARM</name>
@ -323,10 +324,6 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 254 9 124 121 212 235 117 228 215 213 0 5 3 4 180 179 1 7 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 254 9 124 121 212 235 117 228 215 213 0 5 3 4 180 179 1 7 16 15</file>
@ -384,7 +381,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 99 210</file>
<file> 106 210</file>
</tool>
</outputs>
<inputs>
@ -826,7 +823,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 110</file>
<file> 111</file>
</tool>
<tool>
<name>ICCARM</name>
@ -849,7 +846,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 111</file>
<file> 112</file>
</tool>
<tool>
<name>ICCARM</name>
@ -872,7 +869,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 112</file>
<file> 113</file>
</tool>
<tool>
<name>ICCARM</name>
@ -895,7 +892,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 113</file>
<file> 114</file>
</tool>
<tool>
<name>ICCARM</name>
@ -918,7 +915,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 114</file>
<file> 115</file>
</tool>
<tool>
<name>ICCARM</name>
@ -941,7 +938,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 115</file>
<file> 116</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1001,7 +998,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1010,7 +1007,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 104</file>
<file> 101</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1024,7 +1021,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96 0 5 3 124 121 212 235 117 228 215 213 4 180 179 1 7 17 58 254 19 16 31 15</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96 0 5 3 124 121 212 235 117 228 215 213 4 180 179 1 7 17 58 254 19 16 31 15</file>
</tool>
</inputs>
</file>
@ -1033,7 +1030,7 @@
<outputs>
<tool>
<name>AARM</name>
<file> 107</file>
<file> 108</file>
</tool>
</outputs>
</file>
@ -1042,11 +1039,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 102</file>
<file> 100</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 109 108</file>
<file> 110 109</file>
</tool>
</outputs>
<inputs>
@ -1056,7 +1053,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1079,7 +1076,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1102,7 +1099,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96 47 124 121 212 235 117 228 215 213 254 0 5 3 4 180 179 1 7 16</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96 47 124 121 212 235 117 228 215 213 254 0 5 3 4 180 179 1 7 16</file>
</tool>
</inputs>
</file>
@ -1125,7 +1122,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1134,11 +1131,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 105</file>
<file> 104</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 127 101</file>
<file> 127 103</file>
</tool>
</outputs>
<inputs>
@ -1148,7 +1145,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1157,7 +1154,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 106</file>
<file> 107</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1171,7 +1168,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96 0 5 3 124 121 212 235 117 228 215 213 4 180 179 1 7 19 254 16 31 15 43</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96 0 5 3 124 121 212 235 117 228 215 213 4 180 179 1 7 19 254 16 31 15 43</file>
</tool>
</inputs>
</file>
@ -1194,7 +1191,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1217,7 +1214,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1226,11 +1223,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 100</file>
<file> 105</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 103 187</file>
<file> 102 187</file>
</tool>
</outputs>
<inputs>
@ -1240,7 +1237,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1263,7 +1260,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96 83</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96 83</file>
</tool>
</inputs>
</file>
@ -1286,7 +1283,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1309,7 +1306,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 89 81 85 67 94 73 93 78 77 80 87 256 91 96</file>
<file> 89 81 85 257 94 73 93 78 77 80 87 256 91 96</file>
</tool>
</inputs>
</file>
@ -1328,7 +1325,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 217 130 193 187 188 192 97 200 107 166 168 167 210 122 226 227 146 147 148 149 172 171 170 169 164 165 118 119 144 145 178 176 177 174 173 175 143 125 201 131 186 199 120 101 202 108 190 185 142 128 141</file>
<file> 217 130 193 187 188 192 97 200 108 166 168 167 210 122 226 227 146 147 148 149 172 171 170 169 164 165 118 119 144 145 178 176 177 174 173 175 143 125 201 131 186 199 120 103 202 109 190 185 142 128 141</file>
</tool>
</inputs>
</file>

View File

@ -2067,7 +2067,7 @@
</group>
</group>
<file>
<name>$PROJ_DIR$\..\config.h</name>
<name>$PROJ_DIR$\..\blt_conf.h</name>
</file>
<file>
<name>$PROJ_DIR$\..\hooks.c</name>

View File

@ -29,7 +29,7 @@
<Windows>
<Wnd0>
<Wnd2>
<Tabs>
<Tab>
<Identity>TabID-3636-6432</Identity>
@ -41,7 +41,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3>
<Tabs>
<Tab>
<Identity>TabID-28813-8212</Identity>
@ -57,7 +57,7 @@
</Tab>
<Tab><Identity>TabID-20200-19078</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs>
<SelectedTab>0</SelectedTab></Wnd1></Windows>
<SelectedTab>0</SelectedTab></Wnd3></Windows>
<Editor>
@ -70,7 +70,7 @@
<Top><Row0><Sizes><Toolbar-028e0f20><key>iaridepm.enu1</key></Toolbar-028e0f20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>231</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>231151</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-02db0f20><key>iaridepm.enu1</key></Toolbar-02db0f20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>231</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>231151</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "efm32.h" /* EFM32 registers */
#include "efm32_chip.h" /* EFM32 chip initialization */
#include "efm32_cmu.h" /* EFM32 clock management */

View File

@ -91,13 +91,13 @@
<file>$PROJ_DIR$\..\obj\main.o</file>
<file>$TOOLKIT_DIR$\lib\shb_l.a</file>
<file>$PROJ_DIR$\..\obj\boot.o</file>
<file>$PROJ_DIR$\..\obj\timer.o</file>
<file>$PROJ_DIR$\..\obj\cstart.o</file>
<file>$PROJ_DIR$\..\obj\boot.pbi</file>
<file>$PROJ_DIR$\..\obj\vectors.o</file>
<file>$PROJ_DIR$\..\obj\timer.pbi</file>
<file>$PROJ_DIR$\..\obj\main.pbi</file>
<file>$PROJ_DIR$\..\obj\timer.pbi</file>
<file>$PROJ_DIR$\..\obj\boot.pbi</file>
<file>$PROJ_DIR$\..\obj\core_cm3.o</file>
<file>$PROJ_DIR$\..\obj\cstart.o</file>
<file>$PROJ_DIR$\..\obj\timer.o</file>
<file>$PROJ_DIR$\..\obj\vectors.pbi</file>
<file>$PROJ_DIR$\..\obj\boot.lst</file>
<file>$PROJ_DIR$\..\obj\vectors.lst</file>
@ -230,6 +230,7 @@
<file>$PROJ_DIR$\..\obj\efm32_acmp.lst</file>
<file>$PROJ_DIR$\..\obj\efm32_ebi.lst</file>
<file>$PROJ_DIR$\..\obj\efm32_usart.lst</file>
<file>$PROJ_DIR$\..\..\Boot\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
@ -240,7 +241,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 178 91</file>
<file> 178 89</file>
</tool>
</outputs>
<inputs>
@ -290,6 +291,10 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 149 9 189 186 196 217 182 210 199 197 0 5 3 4 165 164 1 7 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 149 9 189 186 196 217 182 210 199 197 0 5 3 4 165 164 1 7 16 15</file>
@ -309,10 +314,6 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 11 149 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 19 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 11 149 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 19 16 15</file>
@ -458,7 +459,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 25 166 186 196 217 210 199 197 168 167 149 0 5 3 189 4 165 164 1 7 19 16 15</file>
<file> 25 166 186 196 217 182 210 199 197 168 167 149 0 5 3 189 4 165 164 1 7 19 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
@ -481,7 +482,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 27 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 15 149 16 201 168</file>
<file> 27 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 15 149 16 201 168</file>
</tool>
<tool>
<name>ICCARM</name>
@ -504,7 +505,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 29 149 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 16 19 15</file>
<file> 29 149 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 16 19 15</file>
</tool>
<tool>
<name>ICCARM</name>
@ -527,7 +528,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 31 149 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 16 15</file>
<file> 31 149 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
@ -550,7 +551,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 33 149 19 16 15</file>
<file> 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 33 149 19 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
@ -573,7 +574,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 189 186 196 217 210 199 197 35 0 5 3 4 165 164 1 7</file>
<file> 189 186 196 217 182 210 199 197 35 0 5 3 4 165 164 1 7</file>
</tool>
<tool>
<name>ICCARM</name>
@ -596,7 +597,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 37 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 149 15 16</file>
<file> 37 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 149 15 16</file>
</tool>
<tool>
<name>ICCARM</name>
@ -619,7 +620,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 39 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7</file>
<file> 39 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7</file>
</tool>
<tool>
<name>ICCARM</name>
@ -642,7 +643,7 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 41 149 0 5 3 189 186 196 217 210 199 197 4 165 164 1 7 19 16 15</file>
<file> 41 149 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 19 16 15</file>
</tool>
<tool>
<name>ICCARM</name>
@ -977,7 +978,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 87</file>
<file> 88</file>
</tool>
<tool>
<name>ICCARM</name>
@ -991,7 +992,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1000,7 +1001,7 @@
<outputs>
<tool>
<name>AARM</name>
<file> 86</file>
<file> 90</file>
</tool>
</outputs>
</file>
@ -1023,7 +1024,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1046,7 +1047,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1055,7 +1056,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 90</file>
<file> 86</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1069,7 +1070,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1078,11 +1079,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 89</file>
<file> 87</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 96 85</file>
<file> 96 91</file>
</tool>
</outputs>
<inputs>
@ -1092,7 +1093,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1105,7 +1106,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 94 88</file>
<file> 94 85</file>
</tool>
</outputs>
<inputs>
@ -1115,7 +1116,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 73 163 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
<file> 73 224 0 5 3 189 186 196 217 182 210 199 197 4 165 164 1 7 17 58 149 19 16 31 15 43 71 75 77 68 80</file>
</tool>
</inputs>
</file>
@ -1134,7 +1135,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 155 84 91 86 125 127 126 194 187 208 209 105 106 107 108 131 130 129 128 123 124 183 184 102 103 137 135 136 133 132 134 101 104 159 152 160 82 185 85 88 83 100 97 99</file>
<file> 155 84 89 90 125 127 126 194 187 208 209 105 106 107 108 131 130 129 128 123 124 183 184 102 103 137 135 136 133 132 134 101 104 159 152 160 82 185 91 85 83 100 97 99</file>
</tool>
</inputs>
</file>
@ -1143,7 +1144,7 @@
<inputs>
<tool>
<name>BILINK</name>
<file> 87 98 109 110 111 112 113 114 115 116 117 118 119 120 121 122 141 142 143 144 145 146 147 169 170 173 174 175 176 177 148 161 150 162 90 180 89 92</file>
<file> 88 98 109 110 111 112 113 114 115 116 117 118 119 120 121 122 141 142 143 144 145 146 147 169 170 173 174 175 176 177 148 161 150 162 86 180 87 92</file>
</tool>
</inputs>
</file>

View File

@ -24,7 +24,7 @@
<Windows>
<Wnd2>
<Wnd0>
<Tabs>
<Tab>
<Identity>TabID-15953-11523</Identity>
@ -36,7 +36,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1>
<Tabs>
<Tab>
<Identity>TabID-26827-12343</Identity>
@ -46,7 +46,7 @@
</Tab>
<Tab><Identity>TabID-26138-18087</Identity><TabName>Find in Files</TabName><Factory>Find-in-Files</Factory><Session/></Tab></Tabs>
<SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd1></Windows>
<Editor>
@ -59,7 +59,7 @@
<Top><Row0><Sizes><Toolbar-028f0f20><key>iaridepm.enu1</key></Toolbar-028f0f20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>228</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>228175</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-02bd0f20><key>iaridepm.enu1</key></Toolbar-02bd0f20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>228</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>228175</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -1817,7 +1817,7 @@ OUTPUT(C:/Work/software/OpenBLT/Target/Demo/ARMCM3_LM3S_EK_LM3S6965_Crossworks/B
.debug_frame 0x000039d0 0xa0 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le_small.a(user_libc.o)
.debug_frame 0x00003a70 0x600 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libm_v7m_t_le_small.a(libm_asm.o)
.debug_info 0x00000000 0x91b8
.debug_info 0x00000000 0x91b9
.debug_info 0x00000000 0xa06 THUMB Debug/../../obj/sysctl.o
.debug_info 0x00000a06 0x427 THUMB Debug/../../obj/interrupt.o
.debug_info 0x00000e2d 0x110 THUMB Debug/../../obj/cpulib.o
@ -1826,28 +1826,28 @@ OUTPUT(C:/Work/software/OpenBLT/Target/Demo/ARMCM3_LM3S_EK_LM3S6965_Crossworks/B
.debug_info 0x00001efc 0xbb2 THUMB Debug/../../obj/uartlib.o
.debug_info 0x00002aae 0x5d5 THUMB Debug/../../obj/ssi.o
.debug_info 0x00003083 0x6a3 THUMB Debug/../../obj/mmc.o
.debug_info 0x00003726 0x4f5 THUMB Debug/../../obj/hooks.o
.debug_info 0x00003c1b 0x97 THUMB Debug/../../obj/main.o
.debug_info 0x00003cb2 0xfd THUMB Debug/../../obj/cstart.o
.debug_info 0x00003daf 0xf7 THUMB Debug/../../obj/vectors.o
.debug_info 0x00003ea6 0x140 THUMB Debug/../../obj/cpu.o
.debug_info 0x00003fe6 0x673 THUMB Debug/../../obj/flash.o
.debug_info 0x00004659 0x161 THUMB Debug/../../obj/nvm.o
.debug_info 0x000047ba 0x133 THUMB Debug/../../obj/timer.o
.debug_info 0x000048ed 0x271 THUMB Debug/../../obj/uart.o
.debug_info 0x00004b5e 0xeb THUMB Debug/../../obj/assert.o
.debug_info 0x00004c49 0xc7 THUMB Debug/../../obj/backdoor.o
.debug_info 0x00004d10 0x8f THUMB Debug/../../obj/boot.o
.debug_info 0x00004d9f 0x1ba THUMB Debug/../../obj/com.o
.debug_info 0x00004f59 0x8d THUMB Debug/../../obj/cop.o
.debug_info 0x00004fe6 0x5e8 THUMB Debug/../../obj/xcp.o
.debug_info 0x000055ce 0x2500 THUMB Debug/../../obj/ff.o
.debug_info 0x00007ace 0x160 THUMB Debug/../../obj/unicode.o
.debug_info 0x00007c2e 0x868 THUMB Debug/../../obj/file.o
.debug_info 0x00008496 0xc55 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le_small.a(libc2.o)
.debug_info 0x000090eb 0xcd C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le_small.a(user_libc.o)
.debug_info 0x00003726 0x4f6 THUMB Debug/../../obj/hooks.o
.debug_info 0x00003c1c 0x97 THUMB Debug/../../obj/main.o
.debug_info 0x00003cb3 0xfd THUMB Debug/../../obj/cstart.o
.debug_info 0x00003db0 0xf7 THUMB Debug/../../obj/vectors.o
.debug_info 0x00003ea7 0x140 THUMB Debug/../../obj/cpu.o
.debug_info 0x00003fe7 0x673 THUMB Debug/../../obj/flash.o
.debug_info 0x0000465a 0x161 THUMB Debug/../../obj/nvm.o
.debug_info 0x000047bb 0x133 THUMB Debug/../../obj/timer.o
.debug_info 0x000048ee 0x271 THUMB Debug/../../obj/uart.o
.debug_info 0x00004b5f 0xeb THUMB Debug/../../obj/assert.o
.debug_info 0x00004c4a 0xc7 THUMB Debug/../../obj/backdoor.o
.debug_info 0x00004d11 0x8f THUMB Debug/../../obj/boot.o
.debug_info 0x00004da0 0x1ba THUMB Debug/../../obj/com.o
.debug_info 0x00004f5a 0x8d THUMB Debug/../../obj/cop.o
.debug_info 0x00004fe7 0x5e8 THUMB Debug/../../obj/xcp.o
.debug_info 0x000055cf 0x2500 THUMB Debug/../../obj/ff.o
.debug_info 0x00007acf 0x160 THUMB Debug/../../obj/unicode.o
.debug_info 0x00007c2f 0x868 THUMB Debug/../../obj/file.o
.debug_info 0x00008497 0xc55 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le_small.a(libc2.o)
.debug_info 0x000090ec 0xcd C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le_small.a(user_libc.o)
.debug_abbrev 0x00000000 0x1edf
.debug_abbrev 0x00000000 0x1eee
.debug_abbrev 0x00000000 0x1c5 THUMB Debug/../../obj/sysctl.o
.debug_abbrev 0x000001c5 0x13d THUMB Debug/../../obj/interrupt.o
.debug_abbrev 0x00000302 0xa8 THUMB Debug/../../obj/cpulib.o
@ -1856,26 +1856,26 @@ OUTPUT(C:/Work/software/OpenBLT/Target/Demo/ARMCM3_LM3S_EK_LM3S6965_Crossworks/B
.debug_abbrev 0x0000065b 0x177 THUMB Debug/../../obj/uartlib.o
.debug_abbrev 0x000007d2 0x16d THUMB Debug/../../obj/ssi.o
.debug_abbrev 0x0000093f 0x2a1 THUMB Debug/../../obj/mmc.o
.debug_abbrev 0x00000be0 0x14e THUMB Debug/../../obj/hooks.o
.debug_abbrev 0x00000d2e 0x5f THUMB Debug/../../obj/main.o
.debug_abbrev 0x00000d8d 0x14 THUMB Debug/../../obj/cstart.o
.debug_abbrev 0x00000da1 0xbe THUMB Debug/../../obj/vectors.o
.debug_abbrev 0x00000e5f 0xaf THUMB Debug/../../obj/cpu.o
.debug_abbrev 0x00000f0e 0x22e THUMB Debug/../../obj/flash.o
.debug_abbrev 0x0000113c 0xba THUMB Debug/../../obj/nvm.o
.debug_abbrev 0x000011f6 0xe8 THUMB Debug/../../obj/timer.o
.debug_abbrev 0x000012de 0x161 THUMB Debug/../../obj/uart.o
.debug_abbrev 0x0000143f 0x7c THUMB Debug/../../obj/assert.o
.debug_abbrev 0x000014bb 0x5b THUMB Debug/../../obj/backdoor.o
.debug_abbrev 0x00001516 0x3f THUMB Debug/../../obj/boot.o
.debug_abbrev 0x00001555 0xe0 THUMB Debug/../../obj/com.o
.debug_abbrev 0x00001635 0x3f THUMB Debug/../../obj/cop.o
.debug_abbrev 0x00001674 0x1cb THUMB Debug/../../obj/xcp.o
.debug_abbrev 0x0000183f 0x315 THUMB Debug/../../obj/ff.o
.debug_abbrev 0x00001b54 0xa5 THUMB Debug/../../obj/unicode.o
.debug_abbrev 0x00001bf9 0x1f8 THUMB Debug/../../obj/file.o
.debug_abbrev 0x00001df1 0xc9 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le_small.a(libc2.o)
.debug_abbrev 0x00001eba 0x25 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le_small.a(user_libc.o)
.debug_abbrev 0x00000be0 0x15d THUMB Debug/../../obj/hooks.o
.debug_abbrev 0x00000d3d 0x5f THUMB Debug/../../obj/main.o
.debug_abbrev 0x00000d9c 0x14 THUMB Debug/../../obj/cstart.o
.debug_abbrev 0x00000db0 0xbe THUMB Debug/../../obj/vectors.o
.debug_abbrev 0x00000e6e 0xaf THUMB Debug/../../obj/cpu.o
.debug_abbrev 0x00000f1d 0x22e THUMB Debug/../../obj/flash.o
.debug_abbrev 0x0000114b 0xba THUMB Debug/../../obj/nvm.o
.debug_abbrev 0x00001205 0xe8 THUMB Debug/../../obj/timer.o
.debug_abbrev 0x000012ed 0x161 THUMB Debug/../../obj/uart.o
.debug_abbrev 0x0000144e 0x7c THUMB Debug/../../obj/assert.o
.debug_abbrev 0x000014ca 0x5b THUMB Debug/../../obj/backdoor.o
.debug_abbrev 0x00001525 0x3f THUMB Debug/../../obj/boot.o
.debug_abbrev 0x00001564 0xe0 THUMB Debug/../../obj/com.o
.debug_abbrev 0x00001644 0x3f THUMB Debug/../../obj/cop.o
.debug_abbrev 0x00001683 0x1cb THUMB Debug/../../obj/xcp.o
.debug_abbrev 0x0000184e 0x315 THUMB Debug/../../obj/ff.o
.debug_abbrev 0x00001b63 0xa5 THUMB Debug/../../obj/unicode.o
.debug_abbrev 0x00001c08 0x1f8 THUMB Debug/../../obj/file.o
.debug_abbrev 0x00001e00 0xc9 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le_small.a(libc2.o)
.debug_abbrev 0x00001ec9 0x25 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le_small.a(user_libc.o)
.debug_loc 0x00000000 0xa049
.debug_loc 0x00000000 0x9fa THUMB Debug/../../obj/sysctl.o

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S6965_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -164,5 +164,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -6,7 +6,7 @@
<folder Name="Source Files">
<configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
<folder Name="Demo">
<folder Name="Boot">
<folder Name="Boot" file_name="">
<folder Name="lib">
<folder Name="inc" file_name="">
<file file_name="../lib/inc/hw_ints.h"/>
@ -42,9 +42,9 @@
<file file_name="../lib/fatfs/mmc.c"/>
</folder>
</folder>
<file file_name="../config.h"/>
<file file_name="../hooks.c"/>
<file file_name="../main.c"/>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
<folder Name="Source" file_name="">

View File

@ -19,8 +19,8 @@
<ProjectSessionItem path="lm3s6965_crossworks" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965;Source Files" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965;Source Files;Source" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965;Source Files;Source;ARMCM3_LM3S" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965;Source Files;Demo" name="unnamed" />
<ProjectSessionItem path="lm3s6965_crossworks;openbtl_ek_lm3s6965;Source Files;Demo;Boot" name="unnamed" />
</Project>
<Register1>
<RegisterWindow openNodes="" binaryNodes="" hiddenNodes="" unsignedNodes="" visibleGroups="" decimalNodes="" octalNodes="" asciiNodes="" name="openbtl_ek_lm3s6965" />
@ -51,8 +51,8 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\main.c" y="61" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\main.c" left="0" selected="0" name="unnamed" top="37" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Source\ARMCM3_LM3S\cpu.c" y="78" path="C:\Work\software\OpenBLT\Target\Source\ARMCM3_LM3S\cpu.c" left="0" selected="1" name="unnamed" top="45" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\main.c" y="61" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot\main.c" left="18" selected="0" name="unnamed" top="37" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Source\ARMCM3_LM3S\cpu.c" y="78" path="C:\Work\software\OpenBLT\Target\Source\ARMCM3_LM3S\cpu.c" left="18" selected="1" name="unnamed" top="45" />
</Files>
<ARMCrossStudioWindow activeProject="openbtl_ek_lm3s6965" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Source" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
<ARMCrossStudioWindow activeProject="openbtl_ek_lm3s6965" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Boot" fileDialogDefaultFilter="" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -51,8 +51,8 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\main.c" y="0" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\main.c" left="18" selected="0" name="unnamed" top="0" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\led.c" y="40" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\led.c" left="18" selected="1" name="unnamed" top="40" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\main.c" y="0" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\main.c" left="0" selected="0" name="unnamed" top="0" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\led.c" y="40" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog\led.c" left="0" selected="1" name="unnamed" top="40" />
</Files>
<ARMCrossStudioWindow activeProject="demoprog_ek_lm3s6965" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S6965_Crossworks\Prog" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -20,25 +20,25 @@ Idx Name Size VMA LMA File off Algn
CONTENTS, ALLOC, LOAD, DATA
2 .bss 0000114c 20000008 00004be0 00010008 2**2
ALLOC
3 .debug_info 0000d7ab 00000000 00000000 00010008 2**0
3 .debug_info 0000d7ac 00000000 00000000 00010008 2**0
CONTENTS, READONLY, DEBUGGING
4 .debug_abbrev 00002641 00000000 00000000 0001d7b3 2**0
4 .debug_abbrev 00002650 00000000 00000000 0001d7b4 2**0
CONTENTS, READONLY, DEBUGGING
5 .debug_loc 0000a773 00000000 00000000 0001fdf4 2**0
5 .debug_loc 0000a773 00000000 00000000 0001fe04 2**0
CONTENTS, READONLY, DEBUGGING
6 .debug_aranges 00000ba0 00000000 00000000 0002a567 2**0
6 .debug_aranges 00000ba0 00000000 00000000 0002a577 2**0
CONTENTS, READONLY, DEBUGGING
7 .debug_ranges 00001008 00000000 00000000 0002b107 2**0
7 .debug_ranges 00001008 00000000 00000000 0002b117 2**0
CONTENTS, READONLY, DEBUGGING
8 .debug_line 0000414b 00000000 00000000 0002c10f 2**0
8 .debug_line 0000414b 00000000 00000000 0002c11f 2**0
CONTENTS, READONLY, DEBUGGING
9 .debug_str 0000249e 00000000 00000000 0003025a 2**0
9 .debug_str 0000249e 00000000 00000000 0003026a 2**0
CONTENTS, READONLY, DEBUGGING
10 .comment 00000030 00000000 00000000 000326f8 2**0
10 .comment 00000030 00000000 00000000 00032708 2**0
CONTENTS, READONLY
11 .ARM.attributes 00000033 00000000 00000000 00032728 2**0
11 .ARM.attributes 00000033 00000000 00000000 00032738 2**0
CONTENTS, READONLY
12 .debug_frame 000023a0 00000000 00000000 0003275c 2**2
12 .debug_frame 000023a0 00000000 00000000 0003276c 2**2
CONTENTS, READONLY, DEBUGGING
SYMBOL TABLE:
00000000 l d .text 00000000 .text

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_GCC\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_GCC\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S6965_GCC
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -164,5 +164,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -67,9 +67,9 @@
<File Name="../lib/inc/hw_uart.h"/>
</VirtualDirectory>
</VirtualDirectory>
<File Name="../config.h"/>
<File Name="../hooks.c"/>
<File Name="../main.c"/>
<File Name="../blt_conf.h"/>
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>

View File

@ -35,7 +35,7 @@ PROJ_NAME=openbtl_ek_lm3s6965
#| Speficy project source files |
#|---------------------------------------------------------------------------------------|
PROJ_FILES= \
config.h \
blt_conf.h \
hooks.c \
main.c \
./lib/inc/hw_flash.h \

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_IAR\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S6965_IAR\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S6965_IAR
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -166,5 +166,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -2,7 +2,7 @@
<project>
<fileVersion>2</fileVersion>
<fileChecksum>2644682914</fileChecksum>
<fileChecksum>1465485539</fileChecksum>
<configuration>
<name>Debug</name>
<outputs>
@ -72,13 +72,13 @@
<file>$PROJ_DIR$\..\obj\file.lst</file>
<file>$PROJ_DIR$\..\obj\ssi.lst</file>
<file>$PROJ_DIR$\..\obj\filesys.o</file>
<file>$PROJ_DIR$\..\obj\unicode.lst</file>
<file>$PROJ_DIR$\..\..\..\..\Source\filesys.c</file>
<file>$PROJ_DIR$\..\obj\led.lst</file>
<file>$PROJ_DIR$\..\obj\led.pbi</file>
<file>$PROJ_DIR$\..\..\..\..\Source\filesys.h</file>
<file>$PROJ_DIR$\..\..\..\..\Source\fatfs\src\option\ccsbcs.c</file>
<file>$PROJ_DIR$\..\..\..\..\Source\filesys.h</file>
<file>$PROJ_DIR$\..\obj\led.lst</file>
<file>$PROJ_DIR$\..\obj\filesys.lst</file>
<file>$PROJ_DIR$\..\..\..\..\Source\filesys.c</file>
<file>$PROJ_DIR$\..\obj\unicode.lst</file>
<file>$PROJ_DIR$\..\obj\unicode.pbi</file>
<file>$PROJ_DIR$\..\obj\unicode.o</file>
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
@ -120,8 +120,8 @@
<file>$PROJ_DIR$\..\obj\hooks.o</file>
<file>$PROJ_DIR$\..\obj\com.o</file>
<file>$PROJ_DIR$\..\obj\flash.lst</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_LM3S\IAR\memory.x</file>
<file>$PROJ_DIR$\..\obj\backdoor.lst</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_LM3S\IAR\memory.x</file>
<file>$PROJ_DIR$\..\obj\cpu.lst</file>
<file>$PROJ_DIR$\..\obj\hooks.pbi</file>
<file>$PROJ_DIR$\..\obj\uart.lst</file>
@ -186,6 +186,7 @@
<file>$PROJ_DIR$\..\obj\cpulib.pbi</file>
<file>$PROJ_DIR$\..\obj\gpio.pbi</file>
<file>$PROJ_DIR$\..\obj\interrupt.pbi</file>
<file>$PROJ_DIR$\..\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\driverlib\cpulib.c</name>
@ -225,11 +226,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 18 20 24 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 1 8</file>
<file> 18 20 24 25 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 1 8</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 18 20 24 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 1 8</file>
<file> 18 20 24 25 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 1 8</file>
</tool>
</inputs>
</file>
@ -248,11 +249,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 19 20 21 24 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 6 9 8</file>
<file> 19 20 21 24 25 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 6 9 8</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 19 20 21 24 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 6 9 8</file>
<file> 19 20 21 24 25 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 6 9 8</file>
</tool>
</inputs>
</file>
@ -271,11 +272,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 20 22 25 0 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8</file>
<file> 20 22 25 0 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 20 22 25 0 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8</file>
<file> 20 22 25 0 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8</file>
</tool>
</inputs>
</file>
@ -292,13 +293,9 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 20 21 23 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8 11 13</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 20 21 23 25 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8 11 13</file>
<file> 20 21 23 25 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8 11 13</file>
</tool>
</inputs>
</file>
@ -317,11 +314,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 20 22 24 25 0 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8 13</file>
<file> 20 22 24 25 0 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8 13</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 20 22 24 25 0 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8 13</file>
<file> 20 22 24 25 0 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8 13</file>
</tool>
</inputs>
</file>
@ -340,7 +337,7 @@
<inputs>
<tool>
<name>ICCARM</name>
<file> 20 21 24 25 26 3 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 8 15 13</file>
<file> 20 21 24 25 26 3 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 8 15 13</file>
</tool>
</inputs>
</file>
@ -359,11 +356,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 21 25 6 9 11 13 44 47 53 41 49 27 60 34 57 38 36 40 51 59 45 16 55 62</file>
<file> 21 25 6 9 11 13 44 47 53 41 49 180 60 34 57 38 36 40 51 59 45 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 21 25 6 9 11 13 44 47 53 41 49 27 60 34 57 38 36 40 51 59 45 16 55 62</file>
<file> 21 25 6 9 11 13 44 47 53 41 49 180 60 34 57 38 36 40 51 59 45 16 55 62</file>
</tool>
</inputs>
</file>
@ -391,11 +388,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 15 13</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 15 13</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 15 13</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 15 13</file>
</tool>
</inputs>
</file>
@ -414,11 +411,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 20 21 22 24 25 13 6 9 15</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 20 21 22 24 25 13 6 9 15</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 20 21 22 24 25 13 6 9 15</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 20 21 22 24 25 13 6 9 15</file>
</tool>
</inputs>
</file>
@ -437,11 +434,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -492,11 +489,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -515,11 +512,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 1</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 1</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 1</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 1</file>
</tool>
</inputs>
</file>
@ -538,11 +535,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -561,11 +558,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -584,11 +581,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 13 15</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 13 15</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 13 15</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 21 25 13 15</file>
</tool>
</inputs>
</file>
@ -601,17 +598,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 66 74</file>
<file> 72 74</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 45 47 16 71</file>
<file> 45 47 16 67</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 45 47 16 71</file>
<file> 45 47 16 67</file>
</tool>
</inputs>
</file>
@ -630,11 +627,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -647,17 +644,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 115 163</file>
<file> 114 163</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -676,11 +673,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -699,11 +696,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 43</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 43</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 43</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 43</file>
</tool>
</inputs>
</file>
@ -722,11 +719,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -745,11 +742,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 169 157 155 127 77 156 79 92 128 170 75 154 76 125 126 129 78 153</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 169 157 155 127 77 156 79 92 128 170 75 154 76 125 126 129 78 153</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62 169 157 155 127 77 156 79 92 128 170 75 154 76 125 126 129 78 153</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62 169 157 155 127 77 156 79 92 128 170 75 154 76 125 126 129 78 153</file>
</tool>
</inputs>
</file>
@ -768,11 +765,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
<file> 53 41 49 180 60 34 57 38 36 40 51 59 45 47 16 55 62</file>
</tool>
</inputs>
</file>
@ -785,17 +782,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 72 65</file>
<file> 70 65</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 70 45 47 132 55 62</file>
<file> 53 41 49 27 60 34 57 38 36 40 51 68 45 47 132 55 62</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 41 49 27 60 34 57 38 36 40 51 70 45 47 132 55 62</file>
<file> 53 41 49 27 60 34 57 38 36 40 51 68 45 47 132 55 62</file>
</tool>
</inputs>
</file>
@ -804,11 +801,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 69</file>
<file> 66</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 68 108</file>
<file> 69 108</file>
</tool>
</outputs>
<inputs>
@ -837,7 +834,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 114 110 163 160 112 164 94 102 131 151 146 137 171 172 111 173 159 105 93 149 174 136 82 175 74 139 162 158 122 144 121</file>
<file> 115 110 163 160 112 164 94 102 131 151 146 137 171 172 111 173 159 105 93 149 174 136 82 175 74 139 162 158 122 144 121</file>
</tool>
</inputs>
</file>

View File

@ -1939,7 +1939,7 @@
</group>
</group>
<file>
<name>$PROJ_DIR$\..\config.h</name>
<name>$PROJ_DIR$\..\blt_conf.h</name>
</file>
<file>
<name>$PROJ_DIR$\..\hooks.c</name>

View File

@ -17,7 +17,7 @@
<Build><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows><Window><Factory>Find-in-Files</Factory></Window></Windows></PreferedWindows><ColumnWidth0>20</ColumnWidth0><ColumnWidth1>1155</ColumnWidth1><ColumnWidth2>308</ColumnWidth2><ColumnWidth3>77</ColumnWidth3></Build><Find-in-Files><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><ColumnWidth0>552</ColumnWidth0><ColumnWidth1>78</ColumnWidth1><ColumnWidth2>946</ColumnWidth2></Find-in-Files><TerminalIO/><PROJECT_GUI_CALL_GRAPH><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><col-names><item>File</item><item>Function</item><item>Line</item></col-names><col-widths><item>200</item><item>700</item><item>100</item></col-widths></PROJECT_GUI_CALL_GRAPH><Select-Ambiguous-Definitions><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows><Window><Factory>Build</Factory></Window><Window><Factory>Find-in-Files</Factory></Window><Window><Factory>Find-All-References</Factory></Window></Windows></PreferedWindows><ColumnWidth0>664</ColumnWidth0><ColumnWidth1>94</ColumnWidth1><ColumnWidth2>1138</ColumnWidth2></Select-Ambiguous-Definitions><Find-All-References><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows><Window><Factory>Build</Factory></Window><Window><Factory>Find-in-Files</Factory></Window></Windows></PreferedWindows><ColumnWidth0>664</ColumnWidth0><ColumnWidth1>94</ColumnWidth1><ColumnWidth2>1138</ColumnWidth2></Find-All-References></Static>
<Windows>
<Wnd0>
<Wnd1>
<Tabs>
<Tab>
<Identity>TabID-31649-22318</Identity>
@ -29,20 +29,20 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd0><Wnd3><Tabs><Tab><Identity>TabID-25743-19564</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd1><Wnd2><Tabs><Tab><Identity>TabID-25743-19564</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd2></Windows>
<Editor>
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\config.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>64</YPos2><SelStart2>5776</SelStart2><SelEnd2>5776</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\hooks.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>305</YPos2><SelStart2>15643</SelStart2><SelEnd2>15643</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>44</YPos2><SelStart2>2987</SelStart2><SelEnd2>2987</SelEnd2></Tab><ActiveTab>2</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\file.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>8</YPos2><SelStart2>1824</SelStart2><SelEnd2>1824</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\file.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>107</YPos2><SelStart2>6163</SelStart2><SelEnd2>6163</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\cpu.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>50</YPos2><SelStart2>3845</SelStart2><SelEnd2>3845</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\hooks.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>305</YPos2><SelStart2>15643</SelStart2><SelEnd2>15643</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>44</YPos2><SelStart2>2987</SelStart2><SelEnd2>2987</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\file.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>8</YPos2><SelStart2>1824</SelStart2><SelEnd2>1824</SelEnd2></Tab><ActiveTab>2</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\file.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>107</YPos2><SelStart2>6163</SelStart2><SelEnd2>6163</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\cpu.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>50</YPos2><SelStart2>3845</SelStart2><SelEnd2>3845</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Positions>
<Top><Row0><Sizes><Toolbar-02aacf20><key>iaridepm.enu1</key></Toolbar-02aacf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>529</Bottom><Right>212</Right><x>-2</x><y>-2</y><xscreen>151</xscreen><yscreen>169</yscreen><sizeHorzCX>149802</sizeHorzCX><sizeHorzCY>294425</sizeHorzCY><sizeVertCX>212302</sizeVertCX><sizeVertCY>925087</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>529</Bottom><Right>265</Right><x>-2</x><y>-2</y><xscreen>1212</xscreen><yscreen>138</yscreen><sizeHorzCX>1202381</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>264881</sizeVertCX><sizeVertCY>925087</sizeVertCY></Rect></Wnd3></Sizes></Row0></Right><Bottom><Row0><Sizes/></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-00ffcf20><key>iaridepm.enu1</key></Toolbar-00ffcf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>529</Bottom><Right>212</Right><x>-2</x><y>-2</y><xscreen>151</xscreen><yscreen>169</yscreen><sizeHorzCX>149802</sizeHorzCX><sizeHorzCY>294425</sizeHorzCY><sizeVertCX>212302</sizeVertCX><sizeVertCY>925087</sizeVertCY></Rect></Wnd1></Sizes></Row0></Left><Right><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>529</Bottom><Right>265</Right><x>-2</x><y>-2</y><xscreen>1212</xscreen><yscreen>138</yscreen><sizeHorzCX>1202381</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>264881</sizeVertCX><sizeVertCY>925087</sizeVertCY></Rect></Wnd2></Sizes></Row0></Right><Bottom><Row0><Sizes/></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -81,16 +81,20 @@
<file>$PROJ_DIR$\..\irq.h</file>
<file>$PROJ_DIR$\..\led.c</file>
<file>$PROJ_DIR$\..\led.h</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_gpio.pbi</file>
<file>$PROJ_DIR$\..\main.c</file>
<file>$PROJ_DIR$\..\time.c</file>
<file>$PROJ_DIR$\..\time.h</file>
<file>$PROJ_DIR$\..\vectors.c</file>
<file>$PROJ_DIR$\..\obj\system_stm32f10x.pbi</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_gpio.pbi</file>
<file>$PROJ_DIR$\..\obj\adc.lst</file>
<file>$PROJ_DIR$\..\obj\epi.lst</file>
<file>$PROJ_DIR$\..\obj\gpio.lst</file>
<file>$PROJ_DIR$\..\obj\ethernet.lst</file>
<file>$PROJ_DIR$\..\obj\demoprog_ek_lm3s6965.map</file>
<file>$TOOLKIT_DIR$\lib\dl7M_tln.a</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_crc.o</file>
<file>$TOOLKIT_DIR$\lib\dl7M_tln.a</file>
<file>$PROJ_DIR$\..\obj\ethernet.lst</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_fsmc.o</file>
<file>$PROJ_DIR$\..\obj\gpio.lst</file>
<file>$PROJ_DIR$\..\obj\epi.lst</file>
<file>$PROJ_DIR$\..\obj\core_cm3.o</file>
<file>$PROJ_DIR$\..\bin\demoprog_ek_lm3s6965.srec</file>
<file>$PROJ_DIR$\..\obj\cstart.o</file>
@ -138,10 +142,6 @@
<file>$PROJ_DIR$\..\obj\i2s.lst</file>
<file>$PROJ_DIR$\..\obj\cpu.lst</file>
<file>$PROJ_DIR$\..\obj\comp.lst</file>
<file>$PROJ_DIR$\..\main.c</file>
<file>$PROJ_DIR$\..\time.c</file>
<file>$PROJ_DIR$\..\time.h</file>
<file>$PROJ_DIR$\..\vectors.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c</file>
@ -192,9 +192,9 @@
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c</file>
@ -258,6 +258,7 @@
<file>$PROJ_DIR$\..\obj\boot.pbi</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_pwr.pbi</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_sdio.pbi</file>
<file>$PROJ_DIR$\..\..\Boot\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\driverlib\cpu.c</name>
@ -268,7 +269,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 130 172</file>
<file> 134 172</file>
</tool>
</outputs>
<inputs>
@ -291,7 +292,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 77 200</file>
<file> 81 200</file>
</tool>
</outputs>
<inputs>
@ -314,7 +315,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 131 201</file>
<file> 135 201</file>
</tool>
</outputs>
<inputs>
@ -337,7 +338,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 78 173</file>
<file> 88 173</file>
</tool>
</outputs>
<inputs>
@ -360,14 +361,10 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 80 197</file>
<file> 85 197</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 48 54 55 62 6 10 32 22</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 48 54 55 62 6 10 32 22</file>
@ -383,7 +380,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 97 204</file>
<file> 101 204</file>
</tool>
</outputs>
<inputs>
@ -406,7 +403,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 79 205</file>
<file> 87 205</file>
</tool>
</outputs>
<inputs>
@ -452,7 +449,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 91 207</file>
<file> 95 207</file>
</tool>
</outputs>
<inputs>
@ -475,7 +472,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 129 208</file>
<file> 133 208</file>
</tool>
</outputs>
<inputs>
@ -490,7 +487,7 @@
<outputs>
<tool>
<name>ILINK</name>
<file> 224 81</file>
<file> 224 82</file>
</tool>
</outputs>
</file>
@ -503,7 +500,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 128 209</file>
<file> 132 209</file>
</tool>
</outputs>
<inputs>
@ -779,17 +776,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 150 122</file>
<file> 150 126</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
@ -798,7 +795,7 @@
<outputs>
<tool>
<name>AARM</name>
<file> 87</file>
<file> 91</file>
</tool>
</outputs>
</file>
@ -811,17 +808,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 155 119</file>
<file> 155 123</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 149 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
@ -834,29 +831,20 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 147 121</file>
<file> 147 125</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 149 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\bin\demoprog_olimex_stm32p103.out</name>
<outputs>
<tool>
<name>OBJCOPY</name>
<file> 124</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\main.c</name>
<outputs>
@ -866,17 +854,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 151 120</file>
<file> 151 124</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 149 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
@ -885,21 +873,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 127</file>
<file> 131</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 202 126</file>
<file> 202 130</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 149 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
@ -918,14 +906,23 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 149 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 70 149 68 72 74 134 54 55 56 60 62 32 14 38 22 34</file>
<file> 70 252 68 72 74 77 54 55 56 60 62 32 14 38 22 34</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\bin\demoprog_olimex_stm32p103.out</name>
<outputs>
<tool>
<name>OBJCOPY</name>
<file> 128</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c</name>
<outputs>
@ -935,7 +932,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 109</file>
<file> 113</file>
</tool>
</outputs>
</file>
@ -948,7 +945,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 108</file>
<file> 112</file>
</tool>
</outputs>
</file>
@ -961,7 +958,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 110</file>
<file> 114</file>
</tool>
</outputs>
</file>
@ -987,7 +984,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 111</file>
<file> 115</file>
</tool>
</outputs>
</file>
@ -996,11 +993,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 76</file>
<file> 79</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 114</file>
<file> 118</file>
</tool>
</outputs>
</file>
@ -1013,7 +1010,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 112</file>
<file> 116</file>
</tool>
</outputs>
</file>
@ -1026,7 +1023,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 113</file>
<file> 117</file>
</tool>
</outputs>
</file>
@ -1035,11 +1032,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 95</file>
<file> 99</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 92</file>
<file> 96</file>
</tool>
</outputs>
</file>
@ -1048,11 +1045,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 93</file>
<file> 97</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 117</file>
<file> 121</file>
</tool>
</outputs>
</file>
@ -1061,11 +1058,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 90</file>
<file> 94</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 89</file>
<file> 93</file>
</tool>
</outputs>
</file>
@ -1074,11 +1071,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 99</file>
<file> 103</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 100</file>
<file> 104</file>
</tool>
</outputs>
</file>
@ -1087,7 +1084,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 88</file>
<file> 92</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1100,7 +1097,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 94</file>
<file> 98</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1113,7 +1110,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 98</file>
<file> 102</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1160,32 +1157,6 @@
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 116</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 96</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 115</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 85</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c</name>
<outputs>
@ -1195,7 +1166,33 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 84</file>
<file> 86</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 120</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 100</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 119</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 89</file>
</tool>
</outputs>
</file>
@ -1204,11 +1201,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 75</file>
<file> 80</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 103</file>
<file> 107</file>
</tool>
</outputs>
</file>
@ -1217,11 +1214,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 101</file>
<file> 105</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 104</file>
<file> 108</file>
</tool>
</outputs>
</file>
@ -1234,7 +1231,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 105</file>
<file> 109</file>
</tool>
</outputs>
</file>
@ -1247,7 +1244,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 106</file>
<file> 110</file>
</tool>
</outputs>
</file>
@ -1260,7 +1257,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 107</file>
<file> 111</file>
</tool>
</outputs>
</file>
@ -1269,17 +1266,17 @@
<outputs>
<tool>
<name>ILINK</name>
<file> 81</file>
<file> 82</file>
</tool>
<tool>
<name>OBJCOPY</name>
<file> 86</file>
<file> 90</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ILINK</name>
<file> 243 200 122 201 172 87 173 197 204 205 206 207 208 209 119 121 120 210 211 212 213 214 215 126 248 216 217 218 247 219 118 102 159 82</file>
<file> 243 200 126 201 172 91 173 197 204 205 206 207 208 209 123 125 124 210 211 212 213 214 215 130 248 216 217 218 247 219 122 106 159 84</file>
</tool>
</inputs>
</file>

View File

@ -35,7 +35,7 @@
<Windows>
<Wnd2>
<Wnd0>
<Tabs>
<Tab>
<Identity>TabID-27300-28131</Identity>
@ -47,7 +47,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3><Tabs><Tab><Identity>TabID-14407-15370</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1><Tabs><Tab><Identity>TabID-14407-15370</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd1></Windows>
<Editor>
@ -60,7 +60,7 @@
<Top><Row0><Sizes><Toolbar-029bcf20><key>iaridepm.enu1</key></Toolbar-029bcf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>392</Bottom><Right>241</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>139</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>242160</sizeHorzCY><sizeVertCX>241071</sizeVertCX><sizeVertCY>686411</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>137</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>139</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>242160</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>242160</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-02abcf20><key>iaridepm.enu1</key></Toolbar-02abcf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>392</Bottom><Right>241</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>139</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>242160</sizeHorzCY><sizeVertCX>241071</sizeVertCX><sizeVertCY>686411</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>137</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>139</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>242160</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>242160</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S8962_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -155,5 +155,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -6,7 +6,7 @@
<folder Name="Source Files">
<configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
<folder Name="Demo">
<folder Name="Boot">
<folder Name="Boot" file_name="">
<folder Name="lib">
<folder Name="inc">
<file file_name="../lib/inc/hw_ints.h"/>
@ -37,9 +37,9 @@
<file file_name="../lib/driverlib/canlib.h"/>
</folder>
</folder>
<file file_name="../config.h"/>
<file file_name="../hooks.c"/>
<file file_name="../main.c"/>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
<folder Name="Source">

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\main.c" y="7" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\main.c" left="18" selected="1" name="unnamed" top="0" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\main.c" y="7" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\main.c" left="0" selected="1" name="unnamed" top="0" />
</Files>
<ARMCrossStudioWindow activeProject="openbtl_ek_lm3s8962" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot\lib\inc" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
<ARMCrossStudioWindow activeProject="openbtl_ek_lm3s8962" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Boot" fileDialogDefaultFilter="" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Prog\main.c" y="24" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Prog\main.c" left="18" selected="1" name="unnamed" top="9" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Prog\main.c" y="24" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Prog\main.c" left="0" selected="1" name="unnamed" top="9" />
</Files>
<ARMCrossStudioWindow activeProject="demoprog_ek_lm3s8962" autoConnectTarget="Texas Instruments ICDI" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_LM3S_EK_LM3S8962_Crossworks\Prog\lib\driverlib" fileDialogDefaultFilter="*.c" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_GCC\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_GCC\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S8962_GCC
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -155,5 +155,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<CodeLite_Project Name="DemoBoot" InternalType="">
<Plugins>
<Plugin Name="qmake">
<![CDATA[00010001N0005Debug000000000000]]>
</Plugin>
</Plugins>
<VirtualDirectory Name="Source">
<VirtualDirectory Name="ARMCM3_LM3S">
<VirtualDirectory Name="GCC">
@ -67,17 +72,12 @@
<File Name="../lib/inc/hw_uart.h"/>
</VirtualDirectory>
</VirtualDirectory>
<File Name="../config.h"/>
<File Name="../hooks.c"/>
<File Name="../main.c"/>
<File Name="../blt_conf.h"/>
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>
<Plugins>
<Plugin Name="qmake">
<![CDATA[00010001N0005Debug000000000000]]>
</Plugin>
</Plugins>
<Description/>
<Dependencies/>
<Settings Type="Dynamic Library">

View File

@ -35,7 +35,7 @@ PROJ_NAME=openbtl_ek_lm3s8962
#| Speficy project source files |
#|---------------------------------------------------------------------------------------|
PROJ_FILES= \
config.h \
blt_conf.h \
hooks.c \
main.c \
./lib/inc/hw_flash.h \

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_IAR\Boot\config.h
* \file Demo\ARMCM3_LM3S_EK_LM3S8962_IAR\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_LM3S_EK_LM3S8962_IAR
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -157,5 +157,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -2,7 +2,7 @@
<project>
<fileVersion>2</fileVersion>
<fileChecksum>731047147</fileChecksum>
<fileChecksum>255714169</fileChecksum>
<configuration>
<name>Debug</name>
<outputs>
@ -64,13 +64,13 @@
<file>$TOOLKIT_DIR$\lib\shb_l.a</file>
<file>$PROJ_DIR$\..\obj\main.o</file>
<file>$PROJ_DIR$\..\obj\boot.o</file>
<file>$PROJ_DIR$\..\obj\xcp.o</file>
<file>$PROJ_DIR$\..\obj\backdoor.o</file>
<file>$PROJ_DIR$\..\obj\assert.pbi</file>
<file>$PROJ_DIR$\..\obj\cop.o</file>
<file>$PROJ_DIR$\..\obj\com.o</file>
<file>$PROJ_DIR$\..\obj\backdoor.pbi</file>
<file>$PROJ_DIR$\..\obj\com.pbi</file>
<file>$PROJ_DIR$\..\obj\backdoor.pbi</file>
<file>$PROJ_DIR$\..\obj\cop.o</file>
<file>$PROJ_DIR$\..\obj\assert.pbi</file>
<file>$PROJ_DIR$\..\obj\backdoor.o</file>
<file>$PROJ_DIR$\..\obj\xcp.o</file>
<file>$PROJ_DIR$\..\obj\cop.pbi</file>
<file>$PROJ_DIR$\..\obj\xcp.pbi</file>
<file>$PROJ_DIR$\..\obj\xcp.lst</file>
@ -91,8 +91,8 @@
<file>$PROJ_DIR$\..\obj\sysctl.o</file>
<file>$PROJ_DIR$\..\obj\uartlib.o</file>
<file>$PROJ_DIR$\..\obj\flashlib.pbi</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_LM3S\IAR\memory.x</file>
<file>$PROJ_DIR$\..\obj\cpulib.pbi</file>
<file>$PROJ_DIR$\..\..\..\..\Source\ARMCM3_LM3S\IAR\memory.x</file>
<file>$PROJ_DIR$\..\obj\gpio.pbi</file>
<file>$PROJ_DIR$\..\obj\interrupt.pbi</file>
<file>$PROJ_DIR$\..\obj\sysctl.pbi</file>
@ -141,6 +141,7 @@
<file>$PROJ_DIR$\..\bin\openbtl_ek_lm3s8962.srec</file>
<file>$PROJ_DIR$\..\bin\openbtl_ek_lm3s8962.out</file>
<file>$PROJ_DIR$\..\..\..\..\Source\file.h</file>
<file>$PROJ_DIR$\..\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\driverlib\canlib.c</name>
@ -157,11 +158,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 15 18 20 19 22 0 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10</file>
<file> 15 18 20 19 22 0 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 15 18 20 19 22 0 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10</file>
<file> 15 18 20 19 22 0 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10</file>
</tool>
</inputs>
</file>
@ -170,7 +171,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 86</file>
<file> 85</file>
</tool>
<tool>
<name>ICCARM</name>
@ -203,11 +204,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 18 21 22 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 6 10</file>
<file> 16 18 21 22 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 6 10</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 16 18 21 22 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 6 10</file>
<file> 16 18 21 22 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 6 10</file>
</tool>
</inputs>
</file>
@ -226,11 +227,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 17 18 19 21 22 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 8 10</file>
<file> 17 18 19 21 22 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 8 10</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 17 18 19 21 22 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 8 10</file>
<file> 17 18 19 21 22 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 8 10</file>
</tool>
</inputs>
</file>
@ -249,11 +250,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 18 20 22 4 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10</file>
<file> 18 20 22 4 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 18 20 22 4 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10</file>
<file> 18 20 22 4 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10</file>
</tool>
</inputs>
</file>
@ -270,9 +271,13 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 18 20 21 22 4 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10 12</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 18 20 21 22 4 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10 12</file>
<file> 18 20 21 22 4 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10 12</file>
</tool>
</inputs>
</file>
@ -291,11 +296,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 18 19 21 22 23 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10 14 12</file>
<file> 18 19 21 22 23 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10 14 12</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 18 19 21 22 23 1 47 40 43 24 52 33 51 37 35 39 45 134 49 54 10 14 12</file>
<file> 18 19 21 22 23 1 47 40 43 135 52 33 51 37 35 39 45 134 49 54 10 14 12</file>
</tool>
</inputs>
</file>
@ -321,13 +326,9 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -346,11 +347,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 18 19 20 21 22 12 8</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 18 19 20 21 22 12 8</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 18 19 20 21 22 12 8</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 18 19 20 21 22 12 8</file>
</tool>
</inputs>
</file>
@ -369,11 +370,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -391,7 +392,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 60</file>
<file> 62</file>
</tool>
<tool>
<name>ICCARM</name>
@ -401,11 +402,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -424,11 +425,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22</file>
</tool>
</inputs>
</file>
@ -447,11 +448,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -470,11 +471,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22 6</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22 6</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22 6</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22 6</file>
</tool>
</inputs>
</file>
@ -493,11 +494,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -516,11 +517,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -539,11 +540,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22 12 14</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22 12 14</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 19 22 12 14</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 19 22 12 14</file>
</tool>
</inputs>
</file>
@ -552,21 +553,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 63</file>
<file> 60</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 115 59</file>
<file> 115 63</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -585,11 +586,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -598,21 +599,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 64</file>
<file> 59</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 121 62</file>
<file> 121 58</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 42</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 42</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54 42</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54 42</file>
</tool>
</inputs>
</file>
@ -631,11 +632,11 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -648,17 +649,17 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 67 58</file>
<file> 67 64</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 47 40 43 24 52 33 51 37 35 39 45 134 49 54</file>
<file> 47 40 43 135 52 33 51 37 35 39 45 134 49 54</file>
</tool>
</inputs>
</file>
@ -667,7 +668,7 @@
<inputs>
<tool>
<name>BILINK</name>
<file> 60 63 100 64 65 93 86 92 84 87 116 88 101 94 89 102 95 90 103 66</file>
<file> 62 60 100 59 65 93 85 92 84 87 116 88 101 94 89 102 95 90 103 66</file>
</tool>
</inputs>
</file>
@ -682,7 +683,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 85 112 59 57 62 61 70 78 97 71 79 80 117 81 56 69 82 99 91 83 98 58 55 123 108 122</file>
<file> 86 112 63 57 58 61 70 78 97 71 79 80 117 81 56 69 82 99 91 83 98 64 55 123 108 122</file>
</tool>
</inputs>
</file>
@ -701,7 +702,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 85 112 59 57 125 126 62 61 70 78 97 71 79 80 117 81 56 69 82 99 91 83 98 58 55 123 108 122</file>
<file> 86 112 63 57 125 126 58 61 70 78 97 71 79 80 117 81 56 69 82 99 91 83 98 64 55 123 108 122</file>
</tool>
</inputs>
</file>

View File

@ -1925,7 +1925,7 @@
</group>
</group>
<file>
<name>$PROJ_DIR$\..\config.h</name>
<name>$PROJ_DIR$\..\blt_conf.h</name>
</file>
<file>
<name>$PROJ_DIR$\..\hooks.c</name>

View File

@ -25,7 +25,7 @@
<Windows>
<Wnd2>
<Wnd0>
<Tabs>
<Tab>
<Identity>TabID-17931-22022</Identity>
@ -37,7 +37,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1>
<Tabs>
<Tab>
<Identity>TabID-24560-22511</Identity>
@ -47,20 +47,20 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd1></Windows>
<Editor>
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>48</YPos2><SelStart2>2913</SelStart2><SelEnd2>2913</SelEnd2></Tab><ActiveTab>0</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\config.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>60</YPos2><SelStart2>908</SelStart2><SelEnd2>908</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\com.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>131</YPos2><SelStart2>7001</SelStart2><SelEnd2>7001</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\timer.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>88</YPos2><SelStart2>5260</SelStart2><SelEnd2>5260</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\xcp.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>213</YPos2><SelStart2>11481</SelStart2><SelEnd2>11481</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\uart.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>100</YPos2><SelStart2>5382</SelStart2><SelEnd2>5382</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\flash.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>82</YPos2><SelStart2>5211</SelStart2><SelEnd2>5231</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\plausibility.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>173</YPos2><SelStart2>6300</SelStart2><SelEnd2>6300</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\cpu.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>24</YPos2><SelStart2>2270</SelStart2><SelEnd2>2270</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>48</YPos2><SelStart2>2913</SelStart2><SelEnd2>2913</SelEnd2></Tab><ActiveTab>0</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\com.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>131</YPos2><SelStart2>7001</SelStart2><SelEnd2>7001</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\timer.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>88</YPos2><SelStart2>5260</SelStart2><SelEnd2>5260</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\xcp.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>213</YPos2><SelStart2>11481</SelStart2><SelEnd2>11481</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\uart.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>100</YPos2><SelStart2>5382</SelStart2><SelEnd2>5382</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\flash.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>82</YPos2><SelStart2>5211</SelStart2><SelEnd2>5231</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\plausibility.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>173</YPos2><SelStart2>6300</SelStart2><SelEnd2>6300</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\..\..\Source\ARMCM3_LM3S\cpu.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>24</YPos2><SelStart2>2270</SelStart2><SelEnd2>2270</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Positions>
<Top><Row0><Sizes><Toolbar-0299cf20><key>iaridepm.enu1</key></Toolbar-0299cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>225</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>225198</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-02a1cf20><key>iaridepm.enu1</key></Toolbar-02a1cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>642</Bottom><Right>225</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>97372</sizeHorzCX><sizeHorzCY>167679</sizeHorzCY><sizeVertCX>175425</sizeVertCX><sizeVertCY>782503</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1296</Right><x>-2</x><y>-2</y><xscreen>1298</xscreen><yscreen>138</yscreen><sizeHorzCX>1003091</sizeHorzCX><sizeHorzCY>167679</sizeHorzCY><sizeVertCX>97372</sizeVertCX><sizeVertCY>167679</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "boot.h" /* bootloader interface driver */
#include "irq.h" /* IRQ driver */
#include "led.h" /* LED driver */

View File

@ -88,16 +88,15 @@
<file>$PROJ_DIR$\..\time.c</file>
<file>$PROJ_DIR$\..\time.h</file>
<file>$PROJ_DIR$\..\vectors.c</file>
<file>$PROJ_DIR$\..\obj\lm3s8962.pbd</file>
<file>$PROJ_DIR$\..\bin\demoprog_ek_lm3s6965.out</file>
<file>$PROJ_DIR$\..\obj\lm3s8962.pbd</file>
<file>$PROJ_DIR$\..\obj\hibernate.lst</file>
<file>$PROJ_DIR$\..\obj\vectors.pbi</file>
<file>$PROJ_DIR$\..\obj\led.lst</file>
<file>$PROJ_DIR$\..\..\Boot\config.h</file>
<file>$PROJ_DIR$\..\obj\main.pbi</file>
<file>$PROJ_DIR$\..\obj\vectors.lst</file>
<file>$PROJ_DIR$\..\obj\main.lst</file>
<file>$PROJ_DIR$\..\obj\vectors.lst</file>
<file>$PROJ_DIR$\..\obj\boot.lst</file>
<file>$PROJ_DIR$\..\obj\led.lst</file>
<file>$PROJ_DIR$\..\obj\vectors.pbi</file>
<file>$PROJ_DIR$\..\obj\timer.pbi</file>
<file>$PROJ_DIR$\..\obj\timer.lst</file>
<file>$PROJ_DIR$\..\obj\irq.lst</file>
@ -185,12 +184,12 @@
<file>$PROJ_DIR$\..\obj\pwm.lst</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c</file>
<file>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c</file>
@ -267,17 +266,18 @@
<file>$PROJ_DIR$\..\obj\can.pbi</file>
<file>$PROJ_DIR$\..\obj\can.o</file>
<file>$PROJ_DIR$\..\obj\can.lst</file>
<file>$PROJ_DIR$\..\..\Boot\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\driverlib\comp.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 131</file>
<file> 130</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 252 111</file>
<file> 251 110</file>
</tool>
</outputs>
<inputs>
@ -296,11 +296,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 130</file>
<file> 129</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 253 110</file>
<file> 252 109</file>
</tool>
</outputs>
<inputs>
@ -319,11 +319,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 258</file>
<file> 257</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 260 259</file>
<file> 259 258</file>
</tool>
</outputs>
<inputs>
@ -342,11 +342,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 132</file>
<file> 131</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 251 173</file>
<file> 250 172</file>
</tool>
</outputs>
<inputs>
@ -365,11 +365,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 133</file>
<file> 132</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 254 174</file>
<file> 253 173</file>
</tool>
</outputs>
<inputs>
@ -388,11 +388,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 134</file>
<file> 133</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 256 107</file>
<file> 255 106</file>
</tool>
</outputs>
<inputs>
@ -411,11 +411,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 135</file>
<file> 134</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 146 114</file>
<file> 145 113</file>
</tool>
</outputs>
<inputs>
@ -434,14 +434,18 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 136</file>
<file> 135</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 255 115</file>
<file> 254 114</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 53 57 58 63 65 8 16 24</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 53 57 58 63 65 8 16 24</file>
@ -453,11 +457,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 137</file>
<file> 136</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 84 116</file>
<file> 84 115</file>
</tool>
</outputs>
<inputs>
@ -476,11 +480,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 138</file>
<file> 137</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 147 117</file>
<file> 146 116</file>
</tool>
</outputs>
<inputs>
@ -499,7 +503,7 @@
<outputs>
<tool>
<name>ILINK</name>
<file> 205 257</file>
<file> 204 256</file>
</tool>
</outputs>
</file>
@ -508,11 +512,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 139</file>
<file> 138</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 250 118</file>
<file> 249 117</file>
</tool>
</outputs>
<inputs>
@ -531,11 +535,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 140</file>
<file> 139</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 249 119</file>
<file> 248 118</file>
</tool>
</outputs>
<inputs>
@ -554,11 +558,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 141</file>
<file> 140</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 109 120</file>
<file> 108 119</file>
</tool>
</outputs>
<inputs>
@ -577,11 +581,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 142</file>
<file> 141</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 176 121</file>
<file> 175 120</file>
</tool>
</outputs>
<inputs>
@ -600,18 +604,14 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 143</file>
<file> 142</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 170 122</file>
<file> 169 121</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 57 58 61 65 8 24 30</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 57 58 61 65 8 24 30</file>
@ -623,11 +623,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 144</file>
<file> 143</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 175 123</file>
<file> 174 122</file>
</tool>
</outputs>
<inputs>
@ -646,11 +646,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 207</file>
<file> 206</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 169 124</file>
<file> 168 123</file>
</tool>
</outputs>
<inputs>
@ -669,14 +669,18 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 208</file>
<file> 207</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 108 125</file>
<file> 107 124</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 57 59 65 8 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 57 59 65 8 24 36</file>
@ -688,11 +692,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 92</file>
<file> 91</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 93 218</file>
<file> 92 217</file>
</tool>
</outputs>
<inputs>
@ -711,11 +715,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 209</file>
<file> 208</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 168 126</file>
<file> 167 125</file>
</tool>
</outputs>
<inputs>
@ -734,11 +738,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 210</file>
<file> 209</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 171 127</file>
<file> 170 126</file>
</tool>
</outputs>
<inputs>
@ -757,11 +761,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 211</file>
<file> 210</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 172 128</file>
<file> 171 127</file>
</tool>
</outputs>
<inputs>
@ -780,11 +784,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 212</file>
<file> 211</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 113 129</file>
<file> 112 128</file>
</tool>
</outputs>
<inputs>
@ -803,21 +807,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 219</file>
<file> 218</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 91 243</file>
<file> 88 242</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -826,7 +830,7 @@
<outputs>
<tool>
<name>AARM</name>
<file> 155</file>
<file> 154</file>
</tool>
</outputs>
</file>
@ -835,21 +839,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 203</file>
<file> 202</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 94 240</file>
<file> 93 239</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -858,21 +862,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 204</file>
<file> 203</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 86 242</file>
<file> 89 241</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -881,21 +885,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 88</file>
<file> 85</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 90 241</file>
<file> 86 240</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -904,21 +908,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 248</file>
<file> 247</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 112 247</file>
<file> 111 246</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -927,30 +931,21 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 85</file>
<file> 90</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 89 217</file>
<file> 87 216</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 73 87 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\obj\lm3s8962.pbd</name>
<inputs>
<tool>
<name>BILINK</name>
<file> 130 219 258 131 132 133 134 135 136 137 138 139 140 203 204 88 141 142 143 144 207 208 248 92 209 210 211 85 212</file>
<file> 73 260 71 75 77 80 57 58 59 63 65 34 16 40 4 24 36</file>
</tool>
</inputs>
</file>
@ -959,13 +954,13 @@
<outputs>
<tool>
<name>OBJCOPY</name>
<file> 145</file>
<file> 144</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ILINK</name>
<file> 213 110 243 111 173 155 174 107 114 115 116 117 118 119 240 242 241 120 121 122 123 124 125 247 218 126 127 128 217 129 239 159 98 158</file>
<file> 212 109 242 110 172 154 173 106 113 114 115 116 117 118 239 241 240 119 120 121 122 123 124 246 217 125 126 127 216 128 238 158 97 157</file>
</tool>
</inputs>
</file>
@ -974,33 +969,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 161</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 153</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 157</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 238</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 237</file>
<file> 160</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1008,12 +977,38 @@
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 156</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 237</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 162</file>
<file> 161</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 150</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\misc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 236</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1026,20 +1021,7 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 163</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 150</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 164</file>
<file> 162</file>
</tool>
<tool>
<name>ICCARM</name>
@ -1048,20 +1030,59 @@
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 236</file>
<file> 163</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 154</file>
<file> 148</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 164</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 214</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 235</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 153</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 159</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 213</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c</name>
<outputs>
<tool>
<name>BICOMP</name>
@ -1074,20 +1095,7 @@
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 160</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 214</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c</name>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c</name>
<outputs>
<tool>
<name>BICOMP</name>
@ -1095,20 +1103,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 216</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c</name>
<outputs>
<tool>
<name>BICOMP</name>
<file> 167</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 95</file>
<file> 94</file>
</tool>
</outputs>
</file>
@ -1117,11 +1112,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 97</file>
<file> 96</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 96</file>
<file> 95</file>
</tool>
</outputs>
</file>
@ -1130,11 +1125,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 102</file>
<file> 101</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 156</file>
<file> 155</file>
</tool>
</outputs>
</file>
@ -1143,11 +1138,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 222</file>
<file> 221</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 224</file>
<file> 223</file>
</tool>
</outputs>
</file>
@ -1156,11 +1151,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 148</file>
<file> 147</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 225</file>
<file> 224</file>
</tool>
</outputs>
</file>
@ -1169,11 +1164,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 106</file>
<file> 105</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 226</file>
<file> 225</file>
</tool>
</outputs>
</file>
@ -1182,11 +1177,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 220</file>
<file> 219</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 227</file>
<file> 226</file>
</tool>
</outputs>
</file>
@ -1195,11 +1190,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 100</file>
<file> 99</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 228</file>
<file> 227</file>
</tool>
</outputs>
</file>
@ -1208,11 +1203,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 99</file>
<file> 98</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 229</file>
<file> 228</file>
</tool>
</outputs>
</file>
@ -1221,11 +1216,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 221</file>
<file> 220</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 230</file>
<file> 229</file>
</tool>
</outputs>
</file>
@ -1234,11 +1229,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 105</file>
<file> 104</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 231</file>
<file> 230</file>
</tool>
</outputs>
</file>
@ -1247,11 +1242,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 104</file>
<file> 103</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 232</file>
<file> 231</file>
</tool>
</outputs>
</file>
@ -1260,11 +1255,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 103</file>
<file> 102</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 233</file>
<file> 232</file>
</tool>
</outputs>
</file>
@ -1273,11 +1268,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 101</file>
<file> 100</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 234</file>
<file> 233</file>
</tool>
</outputs>
</file>
@ -1286,11 +1281,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 223</file>
<file> 222</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 235</file>
<file> 234</file>
</tool>
</outputs>
</file>
@ -1299,11 +1294,11 @@
<outputs>
<tool>
<name>BICOMP</name>
<file> 92</file>
<file> 91</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 218</file>
<file> 217</file>
</tool>
</outputs>
</file>
@ -1312,17 +1307,17 @@
<outputs>
<tool>
<name>ILINK</name>
<file> 257</file>
<file> 256</file>
</tool>
<tool>
<name>OBJCOPY</name>
<file> 206</file>
<file> 205</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ILINK</name>
<file> 213 110 243 259 111 173 155 174 107 114 115 116 117 118 119 240 242 241 120 121 122 123 124 125 247 218 126 127 128 217 129 239 159 98 158</file>
<file> 212 109 242 258 110 172 154 173 106 113 114 115 116 117 118 239 241 240 119 120 121 122 123 124 246 217 125 126 127 216 128 238 158 97 157</file>
</tool>
</inputs>
</file>
@ -1331,7 +1326,7 @@
<outputs>
<tool>
<name>OBJCOPY</name>
<file> 245</file>
<file> 244</file>
</tool>
</outputs>
</file>
@ -1340,7 +1335,7 @@
<inputs>
<tool>
<name>BILINK</name>
<file> 130 219 131 132 133 134 135 136 137 138 139 140 203 204 88 141 142 143 144 207 208 248 92 209 210 211 85 212</file>
<file> 129 218 130 131 132 133 134 135 136 137 138 139 202 203 85 140 141 142 143 206 207 247 91 208 209 210 90 211</file>
</tool>
</inputs>
</file>

View File

@ -12,7 +12,7 @@
<Column0>132</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
<Column0>191</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
</Workspace>
<Build>
@ -24,7 +24,7 @@
<Windows>
<Wnd0>
<Wnd2>
<Tabs>
<Tab>
<Identity>TabID-30499-23628</Identity>
@ -36,7 +36,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3>
<Tabs>
<Tab>
<Identity>TabID-20859-24014</Identity>
@ -46,7 +46,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd1></Windows>
<SelectedTab>0</SelectedTab></Wnd3></Windows>
<Editor>
@ -59,7 +59,7 @@
<Top><Row0><Sizes><Toolbar-016ccf20><key>iaridepm.enu1</key></Toolbar-016ccf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>393</Bottom><Right>206</Right><x>-2</x><y>-2</y><xscreen>126</xscreen><yscreen>138</yscreen><sizeHorzCX>125000</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>206349</sizeVertCX><sizeVertCY>688153</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>136</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>138</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>240418</sizeHorzCY><sizeVertCX>125000</sizeVertCX><sizeVertCY>240418</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-013acf20><key>iaridepm.enu1</key></Toolbar-013acf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>582</Bottom><Right>265</Right><x>-2</x><y>-2</y><xscreen>162</xscreen><yscreen>198</yscreen><sizeHorzCX>125193</sizeHorzCX><sizeHorzCY>240583</sizeHorzCY><sizeVertCX>206337</sizeVertCX><sizeVertCY>709599</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>196</Bottom><Right>1296</Right><x>-2</x><y>-2</y><xscreen>1298</xscreen><yscreen>198</yscreen><sizeHorzCX>1003091</sizeHorzCX><sizeHorzCY>240583</sizeHorzCY><sizeVertCX>125193</sizeVertCX><sizeVertCY>240583</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\config.h
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_STM32_Olimex_STM32H103_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -168,5 +168,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -6,8 +6,7 @@
<folder Name="Source Files">
<configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
<folder Name="Demo">
<folder Name="Boot">
<file file_name="../config.h"/>
<folder Name="Boot" file_name="">
<file file_name="../hooks.c"/>
<file file_name="../main.c"/>
<folder Name="lib">
@ -48,6 +47,7 @@
<file file_name="../usb_prop.h"/>
<file file_name="../usb_pwr.c"/>
<file file_name="../usb_pwr.h"/>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
<folder Name="Source">

View File

@ -40,8 +40,8 @@
</TraceWindow>
<Watch1>
<Watches active="1" update="Never" >
<Watchpoint linenumber="0" radix="-1" name="fifoCtrl[0]" expression="fifoCtrl[0]" filename="" />
<Watchpoint linenumber="0" radix="-1" name="fifoPipeBulkIN" expression="fifoPipeBulkIN" filename="" />
<Watchpoint linenumber="0" radix="-1" name="fifoCtrl[0]" expression="fifoCtrl[0]" filename="" />
</Watches>
</Watch1>
<Watch2>
@ -54,7 +54,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\main.c" y="53" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\main.c" left="18" selected="1" name="unnamed" top="12" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\main.c" y="53" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot\main.c" left="0" selected="1" name="unnamed" top="12" />
</Files>
<ARMCrossStudioWindow activeProject="openbtl_olimex_stm32h103" autoConnectTarget="SEGGER J-Link" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot" fileDialogDefaultFilter="*.c" autoConnectCapabilities="266111" debugSearchPath="" buildConfiguration="THUMB Debug" />
<ARMCrossStudioWindow activeProject="openbtl_olimex_stm32h103" autoConnectTarget="SEGGER J-Link" debugSearchFileMap="" fileDialogInitialDirectory="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Boot" fileDialogDefaultFilter="" autoConnectCapabilities="266111" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "stm32f10x.h" /* STM32 register definitions */
#include "stm32f10x_conf.h" /* STM32 peripheral drivers */
#include "irq.h" /* IRQ driver */

View File

@ -51,7 +51,7 @@
<Watches active="0" update="Never" />
</Watch4>
<Files>
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Prog\main.c" y="0" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Prog\main.c" left="18" selected="1" name="unnamed" top="0" />
<SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Prog\main.c" y="0" path="C:\Work\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32H103_Crossworks\Prog\main.c" left="0" selected="1" name="unnamed" top="0" />
</Files>
<ARMCrossStudioWindow activeProject="demoprog_olimex_stm32h103" autoConnectTarget="Olimex ARM-USB-TINY" debugSearchFileMap="" fileDialogInitialDirectory="D:\usr\feaser\software\OpenBLT\Target\Demo\ARMCM3_STM32_Olimex_STM32P103_Crossworks\Prog" fileDialogDefaultFilter="*.c" autoConnectCapabilities="266111" debugSearchPath="" buildConfiguration="THUMB Debug" />
</session>

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_GCC\Boot\config.h
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_GCC\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_STM32_Olimex_STM32H103_GCC
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -168,5 +168,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -95,9 +95,9 @@
<File Name="../usb_prop.h"/>
<File Name="../usb_pwr.c"/>
<File Name="../usb_pwr.h"/>
<File Name="../config.h"/>
<File Name="../hooks.c"/>
<File Name="../main.c"/>
<File Name="../blt_conf.h"/>
</VirtualDirectory>
</VirtualDirectory>
</VirtualDirectory>

View File

@ -35,7 +35,7 @@ PROJ_NAME=openbtl_olimex_stm32h103
#| Speficy project source files |
#|---------------------------------------------------------------------------------------|
PROJ_FILES= \
config.h \
blt_conf.h \
hooks.c \
main.c \
usb_conf.h \

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "stm32f10x.h" /* STM32 register definitions */
#include "stm32f10x_conf.h" /* STM32 peripheral drivers */
#include "irq.h" /* IRQ driver */

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_IAR\Boot\config.h
* \file Demo\ARMCM3_STM32_Olimex_STM32H103_IAR\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_STM32_Olimex_STM32H103_IAR
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -170,5 +170,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -12,12 +12,12 @@
<Column0>146</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
<Column0>231</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
</Workspace>
<Build><ColumnWidth0>20</ColumnWidth0><ColumnWidth1>1059</ColumnWidth1><ColumnWidth2>282</ColumnWidth2><ColumnWidth3>70</ColumnWidth3></Build><Debug-Log><ColumnWidth0>20</ColumnWidth0><ColumnWidth1>1413</ColumnWidth1></Debug-Log><TerminalIO/></Static>
<Windows>
<Wnd2>
<Wnd0>
<Tabs>
<Tab>
<Identity>TabID-32216-31616</Identity>
@ -29,7 +29,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3><Tabs><Tab><Identity>TabID-12497-1878</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab><Tab><Identity>TabID-2690-2881</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1><Tabs><Tab><Identity>TabID-12497-1878</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab><Tab><Identity>TabID-2690-2881</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd1></Windows>
<Editor>
@ -42,7 +42,7 @@
<Top><Row0><Sizes><Toolbar-0299cf20><key>iaridepm.enu1</key></Toolbar-0299cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>395</Bottom><Right>237</Right><x>-2</x><y>-2</y><xscreen>137</xscreen><yscreen>116</yscreen><sizeHorzCX>135913</sizeHorzCX><sizeHorzCY>202091</sizeHorzCY><sizeVertCX>237103</sizeVertCX><sizeVertCY>691638</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>134</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>136</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>236934</sizeHorzCY><sizeVertCX>135913</sizeVertCX><sizeVertCY>202091</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-02b0cf20><key>iaridepm.enu1</key></Toolbar-02b0cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>585</Bottom><Right>305</Right><x>-2</x><y>-2</y><xscreen>176</xscreen><yscreen>166</yscreen><sizeHorzCX>136012</sizeHorzCX><sizeHorzCY>201701</sizeHorzCY><sizeVertCX>237249</sizeVertCX><sizeVertCY>713244</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>193</Bottom><Right>1296</Right><x>-2</x><y>-2</y><xscreen>1298</xscreen><yscreen>195</yscreen><sizeHorzCX>1003091</sizeHorzCX><sizeHorzCY>236938</sizeHorzCY><sizeVertCX>136012</sizeVertCX><sizeVertCY>201701</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -1909,7 +1909,7 @@
</file>
</group>
<file>
<name>$PROJ_DIR$\..\config.h</name>
<name>$PROJ_DIR$\..\blt_conf.h</name>
</file>
<file>
<name>$PROJ_DIR$\..\hooks.c</name>

View File

@ -36,7 +36,7 @@
/****************************************************************************************
* Include files
****************************************************************************************/
#include "../Boot/config.h" /* bootloader configuration */
#include "../Boot/blt_conf.h" /* bootloader configuration */
#include "stm32f10x.h" /* STM32 register definitions */
#include "stm32f10x_conf.h" /* STM32 peripheral drivers */
#include "irq.h" /* IRQ driver */

View File

@ -12,12 +12,12 @@
<Column0>163</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
<Column0>231</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
</Workspace>
<Build><ColumnWidth0>20</ColumnWidth0><ColumnWidth1>1059</ColumnWidth1><ColumnWidth2>282</ColumnWidth2><ColumnWidth3>70</ColumnWidth3></Build><Debug-Log><ColumnWidth0>20</ColumnWidth0><ColumnWidth1>1413</ColumnWidth1></Debug-Log><TerminalIO/></Static>
<Windows>
<Wnd2>
<Wnd0>
<Tabs>
<Tab>
<Identity>TabID-32216-31616</Identity>
@ -29,7 +29,7 @@
</Tab>
</Tabs>
<SelectedTab>0</SelectedTab></Wnd2><Wnd3><Tabs><Tab><Identity>TabID-12497-1878</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab><Tab><Identity>TabID-2690-2881</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd3></Windows>
<SelectedTab>0</SelectedTab></Wnd0><Wnd1><Tabs><Tab><Identity>TabID-12497-1878</Identity><TabName>Build</TabName><Factory>Build</Factory><Session/></Tab><Tab><Identity>TabID-2690-2881</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd1></Windows>
<Editor>
@ -42,7 +42,7 @@
<Top><Row0><Sizes><Toolbar-0298cf20><key>iaridepm.enu1</key></Toolbar-0298cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>395</Bottom><Right>237</Right><x>-2</x><y>-2</y><xscreen>137</xscreen><yscreen>116</yscreen><sizeHorzCX>135913</sizeHorzCX><sizeHorzCY>202091</sizeHorzCY><sizeVertCX>237103</sizeVertCX><sizeVertCY>691638</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>134</Bottom><Right>1010</Right><x>-2</x><y>-2</y><xscreen>1012</xscreen><yscreen>136</yscreen><sizeHorzCX>1003968</sizeHorzCX><sizeHorzCY>236934</sizeHorzCY><sizeVertCX>135913</sizeVertCX><sizeVertCY>202091</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
<Top><Row0><Sizes><Toolbar-0292cf20><key>iaridepm.enu1</key></Toolbar-0292cf20></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>585</Bottom><Right>305</Right><x>-2</x><y>-2</y><xscreen>176</xscreen><yscreen>166</yscreen><sizeHorzCX>136012</sizeHorzCX><sizeHorzCY>201701</sizeHorzCY><sizeVertCX>237249</sizeVertCX><sizeVertCY>713244</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>193</Bottom><Right>1296</Right><x>-2</x><y>-2</y><xscreen>1298</xscreen><yscreen>195</yscreen><sizeHorzCX>1003091</sizeHorzCX><sizeHorzCY>236938</sizeHorzCY><sizeVertCX>136012</sizeVertCX><sizeVertCY>201701</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop>
</Workspace>

View File

@ -71,13 +71,13 @@
<file>$PROJ_DIR$\Debug\Obj\os.o</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_crc.o</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_cec.o</file>
<file>$PROJ_DIR$\..\obj\misc.o</file>
<file>$PROJ_DIR$\Debug\Obj\stm32f10x_gpio.pbi</file>
<file>$PROJ_DIR$\..\obj\app.lst</file>
<file>$PROJ_DIR$\Debug\Obj\hw.o</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_can.o</file>
<file>$PROJ_DIR$\..\obj\core_cm3.o</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_can.o</file>
<file>$PROJ_DIR$\..\obj\app.lst</file>
<file>$PROJ_DIR$\..\obj\stm32f10x_bkp.o</file>
<file>$PROJ_DIR$\Debug\Obj\stm32f10x_gpio.pbi</file>
<file>$PROJ_DIR$\..\obj\misc.o</file>
<file>$PROJ_DIR$\Debug\Obj\stm32f10x_dac.o</file>
<file>$PROJ_DIR$\Debug\Obj\stm32f10x_bkp.o</file>
<file>$PROJ_DIR$\Debug\Obj\hw.pbi</file>
@ -262,6 +262,7 @@
<file>$PROJ_DIR$\..\bin\demoprog_olimex_stm32p103.srec</file>
<file>$PROJ_DIR$\..\bin\demoprog_olimex_stm32h103.srec</file>
<file>$PROJ_DIR$\..\bin\demoprog_olimex_stm32h103.out</file>
<file>$PROJ_DIR$\..\..\Boot\blt_conf.h</file>
</outputs>
<file>
<name>$PROJ_DIR$\..\lib\stdperiphlib\CMSIS\CM3\CoreSupport\core_cm3.c</name>
@ -272,7 +273,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 172 70</file>
<file> 172 66</file>
</tool>
</outputs>
<inputs>
@ -295,7 +296,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 231 65</file>
<file> 231 71</file>
</tool>
</outputs>
<inputs>
@ -322,6 +323,10 @@
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 6 2 1 174 176 161 128 178 158 87 132 198 51 13 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 6 2 1 174 176 161 128 178 158 87 132 198 51 13 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4</file>
@ -337,14 +342,10 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 227 71</file>
<file> 227 69</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 8 2 1 174 176 161 128 178 158 87 132 198 51 13 6 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4</file>
</tool>
<tool>
<name>ICCARM</name>
<file> 8 2 1 174 176 161 128 178 158 87 132 198 51 13 6 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4</file>
@ -360,7 +361,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 228 69</file>
<file> 228 67</file>
</tool>
</outputs>
<inputs>
@ -867,7 +868,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 53 98 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
<file> 53 256 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
</tool>
</inputs>
</file>
@ -890,7 +891,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 53 98 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
<file> 53 256 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
</tool>
</inputs>
</file>
@ -913,7 +914,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 53 98 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
<file> 53 256 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
</tool>
</inputs>
</file>
@ -936,7 +937,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 53 98 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
<file> 53 256 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
</tool>
</inputs>
</file>
@ -959,7 +960,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 53 98 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
<file> 53 256 2 1 174 176 161 128 178 158 87 132 198 51 13 6 8 10 12 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 4 55 57 60</file>
</tool>
</inputs>
</file>
@ -1000,7 +1001,7 @@
</tool>
<tool>
<name>ICCARM</name>
<file> 67 219</file>
<file> 68 219</file>
</tool>
</outputs>
<inputs>
@ -1062,7 +1063,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 175 81 160 68 77 62 78 73 164 165 167 72 138 140 141 142 125 137 168 76 244 133 134 245 201 147 199 202 206 247 135 108 89</file>
<file> 175 81 160 65 77 62 78 73 164 165 167 72 138 140 141 142 125 137 168 76 244 133 134 245 201 147 199 202 206 247 135 108 89</file>
</tool>
</inputs>
</file>
@ -1071,7 +1072,7 @@
<inputs>
<tool>
<name>BILINK</name>
<file> 75 200 74 90 157 203 204 205 182 159 143 144 145 226 146 136 66 88 180 183 181 162 179 177 173 163 139 184</file>
<file> 75 200 74 90 157 203 204 205 182 159 143 144 145 226 146 136 70 88 180 183 181 162 179 177 173 163 139 184</file>
</tool>
</inputs>
</file>
@ -1086,7 +1087,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 175 251 70 79 248 250 249 65 246 71 69 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
<file> 175 251 66 79 248 250 249 71 246 69 67 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
</tool>
</inputs>
</file>
@ -1101,7 +1102,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 175 251 70 79 248 250 249 65 246 71 69 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
<file> 175 251 66 79 248 250 249 71 246 69 67 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
</tool>
</inputs>
</file>
@ -1120,7 +1121,7 @@
<inputs>
<tool>
<name>ILINK</name>
<file> 175 70 79 248 250 249 65 246 71 69 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
<file> 175 66 79 248 250 249 71 246 69 67 64 63 187 186 188 105 106 80 207 208 209 210 211 212 213 214 215 216 217 218 190 189 247 135 108 89</file>
</tool>
</inputs>
</file>

View File

@ -1786,67 +1786,67 @@ OUTPUT(C:/Work/software/OpenBLT/Target/Demo/ARMCM3_STM32_Olimex_STM32P103_Crossw
.debug_frame 0x00003724 0xa0 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le.a(user_libc.o)
.debug_frame 0x000037c4 0x600 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libm_v7m_t_le.a(libm_asm.o)
.debug_info 0x00000000 0x964e
.debug_info 0x00000000 0x640 THUMB Debug/../../obj/hooks.o
.debug_info 0x00000640 0x31f THUMB Debug/../../obj/main.o
.debug_info 0x0000095f 0x53d THUMB Debug/../../obj/core_cm3.o
.debug_info 0x00000e9c 0x4c6 THUMB Debug/../../obj/system_stm32f10x.o
.debug_info 0x00001362 0x95e THUMB Debug/../../obj/mmc.o
.debug_info 0x00001cc0 0x716 THUMB Debug/../../obj/stm32f10x_gpio.o
.debug_info 0x000023d6 0x8ef THUMB Debug/../../obj/stm32f10x_rcc.o
.debug_info 0x00002cc5 0x959 THUMB Debug/../../obj/stm32f10x_spi.o
.debug_info 0x0000361e 0xa51 THUMB Debug/../../obj/stm32f10x_usart.o
.debug_info 0x0000406f 0x10a THUMB Debug/../../obj/cstart.o
.debug_info 0x00004179 0xfc THUMB Debug/../../obj/vectors.o
.debug_info 0x00004275 0x65 THUMB Debug/../../obj/can.o
.debug_info 0x000042da 0x145 THUMB Debug/../../obj/cpu.o
.debug_info 0x0000441f 0x169 THUMB Debug/../../obj/nvm.o
.debug_info 0x00004588 0x11e THUMB Debug/../../obj/timer.o
.debug_info 0x000046a6 0x294 THUMB Debug/../../obj/uart.o
.debug_info 0x0000493a 0x67d THUMB Debug/../../obj/flash.o
.debug_info 0x00004fb7 0xef THUMB Debug/../../obj/assert.o
.debug_info 0x000050a6 0xcb THUMB Debug/../../obj/backdoor.o
.debug_info 0x00005171 0x93 THUMB Debug/../../obj/boot.o
.debug_info 0x00005204 0x1bf THUMB Debug/../../obj/com.o
.debug_info 0x000053c3 0x91 THUMB Debug/../../obj/cop.o
.debug_info 0x00005454 0x61c THUMB Debug/../../obj/xcp.o
.debug_info 0x00005a70 0x2054 THUMB Debug/../../obj/ff.o
.debug_info 0x00007ac4 0x160 THUMB Debug/../../obj/unicode.o
.debug_info 0x00007c24 0x7db THUMB Debug/../../obj/file.o
.debug_info 0x000083ff 0xc63 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le.a(libc2.o)
.debug_info 0x00009062 0x51f C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libdebugio_v7m_t_le.a(libdebugio.o)
.debug_info 0x00009581 0xcd C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le.a(user_libc.o)
.debug_info 0x00000000 0x964f
.debug_info 0x00000000 0x641 THUMB Debug/../../obj/hooks.o
.debug_info 0x00000641 0x31f THUMB Debug/../../obj/main.o
.debug_info 0x00000960 0x53d THUMB Debug/../../obj/core_cm3.o
.debug_info 0x00000e9d 0x4c6 THUMB Debug/../../obj/system_stm32f10x.o
.debug_info 0x00001363 0x95e THUMB Debug/../../obj/mmc.o
.debug_info 0x00001cc1 0x716 THUMB Debug/../../obj/stm32f10x_gpio.o
.debug_info 0x000023d7 0x8ef THUMB Debug/../../obj/stm32f10x_rcc.o
.debug_info 0x00002cc6 0x959 THUMB Debug/../../obj/stm32f10x_spi.o
.debug_info 0x0000361f 0xa51 THUMB Debug/../../obj/stm32f10x_usart.o
.debug_info 0x00004070 0x10a THUMB Debug/../../obj/cstart.o
.debug_info 0x0000417a 0xfc THUMB Debug/../../obj/vectors.o
.debug_info 0x00004276 0x65 THUMB Debug/../../obj/can.o
.debug_info 0x000042db 0x145 THUMB Debug/../../obj/cpu.o
.debug_info 0x00004420 0x169 THUMB Debug/../../obj/nvm.o
.debug_info 0x00004589 0x11e THUMB Debug/../../obj/timer.o
.debug_info 0x000046a7 0x294 THUMB Debug/../../obj/uart.o
.debug_info 0x0000493b 0x67d THUMB Debug/../../obj/flash.o
.debug_info 0x00004fb8 0xef THUMB Debug/../../obj/assert.o
.debug_info 0x000050a7 0xcb THUMB Debug/../../obj/backdoor.o
.debug_info 0x00005172 0x93 THUMB Debug/../../obj/boot.o
.debug_info 0x00005205 0x1bf THUMB Debug/../../obj/com.o
.debug_info 0x000053c4 0x91 THUMB Debug/../../obj/cop.o
.debug_info 0x00005455 0x61c THUMB Debug/../../obj/xcp.o
.debug_info 0x00005a71 0x2054 THUMB Debug/../../obj/ff.o
.debug_info 0x00007ac5 0x160 THUMB Debug/../../obj/unicode.o
.debug_info 0x00007c25 0x7db THUMB Debug/../../obj/file.o
.debug_info 0x00008400 0xc63 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le.a(libc2.o)
.debug_info 0x00009063 0x51f C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libdebugio_v7m_t_le.a(libdebugio.o)
.debug_info 0x00009582 0xcd C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le.a(user_libc.o)
.debug_abbrev 0x00000000 0x1f43
.debug_abbrev 0x00000000 0x19f THUMB Debug/../../obj/hooks.o
.debug_abbrev 0x0000019f 0x109 THUMB Debug/../../obj/main.o
.debug_abbrev 0x000002a8 0xa9 THUMB Debug/../../obj/core_cm3.o
.debug_abbrev 0x00000351 0x1a8 THUMB Debug/../../obj/system_stm32f10x.o
.debug_abbrev 0x000004f9 0x2de THUMB Debug/../../obj/mmc.o
.debug_abbrev 0x000007d7 0x1db THUMB Debug/../../obj/stm32f10x_gpio.o
.debug_abbrev 0x000009b2 0x1d2 THUMB Debug/../../obj/stm32f10x_rcc.o
.debug_abbrev 0x00000b84 0x1b2 THUMB Debug/../../obj/stm32f10x_spi.o
.debug_abbrev 0x00000d36 0x1ba THUMB Debug/../../obj/stm32f10x_usart.o
.debug_abbrev 0x00000ef0 0x14 THUMB Debug/../../obj/cstart.o
.debug_abbrev 0x00000f04 0xc0 THUMB Debug/../../obj/vectors.o
.debug_abbrev 0x00000fc4 0x2a THUMB Debug/../../obj/can.o
.debug_abbrev 0x00000fee 0xb1 THUMB Debug/../../obj/cpu.o
.debug_abbrev 0x0000109f 0xa5 THUMB Debug/../../obj/nvm.o
.debug_abbrev 0x00001144 0xbb THUMB Debug/../../obj/timer.o
.debug_abbrev 0x000011ff 0x133 THUMB Debug/../../obj/uart.o
.debug_abbrev 0x00001332 0x1e3 THUMB Debug/../../obj/flash.o
.debug_abbrev 0x00001515 0x7e THUMB Debug/../../obj/assert.o
.debug_abbrev 0x00001593 0x5d THUMB Debug/../../obj/backdoor.o
.debug_abbrev 0x000015f0 0x41 THUMB Debug/../../obj/boot.o
.debug_abbrev 0x00001631 0xe2 THUMB Debug/../../obj/com.o
.debug_abbrev 0x00001713 0x41 THUMB Debug/../../obj/cop.o
.debug_abbrev 0x00001754 0x1ab THUMB Debug/../../obj/xcp.o
.debug_abbrev 0x000018ff 0x2c7 THUMB Debug/../../obj/ff.o
.debug_abbrev 0x00001bc6 0xa5 THUMB Debug/../../obj/unicode.o
.debug_abbrev 0x00001c6b 0x1db THUMB Debug/../../obj/file.o
.debug_abbrev 0x00001e46 0xa0 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le.a(libc2.o)
.debug_abbrev 0x00001ee6 0x38 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libdebugio_v7m_t_le.a(libdebugio.o)
.debug_abbrev 0x00001f1e 0x25 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le.a(user_libc.o)
.debug_abbrev 0x00000000 0x1f52
.debug_abbrev 0x00000000 0x1ae THUMB Debug/../../obj/hooks.o
.debug_abbrev 0x000001ae 0x109 THUMB Debug/../../obj/main.o
.debug_abbrev 0x000002b7 0xa9 THUMB Debug/../../obj/core_cm3.o
.debug_abbrev 0x00000360 0x1a8 THUMB Debug/../../obj/system_stm32f10x.o
.debug_abbrev 0x00000508 0x2de THUMB Debug/../../obj/mmc.o
.debug_abbrev 0x000007e6 0x1db THUMB Debug/../../obj/stm32f10x_gpio.o
.debug_abbrev 0x000009c1 0x1d2 THUMB Debug/../../obj/stm32f10x_rcc.o
.debug_abbrev 0x00000b93 0x1b2 THUMB Debug/../../obj/stm32f10x_spi.o
.debug_abbrev 0x00000d45 0x1ba THUMB Debug/../../obj/stm32f10x_usart.o
.debug_abbrev 0x00000eff 0x14 THUMB Debug/../../obj/cstart.o
.debug_abbrev 0x00000f13 0xc0 THUMB Debug/../../obj/vectors.o
.debug_abbrev 0x00000fd3 0x2a THUMB Debug/../../obj/can.o
.debug_abbrev 0x00000ffd 0xb1 THUMB Debug/../../obj/cpu.o
.debug_abbrev 0x000010ae 0xa5 THUMB Debug/../../obj/nvm.o
.debug_abbrev 0x00001153 0xbb THUMB Debug/../../obj/timer.o
.debug_abbrev 0x0000120e 0x133 THUMB Debug/../../obj/uart.o
.debug_abbrev 0x00001341 0x1e3 THUMB Debug/../../obj/flash.o
.debug_abbrev 0x00001524 0x7e THUMB Debug/../../obj/assert.o
.debug_abbrev 0x000015a2 0x5d THUMB Debug/../../obj/backdoor.o
.debug_abbrev 0x000015ff 0x41 THUMB Debug/../../obj/boot.o
.debug_abbrev 0x00001640 0xe2 THUMB Debug/../../obj/com.o
.debug_abbrev 0x00001722 0x41 THUMB Debug/../../obj/cop.o
.debug_abbrev 0x00001763 0x1ab THUMB Debug/../../obj/xcp.o
.debug_abbrev 0x0000190e 0x2c7 THUMB Debug/../../obj/ff.o
.debug_abbrev 0x00001bd5 0xa5 THUMB Debug/../../obj/unicode.o
.debug_abbrev 0x00001c7a 0x1db THUMB Debug/../../obj/file.o
.debug_abbrev 0x00001e55 0xa0 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_v7m_t_le.a(libc2.o)
.debug_abbrev 0x00001ef5 0x38 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libdebugio_v7m_t_le.a(libdebugio.o)
.debug_abbrev 0x00001f2d 0x25 C:/Program Files (x86)/Rowley Associates Limited/CrossWorks for ARM 2.3/lib/libc_user_libc_v7m_t_le.a(user_libc.o)
.debug_loc 0x00000000 0x9342
.debug_loc 0x00000000 0xdd THUMB Debug/../../obj/hooks.o

View File

@ -1,5 +1,5 @@
/************************************************************************************//**
* \file Demo\ARMCM3_STM32_Olimex_STM32P103_Crossworks\Boot\config.h
* \file Demo\ARMCM3_STM32_Olimex_STM32P103_Crossworks\Boot\blt_conf.h
* \brief Bootloader configuration header file.
* \ingroup Boot_ARMCM3_STM32_Olimex_STM32P103_Crossworks
* \internal
@ -30,8 +30,8 @@
*
* \endinternal
****************************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H
#ifndef BLT_CONF_H
#define BLT_CONF_H
/****************************************************************************************
* C P U D R I V E R C O N F I G U R A T I O N
@ -191,5 +191,5 @@
#define BOOT_COP_HOOKS_ENABLE (0)
#endif /* CONFIG_H */
/*********************************** end of config.h ***********************************/
#endif /* BLT_CONF_H */
/*********************************** end of blt_conf.h *********************************/

View File

@ -6,8 +6,7 @@
<folder Name="Source Files">
<configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
<folder Name="Demo">
<folder Name="Boot">
<file file_name="../config.h"/>
<folder Name="Boot" file_name="">
<file file_name="../hooks.c"/>
<file file_name="../main.c"/>
<file file_name="../stm32f10x.h"/>
@ -35,6 +34,7 @@
<file file_name="../lib/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h"/>
</folder>
</folder>
<file file_name="../blt_conf.h"/>
</folder>
</folder>
<folder Name="Source" file_name="">

Some files were not shown because too many files have changed in this diff Show More