diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1100.h b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1100.h new file mode 100644 index 000000000..dbc29b020 --- /dev/null +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1100.h @@ -0,0 +1,84 @@ +/****************************************************************************** + * @file system_XMC1100.h + * @brief Device specific initialization for the XMC1300-Series according + * to CMSIS + * @version V1.2 + * @date 19 Jul 2013 + * + * @note + * Copyright (C) 2012-2013 Infineon Technologies AG. All rights reserved. + + * + * @par + * Infineon Technologies AG (Infineon) is supplying this software for use with + * Infineon�s microcontrollers. + * + * This file can be freely distributed within development tools that are + * supporting such microcontrollers. + * + * + * @par + * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED + * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. + * INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, + * OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. + * + ******************************************************************************/ +/* + * *************************** Change history ********************************* + * V1.1, 13 Dec 2012, PKB, Created this table, added extern and stdint + * V1.2, 19 Jul 2013, PKB, Added header guard, BootROM header, C++ support + */ +#ifndef SYSTEM_XMC1100_H +#define SYSTEM_XMC1100_H + +/******************************************************************************* + * HEADER FILES + *******************************************************************************/ + +#include <stdint.h> + +/******************************************************************************* + * GLOBAL VARIABLES + *******************************************************************************/ + +extern uint32_t SystemCoreClock; + +/******************************************************************************* + * API PROTOTYPES + *******************************************************************************/ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief Initialize the system + * + */ +void SystemInit(void); + +/** + * @brief Initialize CPU settings + * + */ +void SystemCoreSetup(void); + +/** + * @brief Initialize clock + * + */ +void SystemCoreClockSetup(void); + +/** + * @brief Update SystemCoreClock variable + * + */ +void SystemCoreClockUpdate(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1200.h b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1200.h new file mode 100644 index 000000000..52fd7e551 --- /dev/null +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1200.h @@ -0,0 +1,84 @@ +/****************************************************************************** + * @file system_XMC1200.h + * @brief Device specific initialization for the XMC1300-Series according + * to CMSIS + * @version V1.2 + * @date 19 Jul 2013 + * + * @note + * Copyright (C) 2012-2013 Infineon Technologies AG. All rights reserved. + + * + * @par + * Infineon Technologies AG (Infineon) is supplying this software for use with + * Infineon�s microcontrollers. + * + * This file can be freely distributed within development tools that are + * supporting such microcontrollers. + * + * + * @par + * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED + * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. + * INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, + * OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. + * + ******************************************************************************/ +/* + * *************************** Change history ********************************* + * V1.1, 13 Dec 2012, PKB, Created this table, added extern and stdint + * V1.2, 19 Jul 2013, PKB, Added header guard, BootROM header, C++ support + */ +#ifndef SYSTEM_XMC1200_H +#define SYSTEM_XMC1200_H + +/******************************************************************************* + * HEADER FILES + *******************************************************************************/ + +#include <stdint.h> + +/******************************************************************************* + * GLOBAL VARIABLES + *******************************************************************************/ + +extern uint32_t SystemCoreClock; + +/******************************************************************************* + * API PROTOTYPES + *******************************************************************************/ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief Initialize the system + * + */ +void SystemInit(void); + +/** + * @brief Initialize CPU settings + * + */ +void SystemCoreSetup(void); + +/** + * @brief Initialize clock + * + */ +void SystemCoreClockSetup(void); + +/** + * @brief Update SystemCoreClock variable + * + */ +void SystemCoreClockUpdate(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1300.h b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1300.h new file mode 100644 index 000000000..eaf710d37 --- /dev/null +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/Keil_Specific/system_XMC1300.h @@ -0,0 +1,84 @@ +/****************************************************************************** + * @file system_XMC1300.h + * @brief Device specific initialization for the XMC1300-Series according + * to CMSIS + * @version V1.2 + * @date 19 Jul 2013 + * + * @note + * Copyright (C) 2012-2013 Infineon Technologies AG. All rights reserved. + + * + * @par + * Infineon Technologies AG (Infineon) is supplying this software for use with + * Infineon�s microcontrollers. + * + * This file can be freely distributed within development tools that are + * supporting such microcontrollers. + * + * + * @par + * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED + * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. + * INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, + * OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. + * + ******************************************************************************/ +/* + * *************************** Change history ********************************* + * V1.1, 13 Dec 2012, PKB, Created this table, added extern and stdint + * V1.2, 19 Jul 2013, PKB, Added header guard, BootROM header, C++ support + */ +#ifndef SYSTEM_XMC1300_H +#define SYSTEM_XMC1300_H + +/******************************************************************************* + * HEADER FILES + *******************************************************************************/ + +#include <stdint.h> + +/******************************************************************************* + * GLOBAL VARIABLES + *******************************************************************************/ + +extern uint32_t SystemCoreClock; + +/******************************************************************************* + * API PROTOTYPES + *******************************************************************************/ + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @brief Initialize the system + * + */ +void SystemInit(void); + +/** + * @brief Initialize CPU settings + * + */ +void SystemCoreSetup(void); + +/** + * @brief Initialize clock + * + */ +void SystemCoreClockSetup(void); + +/** + * @brief Update SystemCoreClock variable + * + */ +void SystemCoreClockUpdate(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewd b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewd index 928e2735a..05534715b 100644 --- a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewd +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewd @@ -12,7 +12,7 @@ <name>C-SPY</name> <archiveVersion>2</archiveVersion> <data> - <version>25</version> + <version>26</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -45,7 +45,7 @@ </option> <option> <name>MemFile</name> - <state>$TOOLKIT_DIR$\CONFIG\debugger\Infineon\xmc1200.ddf</state> + <state>$TOOLKIT_DIR$\CONFIG\debugger\Infineon\XMC1200-T038x0200.ddf</state> </option> <option> <name>RunToEnable</name> @@ -89,7 +89,7 @@ </option> <option> <name>OCLastSavedByProductVersion</name> - <state>6.60.1.5099</state> + <state>7.40.1.8463</state> </option> <option> <name>OCDownloadAttachToProgram</name> @@ -183,6 +183,30 @@ <name>OCAllMTBOptions</name> <state>1</state> </option> + <option> + <name>OCMulticoreNrOfCores</name> + <state>1</state> + </option> + <option> + <name>OCMulticoreMaster</name> + <state>0</state> + </option> + <option> + <name>OCMulticorePort</name> + <state>53461</state> + </option> + <option> + <name>OCMulticoreWorkspace</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveProject</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveConfiguration</name> + <state></state> + </option> </data> </settings> <settings> @@ -257,7 +281,7 @@ <name>CMSISDAP_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>0</version> + <version>2</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -398,6 +422,30 @@ <name>CMSISDAPMultiCPUNumber</name> <state>0</state> </option> + <option> + <name>OCProbeCfgOverride</name> + <state>0</state> + </option> + <option> + <name>OCProbeConfig</name> + <state></state> + </option> + <option> + <name>CMSISDAPProbeConfigRadio</name> + <state>0</state> + </option> + <option> + <name>CMSISDAPSelectedCPUBehaviour</name> + <state>0</state> + </option> + <option> + <name>ICpuName</name> + <state></state> + </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -472,7 +520,7 @@ <name>IJET_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>2</version> + <version>6</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -666,6 +714,28 @@ <name>ICpuName</name> <state></state> </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> + <option> + <name>IjetPreferETB</name> + <state>1</state> + </option> + <option> + <name>IjetTraceSettingsList</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>IjetTraceSizeList</name> + <version>0</version> + <state>2</state> + </option> + <option> + <name>FlashBoardPathSlave</name> + <state>0</state> + </option> </data> </settings> <settings> @@ -1207,7 +1277,7 @@ </option> <option> <name>CCXds100InterfaceList</name> - <version>1</version> + <version>2</version> <state>0</state> </option> <option> @@ -1254,19 +1324,19 @@ <loadFlag>1</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\PowerPac\PowerPacRTOS.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB6_Plugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> @@ -1309,7 +1379,7 @@ <name>C-SPY</name> <archiveVersion>2</archiveVersion> <data> - <version>25</version> + <version>26</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -1342,7 +1412,7 @@ </option> <option> <name>MemFile</name> - <state>$TOOLKIT_DIR$\CONFIG\debugger\Infineon\xmc1100.ddf</state> + <state>$TOOLKIT_DIR$\CONFIG\debugger\Infineon\XMC1100-T038x0064.ddf</state> </option> <option> <name>RunToEnable</name> @@ -1386,7 +1456,7 @@ </option> <option> <name>OCLastSavedByProductVersion</name> - <state>6.60.1.5099</state> + <state>7.40.1.8463</state> </option> <option> <name>OCDownloadAttachToProgram</name> @@ -1480,6 +1550,30 @@ <name>OCAllMTBOptions</name> <state>1</state> </option> + <option> + <name>OCMulticoreNrOfCores</name> + <state>1</state> + </option> + <option> + <name>OCMulticoreMaster</name> + <state>0</state> + </option> + <option> + <name>OCMulticorePort</name> + <state>53461</state> + </option> + <option> + <name>OCMulticoreWorkspace</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveProject</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveConfiguration</name> + <state></state> + </option> </data> </settings> <settings> @@ -1554,7 +1648,7 @@ <name>CMSISDAP_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>0</version> + <version>2</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -1695,6 +1789,30 @@ <name>CMSISDAPMultiCPUNumber</name> <state>0</state> </option> + <option> + <name>OCProbeCfgOverride</name> + <state>0</state> + </option> + <option> + <name>OCProbeConfig</name> + <state></state> + </option> + <option> + <name>CMSISDAPProbeConfigRadio</name> + <state>0</state> + </option> + <option> + <name>CMSISDAPSelectedCPUBehaviour</name> + <state>0</state> + </option> + <option> + <name>ICpuName</name> + <state></state> + </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -1769,7 +1887,7 @@ <name>IJET_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>2</version> + <version>6</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -1963,6 +2081,28 @@ <name>ICpuName</name> <state></state> </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> + <option> + <name>IjetPreferETB</name> + <state>1</state> + </option> + <option> + <name>IjetTraceSettingsList</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>IjetTraceSizeList</name> + <version>0</version> + <state>2</state> + </option> + <option> + <name>FlashBoardPathSlave</name> + <state>0</state> + </option> </data> </settings> <settings> @@ -2504,7 +2644,7 @@ </option> <option> <name>CCXds100InterfaceList</name> - <version>1</version> + <version>2</version> <state>0</state> </option> <option> @@ -2551,19 +2691,19 @@ <loadFlag>1</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\PowerPac\PowerPacRTOS.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB6_Plugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> @@ -2606,7 +2746,7 @@ <name>C-SPY</name> <archiveVersion>2</archiveVersion> <data> - <version>25</version> + <version>26</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -2777,6 +2917,30 @@ <name>OCAllMTBOptions</name> <state>1</state> </option> + <option> + <name>OCMulticoreNrOfCores</name> + <state>1</state> + </option> + <option> + <name>OCMulticoreMaster</name> + <state>0</state> + </option> + <option> + <name>OCMulticorePort</name> + <state>53461</state> + </option> + <option> + <name>OCMulticoreWorkspace</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveProject</name> + <state></state> + </option> + <option> + <name>OCMulticoreSlaveConfiguration</name> + <state></state> + </option> </data> </settings> <settings> @@ -2851,7 +3015,7 @@ <name>CMSISDAP_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>0</version> + <version>2</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -2992,6 +3156,30 @@ <name>CMSISDAPMultiCPUNumber</name> <state>0</state> </option> + <option> + <name>OCProbeCfgOverride</name> + <state>0</state> + </option> + <option> + <name>OCProbeConfig</name> + <state></state> + </option> + <option> + <name>CMSISDAPProbeConfigRadio</name> + <state>0</state> + </option> + <option> + <name>CMSISDAPSelectedCPUBehaviour</name> + <state>0</state> + </option> + <option> + <name>ICpuName</name> + <state></state> + </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -3066,7 +3254,7 @@ <name>IJET_ID</name> <archiveVersion>2</archiveVersion> <data> - <version>2</version> + <version>6</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -3260,6 +3448,28 @@ <name>ICpuName</name> <state></state> </option> + <option> + <name>OCJetEmuParams</name> + <state>1</state> + </option> + <option> + <name>IjetPreferETB</name> + <state>1</state> + </option> + <option> + <name>IjetTraceSettingsList</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>IjetTraceSizeList</name> + <version>0</version> + <state>2</state> + </option> + <option> + <name>FlashBoardPathSlave</name> + <state>0</state> + </option> </data> </settings> <settings> @@ -3801,7 +4011,7 @@ </option> <option> <name>CCXds100InterfaceList</name> - <version>1</version> + <version>2</version> <state>0</state> </option> <option> @@ -3848,19 +4058,19 @@ <loadFlag>1</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\PowerPac\PowerPacRTOS.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB7_Plugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\Quadros\Quadros_EWB6_Plugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> - <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file> + <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file> <loadFlag>0</loadFlag> </plugin> <plugin> diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewp b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewp index 267716ef7..11d9a6831 100644 --- a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewp +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.ewp @@ -29,7 +29,7 @@ </option> <option> <name>Variant</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -60,7 +60,7 @@ </option> <option> <name>FPU</name> - <version>2</version> + <version>4</version> <state>0</state> </option> <option> @@ -87,7 +87,7 @@ </option> <option> <name>OGLastSavedByProductVersion</name> - <state>6.60.1.5099</state> + <state>7.40.1.8463</state> </option> <option> <name>GeneralEnableMisra</name> @@ -99,7 +99,7 @@ </option> <option> <name>OGChipSelectEditMenu</name> - <state>xmc1200 Infineon xmc1200</state> + <state>XMC1200-T038x0200 Infineon XMC1200-T038x0200</state> </option> <option> <name>GenLowLevelInterface</name> @@ -137,12 +137,12 @@ </option> <option> <name>GFPUCoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> <name>GBECoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -163,7 +163,7 @@ <name>ICCARM</name> <archiveVersion>2</archiveVersion> <data> - <version>29</version> + <version>31</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -229,7 +229,7 @@ <option> <name>CCAllowList</name> <version>1</version> - <state>0000000</state> + <state>00000000</state> </option> <option> <name>CCDebugInfo</name> @@ -403,6 +403,15 @@ <name>CCNoLiteralPool</name> <state>0</state> </option> + <option> + <name>CCOptStrategySlave</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>CCGuardCalls</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -607,6 +616,7 @@ <data> <extensions></extensions> <cmdline></cmdline> + <hasPrio>0</hasPrio> </data> </settings> <settings> @@ -966,7 +976,7 @@ </option> <option> <name>Variant</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -997,7 +1007,7 @@ </option> <option> <name>FPU</name> - <version>2</version> + <version>4</version> <state>0</state> </option> <option> @@ -1024,7 +1034,7 @@ </option> <option> <name>OGLastSavedByProductVersion</name> - <state>6.60.1.5099</state> + <state>7.40.1.8463</state> </option> <option> <name>GeneralEnableMisra</name> @@ -1036,7 +1046,7 @@ </option> <option> <name>OGChipSelectEditMenu</name> - <state>xmc1100 Infineon xmc1100</state> + <state>XMC1100-T038x0064 Infineon XMC1100-T038x0064</state> </option> <option> <name>GenLowLevelInterface</name> @@ -1074,12 +1084,12 @@ </option> <option> <name>GFPUCoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> <name>GBECoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -1100,7 +1110,7 @@ <name>ICCARM</name> <archiveVersion>2</archiveVersion> <data> - <version>29</version> + <version>31</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -1166,7 +1176,7 @@ <option> <name>CCAllowList</name> <version>1</version> - <state>0000000</state> + <state>00000000</state> </option> <option> <name>CCDebugInfo</name> @@ -1340,6 +1350,15 @@ <name>CCNoLiteralPool</name> <state>0</state> </option> + <option> + <name>CCOptStrategySlave</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>CCGuardCalls</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -1544,6 +1563,7 @@ <data> <extensions></extensions> <cmdline></cmdline> + <hasPrio>0</hasPrio> </data> </settings> <settings> @@ -1903,7 +1923,7 @@ </option> <option> <name>Variant</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -1934,7 +1954,7 @@ </option> <option> <name>FPU</name> - <version>2</version> + <version>4</version> <state>0</state> </option> <option> @@ -2011,12 +2031,12 @@ </option> <option> <name>GFPUCoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> <name>GBECoreSlave</name> - <version>20</version> + <version>21</version> <state>34</state> </option> <option> @@ -2037,7 +2057,7 @@ <name>ICCARM</name> <archiveVersion>2</archiveVersion> <data> - <version>29</version> + <version>31</version> <wantNonLocal>1</wantNonLocal> <debug>1</debug> <option> @@ -2103,7 +2123,7 @@ <option> <name>CCAllowList</name> <version>1</version> - <state>0000000</state> + <state>00000000</state> </option> <option> <name>CCDebugInfo</name> @@ -2277,6 +2297,15 @@ <name>CCNoLiteralPool</name> <state>0</state> </option> + <option> + <name>CCOptStrategySlave</name> + <version>0</version> + <state>0</state> + </option> + <option> + <name>CCGuardCalls</name> + <state>1</state> + </option> </data> </settings> <settings> @@ -2481,6 +2510,7 @@ <data> <extensions></extensions> <cmdline></cmdline> + <hasPrio>0</hasPrio> </data> </settings> <settings> diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvopt b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvopt index efd8fb8b6..338d3fa81 100644 --- a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvopt +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvopt @@ -13,6 +13,7 @@ <tExt>*.txt; *.h; *.inc</tExt> <pExt>*.plm</pExt> <CppX>*.cpp</CppX> + <nMigrate>0</nMigrate> </Extensions> <DaveTm> @@ -31,6 +32,7 @@ <BeepAtEnd>1</BeepAtEnd> <RunSim>1</RunSim> <RunTarget>0</RunTarget> + <RunAbUc>0</RunAbUc> </OPTTT> <OPTHX> <HexSelection>1</HexSelection> @@ -73,7 +75,7 @@ <OPTFL> <tvExp>1</tvExp> <tvExpOptDlg>0</tvExpOptDlg> - <IsCurrentTarget>0</IsCurrentTarget> + <IsCurrentTarget>1</IsCurrentTarget> </OPTFL> <CpuCode>255</CpuCode> <Books> @@ -98,16 +100,6 @@ <Path>datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF</Path> </Book> </Books> - <DllOpt> - <SimDllName>SARMCM3.DLL</SimDllName> - <SimDllArguments></SimDllArguments> - <SimDlgDllName>DARMCM1.DLL</SimDlgDllName> - <SimDlgDllArguments>-pCM0</SimDlgDllArguments> - <TargetDllName>SARMCM3.DLL</TargetDllName> - <TargetDllArguments></TargetDllArguments> - <TargetDlgDllName>TARMCM1.DLL</TargetDlgDllName> - <TargetDlgDllArguments>-pCM0</TargetDlgDllArguments> - </DllOpt> <DebugOpt> <uSim>0</uSim> <uTrg>1</uTrg> @@ -126,9 +118,11 @@ <tRfunc>0</tRfunc> <tRbox>1</tRbox> <tRtrace>1</tRtrace> + <sRSysVw>1</sRSysVw> + <tRSysVw>1</tRSysVw> <sRunDeb>0</sRunDeb> <sLrtime>0</sLrtime> - <nTsel>7</nTsel> + <nTsel>6</nTsel> <sDll></sDll> <sDllPa></sDllPa> <sDlgDll></sDlgDll> @@ -179,6 +173,7 @@ <WinNumber>1</WinNumber> <SubType>2</SubType> <ItemText>0x10001000</ItemText> + <AccSizeX>0</AccSizeX> </Mm> </MemoryWindow1> <Tracepoint> @@ -212,6 +207,7 @@ </DebugFlag> <LintExecutable></LintExecutable> <LintConfigFile></LintConfigFile> + <bLintAuto>0</bLintAuto> </TargetOption> </Target> @@ -226,6 +222,7 @@ <BeepAtEnd>1</BeepAtEnd> <RunSim>1</RunSim> <RunTarget>0</RunTarget> + <RunAbUc>0</RunAbUc> </OPTTT> <OPTHX> <HexSelection>1</HexSelection> @@ -293,16 +290,6 @@ <Path>datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF</Path> </Book> </Books> - <DllOpt> - <SimDllName>SARMCM3.DLL</SimDllName> - <SimDllArguments></SimDllArguments> - <SimDlgDllName>DARMCM1.DLL</SimDlgDllName> - <SimDlgDllArguments>-pCM0</SimDlgDllArguments> - <TargetDllName>SARMCM3.DLL</TargetDllName> - <TargetDllArguments></TargetDllArguments> - <TargetDlgDllName>TARMCM1.DLL</TargetDlgDllName> - <TargetDlgDllArguments>-pCM0</TargetDlgDllArguments> - </DllOpt> <DebugOpt> <uSim>0</uSim> <uTrg>1</uTrg> @@ -321,9 +308,11 @@ <tRfunc>0</tRfunc> <tRbox>1</tRbox> <tRtrace>1</tRtrace> + <sRSysVw>1</sRSysVw> + <tRSysVw>1</tRSysVw> <sRunDeb>0</sRunDeb> <sLrtime>0</sLrtime> - <nTsel>7</nTsel> + <nTsel>6</nTsel> <sDll></sDll> <sDllPa></sDllPa> <sDlgDll></sDlgDll> @@ -408,6 +397,7 @@ <WinNumber>1</WinNumber> <SubType>2</SubType> <ItemText>0x10001000</ItemText> + <AccSizeX>0</AccSizeX> </Mm> </MemoryWindow1> <Tracepoint> @@ -441,6 +431,7 @@ </DebugFlag> <LintExecutable></LintExecutable> <LintConfigFile></LintConfigFile> + <bLintAuto>0</bLintAuto> </TargetOption> </Target> @@ -455,6 +446,7 @@ <BeepAtEnd>1</BeepAtEnd> <RunSim>1</RunSim> <RunTarget>0</RunTarget> + <RunAbUc>0</RunAbUc> </OPTTT> <OPTHX> <HexSelection>1</HexSelection> @@ -495,9 +487,9 @@ <LExpSel>0</LExpSel> </OPTXL> <OPTFL> - <tvExp>1</tvExp> + <tvExp>0</tvExp> <tvExpOptDlg>0</tvExpOptDlg> - <IsCurrentTarget>1</IsCurrentTarget> + <IsCurrentTarget>0</IsCurrentTarget> </OPTFL> <CpuCode>255</CpuCode> <Books> @@ -522,16 +514,6 @@ <Path>datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF</Path> </Book> </Books> - <DllOpt> - <SimDllName>SARMCM3.DLL</SimDllName> - <SimDllArguments></SimDllArguments> - <SimDlgDllName>DARMCM1.DLL</SimDlgDllName> - <SimDlgDllArguments>-pCM0</SimDlgDllArguments> - <TargetDllName>SARMCM3.DLL</TargetDllName> - <TargetDllArguments></TargetDllArguments> - <TargetDlgDllName>TARMCM1.DLL</TargetDlgDllName> - <TargetDlgDllArguments>-pCM0</TargetDlgDllArguments> - </DllOpt> <DebugOpt> <uSim>0</uSim> <uTrg>1</uTrg> @@ -550,9 +532,11 @@ <tRfunc>0</tRfunc> <tRbox>1</tRbox> <tRtrace>1</tRtrace> + <sRSysVw>1</sRSysVw> + <tRSysVw>1</tRSysVw> <sRunDeb>0</sRunDeb> <sLrtime>0</sLrtime> - <nTsel>7</nTsel> + <nTsel>6</nTsel> <sDll></sDll> <sDllPa></sDllPa> <sDlgDll></sDlgDll> @@ -637,6 +621,7 @@ <WinNumber>1</WinNumber> <SubType>2</SubType> <ItemText>0x10001000</ItemText> + <AccSizeX>0</AccSizeX> </Mm> </MemoryWindow1> <Tracepoint> @@ -670,12 +655,13 @@ </DebugFlag> <LintExecutable></LintExecutable> <LintConfigFile></LintConfigFile> + <bLintAuto>0</bLintAuto> </TargetOption> </Target> <Group> <GroupName>System</GroupName> - <tvExp>1</tvExp> + <tvExp>0</tvExp> <tvExpOptDlg>0</tvExpOptDlg> <cbSel>0</cbSel> <RteFlg>0</RteFlg> @@ -685,10 +671,7 @@ <FileType>2</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>120</TopLine> - <CurrentLine>132</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\Keil_Specific\startup_XMC1000.s</PathWithFileName> <FilenameWithoutPath>startup_XMC1000.s</FilenameWithoutPath> @@ -701,10 +684,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>1</TopLine> - <CurrentLine>1</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\Keil_Specific\system_XMC1300.c</PathWithFileName> <FilenameWithoutPath>system_XMC1300.c</FilenameWithoutPath> @@ -717,10 +697,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\Keil_Specific\system_XMC1100.c</PathWithFileName> <FilenameWithoutPath>system_XMC1100.c</FilenameWithoutPath> @@ -733,10 +710,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\Keil_Specific\system_XMC1200.c</PathWithFileName> <FilenameWithoutPath>system_XMC1200.c</FilenameWithoutPath> @@ -747,7 +721,7 @@ <Group> <GroupName>FreeRTOS source</GroupName> - <tvExp>1</tvExp> + <tvExp>0</tvExp> <tvExpOptDlg>0</tvExpOptDlg> <cbSel>0</cbSel> <RteFlg>0</RteFlg> @@ -757,10 +731,7 @@ <FileType>1</FileType> <tvExp>1</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\timers.c</PathWithFileName> <FilenameWithoutPath>timers.c</FilenameWithoutPath> @@ -773,10 +744,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\list.c</PathWithFileName> <FilenameWithoutPath>list.c</FilenameWithoutPath> @@ -789,10 +757,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>1028</TopLine> - <CurrentLine>1036</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\queue.c</PathWithFileName> <FilenameWithoutPath>queue.c</FilenameWithoutPath> @@ -805,10 +770,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\tasks.c</PathWithFileName> <FilenameWithoutPath>tasks.c</FilenameWithoutPath> @@ -821,10 +783,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>253</TopLine> - <CurrentLine>261</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\portable\RVDS\ARM_CM0\port.c</PathWithFileName> <FilenameWithoutPath>port.c</FilenameWithoutPath> @@ -837,10 +796,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\..\Source\portable\MemMang\heap_4.c</PathWithFileName> <FilenameWithoutPath>heap_4.c</FilenameWithoutPath> @@ -861,10 +817,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>45</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>63</TopLine> - <CurrentLine>96</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\main.c</PathWithFileName> <FilenameWithoutPath>main.c</FilenameWithoutPath> @@ -877,10 +830,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\main-blinky.c</PathWithFileName> <FilenameWithoutPath>main-blinky.c</FilenameWithoutPath> @@ -893,10 +843,7 @@ <FileType>5</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>22</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\FreeRTOSConfig.h</PathWithFileName> <FilenameWithoutPath>FreeRTOSConfig.h</FilenameWithoutPath> @@ -909,10 +856,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\main-full.c</PathWithFileName> <FilenameWithoutPath>main-full.c</FilenameWithoutPath> @@ -925,10 +869,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\ParTest_XMC1200.c</PathWithFileName> <FilenameWithoutPath>ParTest_XMC1200.c</FilenameWithoutPath> @@ -941,10 +882,7 @@ <FileType>2</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\Keil_Specific\RegTest_Keil.s</PathWithFileName> <FilenameWithoutPath>RegTest_Keil.s</FilenameWithoutPath> @@ -957,10 +895,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>15</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\ParTest_XMC1100.c</PathWithFileName> <FilenameWithoutPath>ParTest_XMC1100.c</FilenameWithoutPath> @@ -973,10 +908,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>15</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>.\ParTest_XMC1300.c</PathWithFileName> <FilenameWithoutPath>ParTest_XMC1300.c</FilenameWithoutPath> @@ -997,10 +929,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>411</TopLine> - <CurrentLine>419</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\dynamic.c</PathWithFileName> <FilenameWithoutPath>dynamic.c</FilenameWithoutPath> @@ -1013,10 +942,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\recmutex.c</PathWithFileName> <FilenameWithoutPath>recmutex.c</FilenameWithoutPath> @@ -1029,10 +955,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\blocktim.c</PathWithFileName> <FilenameWithoutPath>blocktim.c</FilenameWithoutPath> @@ -1045,10 +968,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>0</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\countsem.c</PathWithFileName> <FilenameWithoutPath>countsem.c</FilenameWithoutPath> @@ -1061,10 +981,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>35</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\QueueSet.c</PathWithFileName> <FilenameWithoutPath>QueueSet.c</FilenameWithoutPath> @@ -1077,10 +994,7 @@ <FileType>1</FileType> <tvExp>0</tvExp> <Focus>0</Focus> - <ColumnNumber>47</ColumnNumber> <tvExpOptDlg>0</tvExpOptDlg> - <TopLine>0</TopLine> - <CurrentLine>0</CurrentLine> <bDave2>0</bDave2> <PathWithFileName>..\Common\Minimal\QueueOverwrite.c</PathWithFileName> <FilenameWithoutPath>QueueOverwrite.c</FilenameWithoutPath> diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvproj b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvproj index cb4f71533..83ba7e3b1 100644 --- a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvproj +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/RTOSDemo.uvproj @@ -10,6 +10,7 @@ <TargetName>XMC1300</TargetName> <ToolsetNumber>0x4</ToolsetNumber> <ToolsetName>ARM-ADS</ToolsetName> + <pCCUsed>5060020::V5.06 (build 20)::ARMCC</pCCUsed> <TargetOption> <TargetCommonOption> <Device>XMC1302-200</Device> @@ -30,6 +31,7 @@ <SLE66AMisc></SLE66AMisc> <SLE66LinkerMisc></SLE66LinkerMisc> <SFDFile>SFD\Infineon\XMC1300\xmc1300.SFR</SFDFile> + <bCustSvd>0</bCustSvd> <UseEnv>0</UseEnv> <BinPath></BinPath> <IncludePath></IncludePath> @@ -71,6 +73,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopB1X>0</nStopB1X> + <nStopB2X>0</nStopB2X> </BeforeMake> <AfterMake> <RunUserProg1>0</RunUserProg1> @@ -79,6 +83,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopA1X>0</nStopA1X> + <nStopA2X>0</nStopA2X> </AfterMake> <SelectedForBatchBuild>0</SelectedForBatchBuild> <SVCSIdString></SVCSIdString> @@ -97,6 +103,7 @@ <StopOnExitCode>3</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <DllOption> <SimDllName>SARMCM3.DLL</SimDllName> @@ -126,6 +133,7 @@ <RestoreFunctions>1</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <LimitSpeedToRealTime>0</LimitSpeedToRealTime> + <RestoreSysVw>1</RestoreSysVw> </Simulator> <Target> <UseTarget>1</UseTarget> @@ -137,9 +145,10 @@ <RestoreFunctions>0</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <RestoreTracepoints>1</RestoreTracepoints> + <RestoreSysVw>1</RestoreSysVw> </Target> <RunDebugAfterBuild>0</RunDebugAfterBuild> - <TargetSelection>7</TargetSelection> + <TargetSelection>6</TargetSelection> <SimDlls> <CpuDll></CpuDll> <CpuDllArguments></CpuDllArguments> @@ -169,6 +178,10 @@ <Flash2>BIN\UL2CM3.DLL</Flash2> <Flash3>"" ()</Flash3> <Flash4></Flash4> + <pFcarmOut></pFcarmOut> + <pFcarmGrp></pFcarmGrp> + <pFcArmRoot></pFcArmRoot> + <FcArmLst>0</FcArmLst> </Utilities> <TargetArmAds> <ArmAdsMisc> @@ -215,6 +228,7 @@ <useUlib>0</useUlib> <EndSel>0</EndSel> <uLtcg>0</uLtcg> + <nSecure>0</nSecure> <RoSelD>3</RoSelD> <RwSelD>3</RwSelD> <CodeSel>0</CodeSel> @@ -347,11 +361,17 @@ <wLevel>0</wLevel> <uThumb>0</uThumb> <uSurpInc>0</uSurpInc> + <uC99>0</uC99> + <useXO>0</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> <Undefine></Undefine> - <IncludePath>..\CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;..\Common\include</IncludePath> + <IncludePath>..\CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;..\Common\include;.\CMSIS;.\Keil_Specific</IncludePath> </VariousControls> </Cads> <Aads> @@ -363,6 +383,7 @@ <SwStkChk>0</SwStkChk> <NoWarn>0</NoWarn> <uSurpInc>0</uSurpInc> + <useXO>0</useXO> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -379,6 +400,7 @@ <useFile>0</useFile> <TextAddressRange>0x10001000</TextAddressRange> <DataAddressRange>0x20000000</DataAddressRange> + <pXoBase></pXoBase> <ScatterFile></ScatterFile> <IncludeLibs></IncludeLibs> <IncludeLibsPath></IncludeLibsPath> @@ -421,6 +443,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -437,6 +460,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -466,6 +495,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -482,6 +512,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -571,6 +607,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -587,6 +624,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -621,6 +664,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -637,6 +681,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -695,6 +745,7 @@ <TargetName>XMC1200</TargetName> <ToolsetNumber>0x4</ToolsetNumber> <ToolsetName>ARM-ADS</ToolsetName> + <pCCUsed>5060020::V5.06 (build 20)::ARMCC</pCCUsed> <TargetOption> <TargetCommonOption> <Device>XMC1200-200</Device> @@ -715,6 +766,7 @@ <SLE66AMisc></SLE66AMisc> <SLE66LinkerMisc></SLE66LinkerMisc> <SFDFile>SFD\Infineon\XMC1200\xmc1200.SFR</SFDFile> + <bCustSvd>0</bCustSvd> <UseEnv>0</UseEnv> <BinPath></BinPath> <IncludePath></IncludePath> @@ -756,6 +808,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopB1X>0</nStopB1X> + <nStopB2X>0</nStopB2X> </BeforeMake> <AfterMake> <RunUserProg1>0</RunUserProg1> @@ -764,6 +818,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopA1X>0</nStopA1X> + <nStopA2X>0</nStopA2X> </AfterMake> <SelectedForBatchBuild>0</SelectedForBatchBuild> <SVCSIdString></SVCSIdString> @@ -782,6 +838,7 @@ <StopOnExitCode>3</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <DllOption> <SimDllName>SARMCM3.DLL</SimDllName> @@ -811,6 +868,7 @@ <RestoreFunctions>1</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <LimitSpeedToRealTime>0</LimitSpeedToRealTime> + <RestoreSysVw>1</RestoreSysVw> </Simulator> <Target> <UseTarget>1</UseTarget> @@ -822,9 +880,10 @@ <RestoreFunctions>0</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <RestoreTracepoints>1</RestoreTracepoints> + <RestoreSysVw>1</RestoreSysVw> </Target> <RunDebugAfterBuild>0</RunDebugAfterBuild> - <TargetSelection>7</TargetSelection> + <TargetSelection>6</TargetSelection> <SimDlls> <CpuDll></CpuDll> <CpuDllArguments></CpuDllArguments> @@ -854,6 +913,10 @@ <Flash2>Segger\JL2CM3.dll</Flash2> <Flash3>"" ()</Flash3> <Flash4></Flash4> + <pFcarmOut></pFcarmOut> + <pFcarmGrp></pFcarmGrp> + <pFcArmRoot></pFcArmRoot> + <FcArmLst>0</FcArmLst> </Utilities> <TargetArmAds> <ArmAdsMisc> @@ -900,6 +963,7 @@ <useUlib>1</useUlib> <EndSel>0</EndSel> <uLtcg>0</uLtcg> + <nSecure>0</nSecure> <RoSelD>3</RoSelD> <RwSelD>3</RwSelD> <CodeSel>0</CodeSel> @@ -1032,11 +1096,17 @@ <wLevel>0</wLevel> <uThumb>0</uThumb> <uSurpInc>0</uSurpInc> + <uC99>0</uC99> + <useXO>0</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> <Undefine></Undefine> - <IncludePath>.;..\Common\include;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;.\CMSIS</IncludePath> + <IncludePath>.;..\Common\include;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;.\CMSIS;.\Keil_Specific</IncludePath> </VariousControls> </Cads> <Aads> @@ -1048,6 +1118,7 @@ <SwStkChk>0</SwStkChk> <NoWarn>0</NoWarn> <uSurpInc>0</uSurpInc> + <useXO>0</useXO> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1064,6 +1135,7 @@ <useFile>0</useFile> <TextAddressRange>0x10001000</TextAddressRange> <DataAddressRange>0x20000000</DataAddressRange> + <pXoBase></pXoBase> <ScatterFile>.\Output\RTOSDemo.sct</ScatterFile> <IncludeLibs></IncludeLibs> <IncludeLibsPath></IncludeLibsPath> @@ -1101,6 +1173,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1117,6 +1190,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1146,6 +1225,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1162,6 +1242,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1256,6 +1342,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1272,6 +1359,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1306,6 +1399,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1322,6 +1416,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1351,6 +1451,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1367,6 +1468,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1420,6 +1527,7 @@ <TargetName>XMC1100</TargetName> <ToolsetNumber>0x4</ToolsetNumber> <ToolsetName>ARM-ADS</ToolsetName> + <pCCUsed>5060020::V5.06 (build 20)::ARMCC</pCCUsed> <TargetOption> <TargetCommonOption> <Device>XMC1100-64</Device> @@ -1440,6 +1548,7 @@ <SLE66AMisc></SLE66AMisc> <SLE66LinkerMisc></SLE66LinkerMisc> <SFDFile>SFD\Infineon\XMC1100\xmc1100.SFR</SFDFile> + <bCustSvd>0</bCustSvd> <UseEnv>0</UseEnv> <BinPath></BinPath> <IncludePath></IncludePath> @@ -1481,6 +1590,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopB1X>0</nStopB1X> + <nStopB2X>0</nStopB2X> </BeforeMake> <AfterMake> <RunUserProg1>0</RunUserProg1> @@ -1489,6 +1600,8 @@ <UserProg2Name></UserProg2Name> <UserProg1Dos16Mode>0</UserProg1Dos16Mode> <UserProg2Dos16Mode>0</UserProg2Dos16Mode> + <nStopA1X>0</nStopA1X> + <nStopA2X>0</nStopA2X> </AfterMake> <SelectedForBatchBuild>0</SelectedForBatchBuild> <SVCSIdString></SVCSIdString> @@ -1507,6 +1620,7 @@ <StopOnExitCode>3</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <DllOption> <SimDllName>SARMCM3.DLL</SimDllName> @@ -1536,6 +1650,7 @@ <RestoreFunctions>1</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <LimitSpeedToRealTime>0</LimitSpeedToRealTime> + <RestoreSysVw>1</RestoreSysVw> </Simulator> <Target> <UseTarget>1</UseTarget> @@ -1547,9 +1662,10 @@ <RestoreFunctions>0</RestoreFunctions> <RestoreToolbox>1</RestoreToolbox> <RestoreTracepoints>1</RestoreTracepoints> + <RestoreSysVw>1</RestoreSysVw> </Target> <RunDebugAfterBuild>0</RunDebugAfterBuild> - <TargetSelection>7</TargetSelection> + <TargetSelection>6</TargetSelection> <SimDlls> <CpuDll></CpuDll> <CpuDllArguments></CpuDllArguments> @@ -1579,6 +1695,10 @@ <Flash2>Segger\JL2CM3.dll</Flash2> <Flash3></Flash3> <Flash4></Flash4> + <pFcarmOut></pFcarmOut> + <pFcarmGrp></pFcarmGrp> + <pFcArmRoot></pFcArmRoot> + <FcArmLst>0</FcArmLst> </Utilities> <TargetArmAds> <ArmAdsMisc> @@ -1625,6 +1745,7 @@ <useUlib>1</useUlib> <EndSel>0</EndSel> <uLtcg>0</uLtcg> + <nSecure>0</nSecure> <RoSelD>3</RoSelD> <RwSelD>3</RwSelD> <CodeSel>0</CodeSel> @@ -1757,11 +1878,17 @@ <wLevel>0</wLevel> <uThumb>0</uThumb> <uSurpInc>0</uSurpInc> + <uC99>0</uC99> + <useXO>0</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> <Undefine></Undefine> - <IncludePath>.;..\Common\include;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;.\CMSIS</IncludePath> + <IncludePath>.;..\Common\include;..\..\Source\include;..\..\Source\portable\RVDS\ARM_CM0;.\CMSIS;.\Keil_Specific</IncludePath> </VariousControls> </Cads> <Aads> @@ -1773,6 +1900,7 @@ <SwStkChk>0</SwStkChk> <NoWarn>0</NoWarn> <uSurpInc>0</uSurpInc> + <useXO>0</useXO> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1789,6 +1917,7 @@ <useFile>0</useFile> <TextAddressRange>0x10001000</TextAddressRange> <DataAddressRange>0x20000000</DataAddressRange> + <pXoBase></pXoBase> <ScatterFile>.\Output\RTOSDemo.sct</ScatterFile> <IncludeLibs></IncludeLibs> <IncludeLibsPath></IncludeLibsPath> @@ -1826,6 +1955,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1842,6 +1972,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1876,6 +2012,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1892,6 +2029,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -1981,6 +2124,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -1997,6 +2141,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> @@ -2036,6 +2186,7 @@ <StopOnExitCode>11</StopOnExitCode> <CustomArgument></CustomArgument> <IncludeLibraryModules></IncludeLibraryModules> + <ComprImg>1</ComprImg> </CommonProperty> <FileArmAds> <Cads> @@ -2052,6 +2203,12 @@ <wLevel>0</wLevel> <uThumb>2</uThumb> <uSurpInc>2</uSurpInc> + <uC99>2</uC99> + <useXO>2</useXO> + <v6Lang>0</v6Lang> + <v6LangP>0</v6LangP> + <vShortEn>0</vShortEn> + <vShortWch>0</vShortWch> <VariousControls> <MiscControls></MiscControls> <Define></Define> diff --git a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/settings/RTOSDemo.wsdt b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/settings/RTOSDemo.wsdt index 0c08a5408..4720a95ab 100644 --- a/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/settings/RTOSDemo.wsdt +++ b/FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/settings/RTOSDemo.wsdt @@ -3,7 +3,7 @@ <Workspace> <ConfigDictionary> - <CurrentConfigs><Project>RTOSDemo/XMC1200 Boot Kit</Project></CurrentConfigs></ConfigDictionary> + <CurrentConfigs><Project>RTOSDemo/XMC1300 Boot Kit</Project></CurrentConfigs></ConfigDictionary> <Desktop> <Static> <Workspace> @@ -25,7 +25,7 @@ <Windows> - <Wnd0> + <Wnd1> <Tabs> <Tab> <Identity>TabID-23707-15152</Identity> @@ -33,11 +33,11 @@ <Factory>Workspace</Factory> <Session> - <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode><ExpandedNode>RTOSDemo/System</ExpandedNode></NodeDict></Session> + <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode></NodeDict></Session> </Tab> </Tabs> - <SelectedTab>0</SelectedTab></Wnd0><Wnd1> + <SelectedTab>0</SelectedTab></Wnd1><Wnd4> <Tabs> <Tab> <Identity>TabID-19002-15240</Identity> @@ -47,20 +47,20 @@ </Tab> <Tab><Identity>TabID-13685-21727</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs> - <SelectedTab>0</SelectedTab></Wnd1></Windows> + <SelectedTab>0</SelectedTab></Wnd4></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>56</YPos2><SelStart2>5553</SelStart2><SelEnd2>5553</SelEnd2></Tab><ActiveTab>0</ActiveTab></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>65</YPos2><SelStart2>5553</SelStart2><SelEnd2>5553</SelEnd2></Tab><ActiveTab>0</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor> <Positions> - <Top><Row0><Sizes><Toolbar-01348f68><key>iaridepm.enu1</key></Toolbar-01348f68></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>740</Bottom><Right>435</Right><x>-2</x><y>-2</y><xscreen>200</xscreen><yscreen>200</yscreen><sizeHorzCX>119048</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>260119</sizeVertCX><sizeVertCY>755601</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203666</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions> + <Top><Row0><Sizes><Toolbar-0128A6F8><key>iaridepm.enu1</key></Toolbar-0128A6F8></Sizes></Row0></Top><Left><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>742</Bottom><Right>435</Right><x>-2</x><y>-2</y><xscreen>200</xscreen><yscreen>200</yscreen><sizeHorzCX>119048</sizeHorzCX><sizeHorzCY>203252</sizeHorzCY><sizeVertCX>260119</sizeVertCX><sizeVertCY>756098</sizeVertCY></Rect></Wnd1></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd4><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203252</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203252</sizeVertCY></Rect></Wnd4></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions> </Desktop> </Workspace> diff --git a/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c b/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c index 15803263e..73e90a5e2 100644 --- a/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c +++ b/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c @@ -183,6 +183,7 @@ void vPortStartFirstTask( void ) " msr psp, r0 \n" /* This is now the new top of stack to use in the task. */ " movs r0, #2 \n" /* Switch to the psp stack. */ " msr CONTROL, r0 \n" + " isb \n" " pop {r0-r5} \n" /* Pop the registers that are saved automatically. */ " mov lr, r5 \n" /* lr is now in r5. */ " cpsie i \n" /* The first task has its context and interrupts can be enabled. */ diff --git a/FreeRTOS/Source/portable/IAR/ARM_CM0/portasm.s b/FreeRTOS/Source/portable/IAR/ARM_CM0/portasm.s index aa4ee7668..3cabe4191 100644 --- a/FreeRTOS/Source/portable/IAR/ARM_CM0/portasm.s +++ b/FreeRTOS/Source/portable/IAR/ARM_CM0/portasm.s @@ -149,6 +149,7 @@ vPortStartFirstTask msr psp, r0 /* This is now the new top of stack to use in the task. */ movs r0, #2 /* Switch to the psp stack. */ msr CONTROL, r0 + isb pop {r0-r5} /* Pop the registers that are saved automatically. */ mov lr, r5 /* lr is now in r5. */ cpsie i /* The first task has its context and interrupts can be enabled. */ diff --git a/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c b/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c index c830b8898..20759f974 100644 --- a/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c +++ b/FreeRTOS/Source/portable/RVDS/ARM_CM0/port.c @@ -181,6 +181,7 @@ __asm void prvPortStartFirstTask( void ) msr psp, r0 /* This is now the new top of stack to use in the task. */ movs r0, #2 /* Switch to the psp stack. */ msr CONTROL, r0 + isb pop {r0-r5} /* Pop the registers that are saved automatically. */ mov lr, r5 /* lr is now in r5. */ cpsie i /* The first task has its context and interrupts can be enabled. */