RTOS2: Added Blinky and MsgQueue examples for IAR
This is a strainght port of the corresponding ARM examples.
The projects are setup to run on the simulator and teh default is an M3
target, but that can easily been changed after the example has been
imported.
The projects has been setup to use a simulated SysTick interrupt and the
thread viewer plugin.
Signed-off-by: TTornblom <thomas.tornblom@iar.com>
diff --git a/ARM.CMSIS.pdsc b/ARM.CMSIS.pdsc
index 341d90d..f8ef4ee 100644
--- a/ARM.CMSIS.pdsc
+++ b/ARM.CMSIS.pdsc
@@ -4369,6 +4369,34 @@
</attributes>
</example>
+ <example name="CMSIS-RTOS2 Blinky" doc="Abstract.txt" folder="CMSIS/RTOS2/RTX/Examples_IAR/Blinky">
+ <description>CMSIS-RTOS2 Blinky example</description>
+ <board name="EWARM Simulator" vendor="iar"/>
+ <project>
+ <environment name="iar" load="Blinky/Blinky.ewp"/>
+ </project>
+ <attributes>
+ <component Cclass="CMSIS" Cgroup="CORE"/>
+ <component Cclass="CMSIS" Cgroup="RTOS2"/>
+ <component Cclass="Device" Cgroup="Startup"/>
+ <category>Getting Started</category>
+ </attributes>
+ </example>
+
+ <example name="CMSIS-RTOS2 RTX5 Message Queue" doc="Abstract.txt" folder="CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue">
+ <description>CMSIS-RTOS2 Message Queue Example</description>
+ <board name="EWARM Simulator" vendor="iar"/>
+ <project>
+ <environment name="iar" load="MsgQueue/MsgQueue.ewp"/>
+ </project>
+ <attributes>
+ <component Cclass="CMSIS" Cgroup="CORE"/>
+ <component Cclass="CMSIS" Cgroup="RTOS2"/>
+ <component Cclass="Device" Cgroup="Startup"/>
+ <category>Getting Started</category>
+ </attributes>
+ </example>
+
</examples>
</package>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Abstract.txt b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Abstract.txt
new file mode 100644
index 0000000..05de91e
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Abstract.txt
@@ -0,0 +1,30 @@
+The RTX_Blinky project is a simple RTX Kernel based example
+for a simulated Cortex-M3 device
+
+Example functionality:
+ - Clock Settings:
+ - XTAL = 50 MHz
+ - Core = 25 MHz
+
+The simple RTX Kernel based example simulates the step-motor
+driver. Four LEDs are blinking simulating the activation of
+the four output driver stages
+The simulation does not provide LEDs, so the state changes
+are output on the Debug printf window:
+
+- phase A
+- phase B
+- phase C
+- phase D
+
+This example simulates Half step driver mode and
+CW rotation direction.
+
+
+The BLINKY example program is available for one target:
+
+ Simulation: configured for a simulated on-chip Flash
+
+The example is compatible with other Cortex-M class devices.
+Simply open the project settings, navigate to Device tab and
+select another Cortex-M class device.
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky.c b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky.c
new file mode 100644
index 0000000..2c32720
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky.c
@@ -0,0 +1,165 @@
+/* --------------------------------------------------------------------------
+ * Copyright (c) 2013-2019 ARM Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the License); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Name: Blinky.c
+ * Purpose: RTX example program
+ *
+ *---------------------------------------------------------------------------*/
+
+#include <stdio.h>
+
+#include "cmsis_os2.h" // ARM::CMSIS:RTOS2:Keil RTX5
+
+#include "RTE_Components.h"
+#include CMSIS_device_header
+
+osThreadId_t tid_phaseA; /* Thread id of thread: phase_a */
+osThreadId_t tid_phaseB; /* Thread id of thread: phase_b */
+osThreadId_t tid_phaseC; /* Thread id of thread: phase_c */
+osThreadId_t tid_phaseD; /* Thread id of thread: phase_d */
+osThreadId_t tid_clock; /* Thread id of thread: clock */
+
+struct phases_t {
+ int_fast8_t phaseA;
+ int_fast8_t phaseB;
+ int_fast8_t phaseC;
+ int_fast8_t phaseD;
+} g_phases;
+
+
+/*----------------------------------------------------------------------------
+ * Switch LED on
+ *---------------------------------------------------------------------------*/
+void Switch_On (unsigned char led) {
+ printf("LED On: #%d\n\r", led);
+}
+
+/*----------------------------------------------------------------------------
+ * Switch LED off
+ *---------------------------------------------------------------------------*/
+void Switch_Off (unsigned char led) {
+ printf("LED Off: #%d\n\r", led);
+}
+
+
+/*----------------------------------------------------------------------------
+ * Function 'signal_func' called from multiple threads
+ *---------------------------------------------------------------------------*/
+void signal_func (osThreadId_t tid) {
+ osThreadFlagsSet(tid_clock, 0x0100); /* set signal to clock thread */
+ osDelay(500); /* delay 500ms */
+ osThreadFlagsSet(tid_clock, 0x0100); /* set signal to clock thread */
+ osDelay(500); /* delay 500ms */
+ osThreadFlagsSet(tid, 0x0001); /* set signal to thread 'thread' */
+ osDelay(500); /* delay 500ms */
+}
+
+/*----------------------------------------------------------------------------
+ * Thread 1 'phaseA': Phase A output
+ *---------------------------------------------------------------------------*/
+void phaseA (void *argument) {
+ for (;;) {
+ osThreadFlagsWait(0x0001, osFlagsWaitAny ,osWaitForever); /* wait for an event flag 0x0001 */
+ Switch_On(0);
+ g_phases.phaseA = 1;
+ signal_func(tid_phaseB); /* call common signal function */
+ g_phases.phaseA = 0;
+ Switch_Off(0);
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Thread 2 'phaseB': Phase B output
+ *---------------------------------------------------------------------------*/
+void phaseB (void *argument) {
+ for (;;) {
+ osThreadFlagsWait(0x0001, osFlagsWaitAny, osWaitForever); /* wait for an event flag 0x0001 */
+ Switch_On(1);
+ g_phases.phaseB = 1;
+ signal_func(tid_phaseC); /* call common signal function */
+ g_phases.phaseB = 0;
+ Switch_Off(1);
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Thread 3 'phaseC': Phase C output
+ *---------------------------------------------------------------------------*/
+void phaseC (void *argument) {
+ for (;;) {
+ osThreadFlagsWait(0x0001, osFlagsWaitAny, osWaitForever); /* wait for an event flag 0x0001 */
+ Switch_On(2);
+ g_phases.phaseC = 1;
+ signal_func(tid_phaseD); /* call common signal function */
+ g_phases.phaseC = 0;
+ Switch_Off(2);
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Thread 4 'phaseD': Phase D output
+ *---------------------------------------------------------------------------*/
+void phaseD (void *argument) {
+ for (;;) {
+ osThreadFlagsWait(0x0001, osFlagsWaitAny, osWaitForever); /* wait for an event flag 0x0001 */
+ Switch_On(3);
+ g_phases.phaseD = 1;
+ signal_func(tid_phaseA); /* call common signal function */
+ g_phases.phaseD = 0;
+ Switch_Off(3);
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Thread 5 'clock': Signal Clock
+ *---------------------------------------------------------------------------*/
+void clock (void *argument) {
+ for (;;) {
+ osThreadFlagsWait(0x0100, osFlagsWaitAny, osWaitForever); /* wait for an event flag 0x0100 */
+ osDelay(80); /* delay 80ms */
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Main: Initialize and start RTX Kernel
+ *---------------------------------------------------------------------------*/
+void app_main (void *argument) {
+
+ tid_phaseA = osThreadNew(phaseA, NULL, NULL);
+ tid_phaseB = osThreadNew(phaseB, NULL, NULL);
+ tid_phaseC = osThreadNew(phaseC, NULL, NULL);
+ tid_phaseD = osThreadNew(phaseD, NULL, NULL);
+ tid_clock = osThreadNew(clock, NULL, NULL);
+
+ osThreadFlagsSet(tid_phaseA, 0x0001); /* set signal to phaseA thread */
+
+ osDelay(osWaitForever);
+}
+
+int main (void) {
+
+ // System Initialization
+ SystemCoreClockUpdate();
+ // ...
+ osKernelInitialize(); // Initialize CMSIS-RTOS
+ osThreadNew(app_main, NULL, NULL); // Create application main thread
+ if (osKernelGetState() == osKernelReady) {
+ osKernelStart(); // Start thread execution
+ }
+
+ while(1);
+}
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewd b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewd
new file mode 100644
index 0000000..d8cbd95
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewd
@@ -0,0 +1,2974 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <fileVersion>3</fileVersion>
+ <configuration>
+ <name>Debug</name>
+ <toolchain>
+ <name>ARM</name>
+ </toolchain>
+ <debug>1</debug>
+ <settings>
+ <name>C-SPY</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>32</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CInput</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CEndian</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCVariant</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>MemOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MemFile</name>
+ <state>${CMSIS_PACK_PATH_ARM#CMSIS#5.7.0-dev5}$\.iar\config\debugger\ARMCM3.ddf</state>
+ </option>
+ <option>
+ <name>RunToEnable</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RunToName</name>
+ <state>main</state>
+ </option>
+ <option>
+ <name>CExtraOptionsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CExtraOptions</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CFpuProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDDFArgumentProducer</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadSuppressDownload</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDownloadVerifyAll</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>OCDynDriverList</name>
+ <state>ARMSIM_ID</state>
+ </option>
+ <option>
+ <name>OCLastSavedByProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>UseFlashLoader</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CLowLevel</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCBE8Slave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>MacFile2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CDevice</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>FlashLoadersV3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OverrideDefFlashBoard</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesOffset1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesUse1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDeviceConfigMacroFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDebuggerExtraOption</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAllMTBOptions</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCores</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreWorkspace</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveProject</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveConfiguration</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadExtraImage</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAttachSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MassEraseBeforeFlashing</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCoresSlave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreAMPConfigType</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreSessionFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCTpiuBaseOption</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>ARMSIM_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCSimDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCSimEnablePSP</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspOverrideConfig</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspConfigFile</name>
+ <state></state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CADI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CCadiMemory</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>Fast Model</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCADILogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCADILogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CMSISDAP_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>4</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>CMSISDAPDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>
+ <option>
+ <name>CCCMSISDAPUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCMSISDAPUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>GDBSERVER_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJTagBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>IJET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>IjetHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>IjetHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>IjetPowerFromProbe</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetPowerRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>IjetInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetProtocolRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSwoPin</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetSwoPrescalerList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeCfgOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeConfig</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetProbeConfigRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUNumber</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSelectedCPUBehaviour</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>4</state>
+ </option>
+ <option>
+ <name>FlashBoardPathSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>JLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>16</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>JLinkSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCJLinkDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJLinkHWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>JLinkInitialSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCDoJlinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkCommRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>CCJLinkSpeedRadioV2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCUSBDevice</name>
+ <version>1</version>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCRDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkResetList</name>
+ <version>6</version>
+ <state>5</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCTcpIpAlt</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTcpIpSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSource</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSourceDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkDeviceName</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>LMIFTDI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>2</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>LmiftdiSpeed</name>
+ <state>500</state>
+ </option>
+ <option>
+ <name>CCLmiftdiDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCLmiftdiLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>NULINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>PEMICRO_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>3</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJPEMicroShowSettings</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>STLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>7</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkResetList</name>
+ <version>3</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCSTLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkJtagSpeedList</name>
+ <version>2</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkDAPNumber</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkDebugAccessPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUseServerSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkProbeList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>THIRDPARTY_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CThirdPartyDriverDll</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>TIFET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVccTypeDefault</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CCMSPFetVCCDefault</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetSettlingtime</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioJtagSpeedType</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetConnection</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetUsbComPort</name>
+ <state>Automatic</state>
+ </option>
+ <option>
+ <name>CCMSPFetAllowAccessToBSL</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioEraseFlash</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>XDS100_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TIPackageOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>TIPackage</name>
+ <state></state>
+ </option>
+ <option>
+ <name>BoardFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCXds100BreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100DoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCXds100CatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockEdit</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCXds100HWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100JtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceRadio</name>
+ <state>2</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ProbeList</name>
+ <version>0</version>
+ <state>3</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPort</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVccEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>OCXDSDigitalStatesConfigFile</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <debuggerPlugins>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin</file>
+ <loadFlag>1</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ </debuggerPlugins>
+ </configuration>
+ <configuration>
+ <name>Release</name>
+ <toolchain>
+ <name>ARM</name>
+ </toolchain>
+ <debug>0</debug>
+ <settings>
+ <name>C-SPY</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>32</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CInput</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CEndian</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCVariant</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>MemOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MemFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>RunToEnable</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RunToName</name>
+ <state>main</state>
+ </option>
+ <option>
+ <name>CExtraOptionsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CExtraOptions</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CFpuProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDDFArgumentProducer</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadSuppressDownload</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDownloadVerifyAll</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>OCDynDriverList</name>
+ <state>ARMSIM_ID</state>
+ </option>
+ <option>
+ <name>OCLastSavedByProductVersion</name>
+ <state></state>
+ </option>
+ <option>
+ <name>UseFlashLoader</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CLowLevel</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCBE8Slave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>MacFile2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CDevice</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>FlashLoadersV3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OverrideDefFlashBoard</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesOffset1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesUse1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDeviceConfigMacroFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDebuggerExtraOption</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAllMTBOptions</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCores</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreWorkspace</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveProject</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveConfiguration</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadExtraImage</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAttachSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MassEraseBeforeFlashing</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCoresSlave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreAMPConfigType</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreSessionFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCTpiuBaseOption</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>ARMSIM_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCSimDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCSimEnablePSP</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspOverrideConfig</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspConfigFile</name>
+ <state></state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CADI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CCadiMemory</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>Fast Model</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCADILogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCADILogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CMSISDAP_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>4</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>CMSISDAPDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>
+ <option>
+ <name>CCCMSISDAPUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCMSISDAPUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>GDBSERVER_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJTagBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>IJET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>IjetHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>IjetHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>IjetPowerFromProbe</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetPowerRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>IjetInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetProtocolRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSwoPin</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetSwoPrescalerList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeCfgOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeConfig</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetProbeConfigRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUNumber</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSelectedCPUBehaviour</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>4</state>
+ </option>
+ <option>
+ <name>FlashBoardPathSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>JLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>16</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>JLinkSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCJLinkDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJLinkHWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>JLinkInitialSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCDoJlinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkCommRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>CCJLinkSpeedRadioV2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCUSBDevice</name>
+ <version>1</version>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCRDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkResetList</name>
+ <version>6</version>
+ <state>5</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCTcpIpAlt</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTcpIpSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSource</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSourceDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkDeviceName</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>LMIFTDI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>2</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>LmiftdiSpeed</name>
+ <state>500</state>
+ </option>
+ <option>
+ <name>CCLmiftdiDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCLmiftdiLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>NULINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>PEMICRO_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>3</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJPEMicroShowSettings</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>STLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>7</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkResetList</name>
+ <version>3</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCSTLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkJtagSpeedList</name>
+ <version>2</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkDAPNumber</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkDebugAccessPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUseServerSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkProbeList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>THIRDPARTY_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CThirdPartyDriverDll</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>TIFET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVccTypeDefault</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CCMSPFetVCCDefault</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetSettlingtime</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioJtagSpeedType</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetConnection</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetUsbComPort</name>
+ <state>Automatic</state>
+ </option>
+ <option>
+ <name>CCMSPFetAllowAccessToBSL</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioEraseFlash</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>XDS100_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TIPackageOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>TIPackage</name>
+ <state></state>
+ </option>
+ <option>
+ <name>BoardFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCXds100BreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100DoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCXds100CatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockEdit</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCXds100HWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100JtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceRadio</name>
+ <state>2</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ProbeList</name>
+ <version>0</version>
+ <state>3</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPort</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVccEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>OCXDSDigitalStatesConfigFile</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <debuggerPlugins>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ </debuggerPlugins>
+ </configuration>
+</project>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewp b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewp
new file mode 100644
index 0000000..cbd0ebc
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/Blinky.ewp
Binary files differ
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.crun b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.crun
new file mode 100644
index 0000000..d71ea55
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.crun
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<crun>
+ <version>1</version>
+ <filter_entries>
+ <filter index="0" type="default">
+ <type>*</type>
+ <start_file>*</start_file>
+ <end_file>*</end_file>
+ <action_debugger>0</action_debugger>
+ <action_log>1</action_log>
+ </filter>
+ </filter_entries>
+</crun>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dbgdt b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dbgdt
new file mode 100644
index 0000000..bc8505c
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dbgdt
@@ -0,0 +1,1216 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Project>
+ <WindowStorage>
+ <ChildIdMap>
+ <TB_CMSISPACK>34048</TB_CMSISPACK>
+ <TB_DEBUG>34049</TB_DEBUG>
+ <TB_MAIN2>34050</TB_MAIN2>
+ <WIN_AUTO>34051</WIN_AUTO>
+ <WIN_BREAKPOINTS>34052</WIN_BREAKPOINTS>
+ <WIN_BUILD>34053</WIN_BUILD>
+ <WIN_CALL_GRAPH>34054</WIN_CALL_GRAPH>
+ <WIN_CALL_STACK>34055</WIN_CALL_STACK>
+ <WIN_CMSISPACK_AGENT_LOG>34056</WIN_CMSISPACK_AGENT_LOG>
+ <WIN_CODECOVERAGE>34057</WIN_CODECOVERAGE>
+ <WIN_CORES>34058</WIN_CORES>
+ <WIN_CUSTOM_SFR>34059</WIN_CUSTOM_SFR>
+ <WIN_C_STAT>34060</WIN_C_STAT>
+ <WIN_DATA_LOG>34061</WIN_DATA_LOG>
+ <WIN_DATA_STAT>34062</WIN_DATA_STAT>
+ <WIN_DEBUGGER_MACROS>34063</WIN_DEBUGGER_MACROS>
+ <WIN_DEBUG_LOG>34064</WIN_DEBUG_LOG>
+ <WIN_DISASSEMBLY>34065</WIN_DISASSEMBLY>
+ <WIN_EXCEPTION_VIEWER>34066</WIN_EXCEPTION_VIEWER>
+ <WIN_FIND_ALL_DECLARATIONS>34067</WIN_FIND_ALL_DECLARATIONS>
+ <WIN_FIND_ALL_REFERENCES>34068</WIN_FIND_ALL_REFERENCES>
+ <WIN_FIND_IN_FILES>34069</WIN_FIND_IN_FILES>
+ <WIN_FIND_IN_SLIDING_TRACE>34070</WIN_FIND_IN_SLIDING_TRACE>
+ <WIN_IMAGES>34071</WIN_IMAGES>
+ <WIN_INTERRUPT_LOG>34072</WIN_INTERRUPT_LOG>
+ <WIN_INTERRUPT_STAT>34073</WIN_INTERRUPT_STAT>
+ <WIN_LOCALS>34074</WIN_LOCALS>
+ <WIN_MACRO_EVAL>34075</WIN_MACRO_EVAL>
+ <WIN_MACRO_REGISTRATION>34076</WIN_MACRO_REGISTRATION>
+ <WIN_MEMORY_1>34077</WIN_MEMORY_1>
+ <WIN_MEMORY_2>34078</WIN_MEMORY_2>
+ <WIN_MEMORY_3>34079</WIN_MEMORY_3>
+ <WIN_MEMORY_4>34080</WIN_MEMORY_4>
+ <WIN_PHYSICAL_BREAKPOINTS>34081</WIN_PHYSICAL_BREAKPOINTS>
+ <WIN_PROFILING2>34082</WIN_PROFILING2>
+ <WIN_QUICK_WATCH>34083</WIN_QUICK_WATCH>
+ <WIN_REGISTER_1>34084</WIN_REGISTER_1>
+ <WIN_REGISTER_2>34085</WIN_REGISTER_2>
+ <WIN_REGISTER_3>34086</WIN_REGISTER_3>
+ <WIN_REGISTER_4>34087</WIN_REGISTER_4>
+ <WIN_REGISTER_GROUPS>34088</WIN_REGISTER_GROUPS>
+ <WIN_RTOS_MBOX>34089</WIN_RTOS_MBOX>
+ <WIN_RTOS_MEMORYPOOL>34090</WIN_RTOS_MEMORYPOOL>
+ <WIN_RTOS_MUTEX>34091</WIN_RTOS_MUTEX>
+ <WIN_RTOS_QUEUE>34092</WIN_RTOS_QUEUE>
+ <WIN_RTOS_SEMAPHORE>34093</WIN_RTOS_SEMAPHORE>
+ <WIN_RTOS_TASK>34094</WIN_RTOS_TASK>
+ <WIN_RTOS_TIMER>34095</WIN_RTOS_TIMER>
+ <WIN_SELECT_AMBIGUOUS_DEFINITIONS>34096</WIN_SELECT_AMBIGUOUS_DEFINITIONS>
+ <WIN_SLIDING_FUNCTION_TRACE>34097</WIN_SLIDING_FUNCTION_TRACE>
+ <WIN_SLIDING_TRACE_WINDOW>34098</WIN_SLIDING_TRACE_WINDOW>
+ <WIN_SOURCEBROWSE_LOG>34099</WIN_SOURCEBROWSE_LOG>
+ <WIN_SOURCE_BROWSE2>34100</WIN_SOURCE_BROWSE2>
+ <WIN_STACK_1>34101</WIN_STACK_1>
+ <WIN_STACK_2>34102</WIN_STACK_2>
+ <WIN_STATICS>34103</WIN_STATICS>
+ <WIN_STATIC_WATCH>34104</WIN_STATIC_WATCH>
+ <WIN_SYMBOLIC_MEMORY>34105</WIN_SYMBOLIC_MEMORY>
+ <WIN_SYMBOLS>34106</WIN_SYMBOLS>
+ <WIN_TERM_IO>34107</WIN_TERM_IO>
+ <WIN_TIMELINE_GRAPH>34108</WIN_TIMELINE_GRAPH>
+ <WIN_TOOL_OUTPUT>34109</WIN_TOOL_OUTPUT>
+ <WIN_TS_INTERRUPT_AVAILABLE>34110</WIN_TS_INTERRUPT_AVAILABLE>
+ <WIN_TS_INTERRUPT_CONFIG>34111</WIN_TS_INTERRUPT_CONFIG>
+ <WIN_TS_INTERRUPT_STATUS>34112</WIN_TS_INTERRUPT_STATUS>
+ <WIN_WATCH_1>34113</WIN_WATCH_1>
+ <WIN_WATCH_2>34114</WIN_WATCH_2>
+ <WIN_WATCH_3>34115</WIN_WATCH_3>
+ <WIN_WATCH_4>34116</WIN_WATCH_4>
+ <WIN_WORKSPACE>34117</WIN_WORKSPACE>
+ </ChildIdMap>
+ <Desktop>
+ <IarPane-34048>
+ <ToolBarCmdIds>
+ <item>34001</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34048>
+ <IarPane-34049>
+ <ToolBarCmdIds>
+ <item>34390</item>
+ <item>34323</item>
+ <item>34398</item>
+ <item>34400</item>
+ <item>34397</item>
+ <item>34320</item>
+ <item>34321</item>
+ <item>34324</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34049>
+ <IarPane-34050>
+ <ToolBarCmdIds>
+ <item>57600</item>
+ <item>57601</item>
+ <item>57603</item>
+ <item>33024</item>
+ <item>0</item>
+ <item>57607</item>
+ <item>0</item>
+ <item>57635</item>
+ <item>57634</item>
+ <item>57637</item>
+ <item>0</item>
+ <item>57643</item>
+ <item>57644</item>
+ <item>0</item>
+ <item>33090</item>
+ <item>33057</item>
+ <item>57636</item>
+ <item>57640</item>
+ <item>57641</item>
+ <item>33026</item>
+ <item>33065</item>
+ <item>33063</item>
+ <item>33064</item>
+ <item>33053</item>
+ <item>33054</item>
+ <item>0</item>
+ <item>33035</item>
+ <item>33036</item>
+ <item>34399</item>
+ <item>0</item>
+ <item>33055</item>
+ <item>33056</item>
+ <item>33094</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34050>
+ <IarPane-34065>
+ <col-names>
+ <item>Disassembly</item>
+ <item>_I0</item>
+ </col-names>
+ <col-widths>
+ <item>500</item>
+ <item>20</item>
+ </col-widths>
+ <DisasmHistory />
+ <ShowCodeCoverage>1</ShowCodeCoverage>
+ <ShowInstrProfiling>1</ShowInstrProfiling>
+ </IarPane-34065>
+ <IarPane-34104>
+ <expressions>
+ <item>g_phases</item>
+ <item></item>
+ </expressions>
+ <col-names>
+ <item>Expression</item>
+ <item>Location</item>
+ <item>Type</item>
+ <item>Value</item>
+ </col-names>
+ <col-widths>
+ <item>100</item>
+ <item>150</item>
+ <item>100</item>
+ <item>100</item>
+ </col-widths>
+ </IarPane-34104>
+ <IarPane-34094>
+ <col-names>
+ <item>ID</item>
+ <item>Name</item>
+ <item>Priority</item>
+ <item>Stack End</item>
+ <item>Stack Ptr</item>
+ <item>Stack Size</item>
+ <item>Stack Start</item>
+ <item>State</item>
+ </col-names>
+ <col-widths>
+ <item>125</item>
+ <item>126</item>
+ <item>65</item>
+ <item>125</item>
+ <item>125</item>
+ <item>75</item>
+ <item>125</item>
+ <item>100</item>
+ </col-widths>
+ </IarPane-34094>
+ <ControlBarVersion>
+ <Major>14</Major>
+ <Minor>15</Minor>
+ </ControlBarVersion>
+ <MFCToolBarParameters>
+ <Tooltips>1</Tooltips>
+ <ShortcutKeys>1</ShortcutKeys>
+ <LargeIcons>0</LargeIcons>
+ <MenuAnimation>0</MenuAnimation>
+ <RecentlyUsedMenus>1</RecentlyUsedMenus>
+ <MenuShadows>1</MenuShadows>
+ <ShowAllMenusAfterDelay>1</ShowAllMenusAfterDelay>
+ <CommandsUsage>29000000B10040E10000010000002387000001000000028600000100000021DE000001000000048400000100000003DA0000010000002596000002000000298100000200000019800000020000001B8F00000100000057860000010000001386000001000000108600000900000020870000010000005684000001000000488100000100000001840000010000001581000008000000048100000100000027D500000100000000DA00000700000059920000010000002CE100000C0000002681000001000000F0800000010000003184000006000000128100000200000005B00000010000000D860000010000001F9600000100000029E1000001000000AF060000110000002392000001000000018100000C00000020920000010000000A8600000400000004E100000200000024B0000001000000539200000100000007DE0000010000000BDA000001000000D8840000010000005F86000002000000009000000100000002B0000001000000ED8000000100000020810000010000000F810000030000003F810000040000001D8100000A0000005E8400001B0000000C810000580000001D92000001000000078600000100000023E100000100000001E1000001000000EA8000000200000008DA00000100000026DE0000020000000D80000003000000D28400000300000059860000010000000DB0000001000000D18500000100000005DA00000100000003DC0000010000000684000001000000048600000100000009810000020000001682000001000000228700000100000001860000010000009A86000001000000019700000100000002DA00000100000000DC0000010000001A8F0000010000000384000003000000568600001100000024960000040000001781000008000000F28000000100000055840000020000001184000001000000778400000200000033840000010000002BE100002B00000007B00000010000000084000001000000148100000200000023D50000010000000DDA00000100000030840000040000004492000001000000EF8000000100000083860000010000000C860000010000000E8400000100000028E100000C0000000081000001000000EC800000010000000ADA000002000000ECFFFFFF0200000001B00000010000005E86000001000000098600000100000003E10000200000001A860000010000001F810000010000000E81000007000000068600000100000007DA00000100000022E100000B0000000B8100000700000000E10000020000008E86000001000000E98000000200000002DC000001000000698600000100000004DA00000100000041E1000008000000588600000100000014860000010000000584000001000000D184000003000000198F0000010000002187000001000000009700000200000001DA000001000000F4800000010000002781000002000000058100000100000000860000010000005586000001000000118600000D000000239600000100000002840000040000001681000002000000DC8400000100000074860000020000000E860000010000001084000001000000328400000100000001E80000020000000281000001000000468100001400000024810000010000000CDA0000010000000B8600000100000021810000010000006086000017000000549200000100000003B000000100000044D5000001000000EE80000001000000A186000001000000D684000002000000198600000100000000B000000100000024E10000020000000A840000010000001E8100000200000002E1000001000000C3860000010000005D8600000200000008860000010000000D81000005000000EB80000003000000C08600000100000002DE0000020000000A81000004000000058600000100000006DA0000020000005C8400000100000007840000010000001686000001000000E880000003000000</CommandsUsage>
+ </MFCToolBarParameters>
+ <CommandManager>
+ <CommandsWithoutImages>110000DA000001DA000002DA000003DA000004DA000005DA000006DA00001E920000289200002992000024960000259600001F9600000C840000338400007884000011840000</CommandsWithoutImages>
+ <MenuUserImages>0A00048100004B00000059920000240000001D92000013000000259200001B00000044920000220000001F9200001F0000002D92000021000000058100004C00000023960000870000002C92000020000000</MenuUserImages>
+ </CommandManager>
+ <Pane-59393>
+ <ID>0</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>00000000490300003E0600005C030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-59393>
+ <BasePane-59393>
+ <IsVisible>1</IsVisible>
+ </BasePane-59393>
+ <Pane-34051>
+ <ID>34051</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34051>
+ <BasePane-34051>
+ <IsVisible>0</IsVisible>
+ </BasePane-34051>
+ <IarPane-34051 />
+ <Pane-34052>
+ <ID>34052</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34052>
+ <BasePane-34052>
+ <IsVisible>0</IsVisible>
+ </BasePane-34052>
+ <Pane--1>
+ <ID>4294967295</ID>
+ <RectRecentFloat>0608000022020000440E0000E3020000</RectRecentFloat>
+ <RectRecentDocked>00000000D30100003E06000094020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane--1>
+ <BasePane--1>
+ <IsVisible>0</IsVisible>
+ </BasePane--1>
+ <Pane-34053>
+ <ID>34053</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34053>
+ <BasePane-34053>
+ <IsVisible>1</IsVisible>
+ </BasePane-34053>
+ <Pane-34056>
+ <ID>34056</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34056>
+ <BasePane-34056>
+ <IsVisible>0</IsVisible>
+ </BasePane-34056>
+ <Pane-34064>
+ <ID>34064</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34064>
+ <BasePane-34064>
+ <IsVisible>1</IsVisible>
+ </BasePane-34064>
+ <Pane-34067>
+ <ID>34067</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34067>
+ <BasePane-34067>
+ <IsVisible>0</IsVisible>
+ </BasePane-34067>
+ <Pane-34068>
+ <ID>34068</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34068>
+ <BasePane-34068>
+ <IsVisible>0</IsVisible>
+ </BasePane-34068>
+ <Pane-34069>
+ <ID>34069</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34069>
+ <BasePane-34069>
+ <IsVisible>0</IsVisible>
+ </BasePane-34069>
+ <Pane-34096>
+ <ID>34096</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34096>
+ <BasePane-34096>
+ <IsVisible>0</IsVisible>
+ </BasePane-34096>
+ <Pane-34109>
+ <ID>34109</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000B00200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34109>
+ <BasePane-34109>
+ <IsVisible>0</IsVisible>
+ </BasePane-34109>
+ <Pane-34054>
+ <ID>34054</ID>
+ <RectRecentFloat>060800004F000000860A0000E0000000</RectRecentFloat>
+ <RectRecentDocked>00000000000000008002000091000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34054>
+ <BasePane-34054>
+ <IsVisible>0</IsVisible>
+ </BasePane-34054>
+ <Pane-34055>
+ <ID>34055</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34055>
+ <BasePane-34055>
+ <IsVisible>0</IsVisible>
+ </BasePane-34055>
+ <IarPane-34055 />
+ <Pane-34057>
+ <ID>34057</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34057>
+ <BasePane-34057>
+ <IsVisible>0</IsVisible>
+ </BasePane-34057>
+ <IarPane-34057 />
+ <Pane-34058>
+ <ID>34058</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34058>
+ <BasePane-34058>
+ <IsVisible>0</IsVisible>
+ </BasePane-34058>
+ <IarPane-34058 />
+ <Pane-34059>
+ <ID>34059</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34059>
+ <BasePane-34059>
+ <IsVisible>0</IsVisible>
+ </BasePane-34059>
+ <Pane-34060>
+ <ID>34060</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34060>
+ <BasePane-34060>
+ <IsVisible>0</IsVisible>
+ </BasePane-34060>
+ <Pane-34061>
+ <ID>34061</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34061>
+ <BasePane-34061>
+ <IsVisible>0</IsVisible>
+ </BasePane-34061>
+ <IarPane-34061 />
+ <Pane-34062>
+ <ID>34062</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34062>
+ <BasePane-34062>
+ <IsVisible>0</IsVisible>
+ </BasePane-34062>
+ <IarPane-34062 />
+ <Pane-34063>
+ <ID>34063</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34063>
+ <BasePane-34063>
+ <IsVisible>0</IsVisible>
+ </BasePane-34063>
+ <IarPane-34063 />
+ <Pane-34065>
+ <ID>34065</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>38050000320000003E06000094020000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34065>
+ <BasePane-34065>
+ <IsVisible>1</IsVisible>
+ </BasePane-34065>
+ <Pane-34066>
+ <ID>34066</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34066>
+ <BasePane-34066>
+ <IsVisible>0</IsVisible>
+ </BasePane-34066>
+ <IarPane-34066 />
+ <Pane-34070>
+ <ID>34070</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34070>
+ <BasePane-34070>
+ <IsVisible>0</IsVisible>
+ </BasePane-34070>
+ <IarPane-34070 />
+ <Pane-34071>
+ <ID>34071</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34071>
+ <BasePane-34071>
+ <IsVisible>0</IsVisible>
+ </BasePane-34071>
+ <IarPane-34071 />
+ <Pane-34072>
+ <ID>34072</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34072>
+ <BasePane-34072>
+ <IsVisible>0</IsVisible>
+ </BasePane-34072>
+ <IarPane-34072 />
+ <Pane-34073>
+ <ID>34073</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34073>
+ <BasePane-34073>
+ <IsVisible>0</IsVisible>
+ </BasePane-34073>
+ <IarPane-34073 />
+ <Pane-34074>
+ <ID>34074</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34074>
+ <BasePane-34074>
+ <IsVisible>0</IsVisible>
+ </BasePane-34074>
+ <IarPane-34074 />
+ <Pane-34075>
+ <ID>34075</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34075>
+ <BasePane-34075>
+ <IsVisible>0</IsVisible>
+ </BasePane-34075>
+ <IarPane-34075 />
+ <Pane-34076>
+ <ID>34076</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34076>
+ <BasePane-34076>
+ <IsVisible>0</IsVisible>
+ </BasePane-34076>
+ <IarPane-34076 />
+ <Pane-34077>
+ <ID>34077</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34077>
+ <BasePane-34077>
+ <IsVisible>0</IsVisible>
+ </BasePane-34077>
+ <IarPane-34077 />
+ <Pane-34078>
+ <ID>34078</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34078>
+ <BasePane-34078>
+ <IsVisible>0</IsVisible>
+ </BasePane-34078>
+ <IarPane-34078 />
+ <Pane-34079>
+ <ID>34079</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34079>
+ <BasePane-34079>
+ <IsVisible>0</IsVisible>
+ </BasePane-34079>
+ <IarPane-34079 />
+ <Pane-34080>
+ <ID>34080</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34080>
+ <BasePane-34080>
+ <IsVisible>0</IsVisible>
+ </BasePane-34080>
+ <IarPane-34080 />
+ <Pane-34081>
+ <ID>34081</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34081>
+ <BasePane-34081>
+ <IsVisible>0</IsVisible>
+ </BasePane-34081>
+ <IarPane-34081 />
+ <Pane-34082>
+ <ID>34082</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34082>
+ <BasePane-34082>
+ <IsVisible>0</IsVisible>
+ </BasePane-34082>
+ <IarPane-34082 />
+ <Pane-34083>
+ <ID>34083</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34083>
+ <BasePane-34083>
+ <IsVisible>0</IsVisible>
+ </BasePane-34083>
+ <IarPane-34083 />
+ <Pane-34084>
+ <ID>34084</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34084>
+ <BasePane-34084>
+ <IsVisible>0</IsVisible>
+ </BasePane-34084>
+ <IarPane-34084 />
+ <Pane-34085>
+ <ID>34085</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34085>
+ <BasePane-34085>
+ <IsVisible>0</IsVisible>
+ </BasePane-34085>
+ <IarPane-34085 />
+ <Pane-34086>
+ <ID>34086</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34086>
+ <BasePane-34086>
+ <IsVisible>0</IsVisible>
+ </BasePane-34086>
+ <IarPane-34086 />
+ <Pane-34087>
+ <ID>34087</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34087>
+ <BasePane-34087>
+ <IsVisible>0</IsVisible>
+ </BasePane-34087>
+ <IarPane-34087 />
+ <Pane-34088>
+ <ID>34088</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34088>
+ <BasePane-34088>
+ <IsVisible>0</IsVisible>
+ </BasePane-34088>
+ <IarPane-34088 />
+ <Pane-34089>
+ <ID>34089</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34089>
+ <BasePane-34089>
+ <IsVisible>0</IsVisible>
+ </BasePane-34089>
+ <IarPane-34089 />
+ <Pane-34090>
+ <ID>34090</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34090>
+ <BasePane-34090>
+ <IsVisible>0</IsVisible>
+ </BasePane-34090>
+ <IarPane-34090 />
+ <Pane-34091>
+ <ID>34091</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34091>
+ <BasePane-34091>
+ <IsVisible>0</IsVisible>
+ </BasePane-34091>
+ <IarPane-34091 />
+ <Pane-34092>
+ <ID>34092</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34092>
+ <BasePane-34092>
+ <IsVisible>0</IsVisible>
+ </BasePane-34092>
+ <IarPane-34092 />
+ <Pane-34093>
+ <ID>34093</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34093>
+ <BasePane-34093>
+ <IsVisible>0</IsVisible>
+ </BasePane-34093>
+ <IarPane-34093 />
+ <Pane-34094>
+ <ID>34094</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>00000000E30100003405000094020000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34094>
+ <BasePane-34094>
+ <IsVisible>1</IsVisible>
+ </BasePane-34094>
+ <Pane-34095>
+ <ID>34095</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000002E01000034050000DF010000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34095>
+ <BasePane-34095>
+ <IsVisible>0</IsVisible>
+ </BasePane-34095>
+ <IarPane-34095>
+ <col-names>
+ <item>Name</item>
+ <item>Re init ticks</item>
+ <item>Remaining</item>
+ </col-names>
+ <col-widths>
+ <item>100</item>
+ <item>75</item>
+ <item>75</item>
+ </col-widths>
+ </IarPane-34095>
+ <Pane-34097>
+ <ID>34097</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34097>
+ <BasePane-34097>
+ <IsVisible>0</IsVisible>
+ </BasePane-34097>
+ <IarPane-34097 />
+ <Pane-34098>
+ <ID>34098</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34098>
+ <BasePane-34098>
+ <IsVisible>0</IsVisible>
+ </BasePane-34098>
+ <IarPane-34098 />
+ <Pane-34099>
+ <ID>34099</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34099>
+ <BasePane-34099>
+ <IsVisible>0</IsVisible>
+ </BasePane-34099>
+ <Pane-34100>
+ <ID>34100</ID>
+ <RectRecentFloat>060800004F000000860A0000E0000000</RectRecentFloat>
+ <RectRecentDocked>00000000000000008002000091000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34100>
+ <BasePane-34100>
+ <IsVisible>0</IsVisible>
+ </BasePane-34100>
+ <Pane-34101>
+ <ID>34101</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34101>
+ <BasePane-34101>
+ <IsVisible>0</IsVisible>
+ </BasePane-34101>
+ <IarPane-34101 />
+ <Pane-34102>
+ <ID>34102</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34102>
+ <BasePane-34102>
+ <IsVisible>0</IsVisible>
+ </BasePane-34102>
+ <IarPane-34102 />
+ <Pane-34103>
+ <ID>34103</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34103>
+ <BasePane-34103>
+ <IsVisible>0</IsVisible>
+ </BasePane-34103>
+ <IarPane-34103 />
+ <Pane-34104>
+ <ID>34104</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>2E0400003200000034050000DF010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34104>
+ <BasePane-34104>
+ <IsVisible>1</IsVisible>
+ </BasePane-34104>
+ <Pane-34105>
+ <ID>34105</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34105>
+ <BasePane-34105>
+ <IsVisible>0</IsVisible>
+ </BasePane-34105>
+ <IarPane-34105 />
+ <Pane-34106>
+ <ID>34106</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34106>
+ <BasePane-34106>
+ <IsVisible>0</IsVisible>
+ </BasePane-34106>
+ <IarPane-34106 />
+ <Pane-34107>
+ <ID>34107</ID>
+ <RectRecentFloat>060800004F000000B409000010010000</RectRecentFloat>
+ <RectRecentDocked>0000000000000000AE010000C1000000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34107>
+ <BasePane-34107>
+ <IsVisible>0</IsVisible>
+ </BasePane-34107>
+ <IarPane-34107 />
+ <Pane-34108>
+ <ID>34108</ID>
+ <RectRecentFloat>060800004F000000B409000010010000</RectRecentFloat>
+ <RectRecentDocked>0000000000000000AE010000C1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34108>
+ <BasePane-34108>
+ <IsVisible>0</IsVisible>
+ </BasePane-34108>
+ <IarPane-34108 />
+ <Pane-34110>
+ <ID>34110</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000002E0100002A040000DF010000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34110>
+ <BasePane-34110>
+ <IsVisible>0</IsVisible>
+ </BasePane-34110>
+ <Pane-34111>
+ <ID>34111</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000007F0100002A040000DF010000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34111>
+ <BasePane-34111>
+ <IsVisible>1</IsVisible>
+ </BasePane-34111>
+ <Pane-34112>
+ <ID>34112</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34112>
+ <BasePane-34112>
+ <IsVisible>0</IsVisible>
+ </BasePane-34112>
+ <IarPane-34112 />
+ <Pane-34113>
+ <ID>34113</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34113>
+ <BasePane-34113>
+ <IsVisible>0</IsVisible>
+ </BasePane-34113>
+ <IarPane-34113 />
+ <Pane-34114>
+ <ID>34114</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34114>
+ <BasePane-34114>
+ <IsVisible>0</IsVisible>
+ </BasePane-34114>
+ <IarPane-34114 />
+ <Pane-34115>
+ <ID>34115</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34115>
+ <BasePane-34115>
+ <IsVisible>0</IsVisible>
+ </BasePane-34115>
+ <IarPane-34115 />
+ <Pane-34116>
+ <ID>34116</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34116>
+ <BasePane-34116>
+ <IsVisible>0</IsVisible>
+ </BasePane-34116>
+ <IarPane-34116 />
+ <Pane-34117>
+ <ID>34117</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>0000000032000000060100007B010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34117>
+ <BasePane-34117>
+ <IsVisible>1</IsVisible>
+ </BasePane-34117>
+ <DockingManager-256>
+ <DockingPaneAndPaneDividers>0000000072000000000000000010000001000000FFFFFFFFFFFFFFFF06010000320000000A0100007B010000010000000200001004000000010000000000000000000000458500000000000000000000000000000000000001000000458500000100000045850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000448500000000000000000000000000000000000001000000448500000100000044850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000438500000000000000000000000000000000000001000000438500000100000043850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000428500000000000000000000000000000000000001000000428500000100000042850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000418500000000000000000000000000000000000001000000418500000100000041850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000408500000000000000000000000000000000000001000000408500000100000040850000000000000080000001000000FFFFFFFFFFFFFFFF000000007B0100002A0400007F01000001000000010000100400000001000000CAFEFFFF2C0000003F85000000000000000000000000000000000000010000003F850000010000003F850000000000000080000000000000FFFFFFFFFFFFFFFF000000002A0100002A0400002E0100000000000001000000040000000100000000000000000000003E85000000000000000000000000000000000000010000003E850000010000003E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000003C85000000000000000000000000000000000000010000003C850000010000003C850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000003B85000000000000000000000000000000000000010000003B850000010000003B850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000003A85000000000000000000000000000000000000010000003A850000010000003A850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000398500000000000000000000000000000000000001000000398500000100000039850000000000000040000001000000FFFFFFFFFFFFFFFF2A040000320000002E040000DF010000010000000200001004000000010000000000000000000000388500000000000000000000000000000000000001000000388500000100000038850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000378500000000000000000000000000000000000001000000378500000100000037850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000368500000000000000000000000000000000000001000000368500000100000036850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000358500000000000000000000000000000000000001000000358500000100000035850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000348500000000000000000000000000000000000001000000348500000100000034850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000338500000000000000000000000000000000000001000000338500000100000033850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000328500000000000000000000000000000000000001000000328500000100000032850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000318500000000000000000000000000000000000001000000318500000100000031850000000000000080000000000000FFFFFFFFFFFFFFFF000000002A010000340500002E0100000000000001000000040000000100000000000000000000002F85000000000000000000000000000000000000010000002F850000010000002F850000000000000080000001000000FFFFFFFFFFFFFFFF00000000DF01000034050000E30100000100000001000000040000000100000000000000000000002E85000000000000000000000000000000000000010000002E850000010000002E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002D85000000000000000000000000000000000000010000002D850000010000002D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002C85000000000000000000000000000000000000010000002C850000010000002C850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002B85000000000000000000000000000000000000010000002B850000010000002B850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002A85000000000000000000000000000000000000010000002A850000010000002A850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000298500000000000000000000000000000000000001000000298500000100000029850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000288500000000000000000000000000000000000001000000288500000100000028850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000278500000000000000000000000000000000000001000000278500000100000027850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000268500000000000000000000000000000000000001000000268500000100000026850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000258500000000000000000000000000000000000001000000258500000100000025850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000248500000000000000000000000000000000000001000000248500000100000024850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000238500000000000000000000000000000000000001000000238500000100000023850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000228500000000000000000000000000000000000001000000228500000100000022850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000218500000000000000000000000000000000000001000000218500000100000021850000000000000080000000000000FFFFFFFFFFFFFFFF00000000CF0100003E060000D3010000000000000100000004000000010000000000000000000000FFFFFFFF040000001D8500001E8500001F85000020850000FFFF02000B004354616262656450616E6500800000000000000608000022020000440E0000E302000000000000D30100003E06000094020000000000004080004604000000FFFEFF084D0065006D006F007200790020003100000000001D85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003200000000001E85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003300000000001F85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003400000000002085000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFF1D85000001000000FFFFFFFF1D850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001C85000000000000000000000000000000000000010000001C850000010000001C850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001B85000000000000000000000000000000000000010000001B850000010000001B850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001A85000000000000000000000000000000000000010000001A850000010000001A850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000198500000000000000000000000000000000000001000000198500000100000019850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000188500000000000000000000000000000000000001000000188500000100000018850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000178500000000000000000000000000000000000001000000178500000100000017850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000168500000000000000000000000000000000000001000000168500000100000016850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000128500000000000000000000000000000000000001000000128500000100000012850000000000000040000001000000FFFFFFFFFFFFFFFF34050000320000003805000094020000010000000200001004000000010000000000000000000000118500000000000000000000000000000000000001000000118500000100000011850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000E85000000000000000000000000000000000000010000000E850000010000000E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000B85000000000000000000000000000000000000010000000B850000010000000B850000000000000020000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000A85000000000000000000000000000000000000010000000A850000010000000A850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000098500000000000000000000000000000000000001000000098500000100000009850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000001000000FFFFFFFFFFFFFFFF00000000940200003E06000098020000010000000100001004000000010000000000000000000000FFFFFFFF08000000058500000885000010850000138500001485000015850000308500003D8500000180008000000100000006080000E7020000440E00009803000000000000980200003E06000049030000000000004080005608000000FFFEFF054200750069006C006400010000000585000001000000FFFFFFFFFFFFFFFFFFFEFF0E43004D005300490053002D005000610063006B0020004C006F006700000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000001085000001000000FFFFFFFFFFFFFFFFFFFEFF0C4400650063006C00610072006100740069006F006E007300000000001385000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000001485000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000001585000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000003085000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000003D85000001000000FFFFFFFFFFFFFFFF02000000000000000000000000000000000000000000000001000000FFFFFFFF0585000001000000FFFFFFFF05850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000048500000000000000000000000000000000000001000000048500000100000004850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000</DockingPaneAndPaneDividers>
+ </DockingManager-256>
+ <MFCToolBar-34048>
+ <Name>CMSIS-Pack</Name>
+ <Buttons>00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED1840000000000001E000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000</Buttons>
+ </MFCToolBar-34048>
+ <Pane-34048>
+ <ID>34048</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>F1030000000000001F0400001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>24</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34048>
+ <BasePane-34048>
+ <IsVisible>1</IsVisible>
+ </BasePane-34048>
+ <MFCToolBar-34049>
+ <Name>Debug</Name>
+ <Buttons>00200000010000000800FFFF01001100434D4643546F6F6C426172427574746F6E568600000000000033000000FFFEFF000000000000000000000000000100000001000000018013860000000000002F000000FFFEFF00000000000000000000000000010000000100000001805E8600000000000035000000FFFEFF0000000000000000000000000001000000010000000180608600000000000037000000FFFEFF00000000000000000000000000010000000100000001805D8600000000000034000000FFFEFF000000000000000000000000000100000001000000018010860000000000002D000000FFFEFF000000000000000000000000000100000001000000018011860000000004002E000000FFFEFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E148600000000000030000000FFFEFF205200650073006500740020007400680065002000640065006200750067006700650064002000700072006F006700720061006D000A00520065007300650074000000000000000000000000000100000001000000000000000000000001000000020009800000000000000400FFFFFFFFFFFEFF000000000000000000000000000100000001000000000000000000000001000000000009801986000000000000FFFFFFFFFFFEFF000100000000000000000000000100000001000000000000000000000001000000000000000000FFFEFF0544006500620075006700C6000000</Buttons>
+ </MFCToolBar-34049>
+ <Pane-34049>
+ <ID>34049</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>1503000000000000F10300001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>198</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34049>
+ <BasePane-34049>
+ <IsVisible>1</IsVisible>
+ </BasePane-34049>
+ <MFCToolBar-34050>
+ <Name>Main</Name>
+ <Buttons>00200000010000002100FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000065000000FFFEFF000000000000000000000000000100000001000000018001E100000000000066000000FFFEFF000000000000000000000000000100000001000000018003E100000000000068000000FFFEFF0000000000000000000000000001000000010000000180008100000000000049000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000000006B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004006D000000FFFEFF000000000000000000000000000100000001000000018022E10000000004006C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004006F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040072000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040073000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000000FFFFFFFFFFFEFF0001000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004005C000000FFFEFF000000000000000000000000000100000001000000018024E10000000000006E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040070000000FFFEFF000000000000000000000000000100000001000000018029E100000000000071000000FFFEFF000000000000000000000000000100000001000000018002810000000000004B000000FFFEFF0000000000000000000000000001000000010000000180298100000000000060000000FFFEFF000000000000000000000000000100000001000000018027810000000000005E000000FFFEFF000000000000000000000000000100000001000000018028810000000000005F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040058000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040059000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000000004F000000FFFEFF00000000000000000000000000010000000100000001800C8100000000000050000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000064000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001801F810000000000005A000000FFFEFF000000000000000000000000000100000001000000018020810000000000005B000000FFFEFF0000000000000000000000000001000000010000000180468100000000020062000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00FF020000</Buttons>
+ </MFCToolBar-34050>
+ <Pane-34050>
+ <ID>34050</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>0000000000000000150300001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34050>
+ <BasePane-34050>
+ <IsVisible>1</IsVisible>
+ </BasePane-34050>
+ </Desktop>
+ </WindowStorage>
+</Project>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dnx b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dnx
new file mode 100644
index 0000000..f12a115
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.dnx
@@ -0,0 +1,100 @@
+<?xml version="1.0"?>
+<settings>
+ <Stack>
+ <FillEnabled>0</FillEnabled>
+ <OverflowWarningsEnabled>1</OverflowWarningsEnabled>
+ <WarningThreshold>90</WarningThreshold>
+ <SpWarningsEnabled>1</SpWarningsEnabled>
+ <WarnLogOnly>1</WarnLogOnly>
+ <UseTrigger>1</UseTrigger>
+ <TriggerName>main</TriggerName>
+ <LimitSize>0</LimitSize>
+ <ByteLimit>50</ByteLimit>
+ </Stack>
+ <Trace1>
+ <Enabled>0</Enabled>
+ <ShowSource>1</ShowSource>
+ </Trace1>
+ <DebugChecksum>
+ <Checksum>3153441700</Checksum>
+ </DebugChecksum>
+ <Disassembly>
+ <InstrCount>0</InstrCount>
+ <MixedMode>1</MixedMode>
+ </Disassembly>
+ <CodeCoverage>
+ <Enabled>0</Enabled>
+ <ShowSource>0</ShowSource>
+ <HideCovered>0</HideCovered>
+ </CodeCoverage>
+ <Exceptions>
+ <StopOnUncaught>_ 0</StopOnUncaught>
+ <StopOnThrow>_ 0</StopOnThrow>
+ </Exceptions>
+ <CallStack>
+ <ShowArgs>0</ShowArgs>
+ </CallStack>
+ <DriverProfiling>
+ <Enabled>0</Enabled>
+ <Mode>1</Mode>
+ <Graph>0</Graph>
+ <Symbiont>0</Symbiont>
+ </DriverProfiling>
+ <CallStackLog>
+ <Enabled>0</Enabled>
+ </CallStackLog>
+ <CallStackStripe>
+ <ShowTiming>1</ShowTiming>
+ </CallStackStripe>
+ <TermIOLog>
+ <LoggingEnabled>_ 0</LoggingEnabled>
+ <LogFile>_ ""</LogFile>
+ </TermIOLog>
+ <LogFile>
+ <LoggingEnabled>_ 0</LoggingEnabled>
+ <LogFile>_ ""</LogFile>
+ <Category>_ 0</Category>
+ </LogFile>
+ <InterruptLog>
+ <LogEnabled>0</LogEnabled>
+ <GraphEnabled>0</GraphEnabled>
+ <ShowTimeLog>1</ShowTimeLog>
+ <SumEnabled>0</SumEnabled>
+ <ShowTimeSum>1</ShowTimeSum>
+ <SumSortOrder>0</SumSortOrder>
+ </InterruptLog>
+ <DataLog>
+ <LogEnabled>0</LogEnabled>
+ <GraphEnabled>0</GraphEnabled>
+ <ShowTimeLog>1</ShowTimeLog>
+ <SumEnabled>0</SumEnabled>
+ <ShowTimeSum>1</ShowTimeSum>
+ </DataLog>
+ <DisassembleMode>
+ <mode>0</mode>
+ </DisassembleMode>
+ <Breakpoints2>
+ <Count>0</Count>
+ </Breakpoints2>
+ <Interrupts>
+ <Enabled>1</Enabled>
+ <Irq0>_ 0 400000 0 10000 0 0 100 100 0 1 "SysTick 1 0x3C"</Irq0>
+ <Count>1</Count>
+ </Interrupts>
+ <MemConfig>
+ <Base>1</Base>
+ <Manual>0</Manual>
+ <Ddf>1</Ddf>
+ <TypeViol>0</TypeViol>
+ <Stop>1</Stop>
+ </MemConfig>
+ <Aliases>
+ <Count>0</Count>
+ <SuppressDialog>0</SuppressDialog>
+ </Aliases>
+ <Simulator>
+ <Freq>10000000</Freq>
+ <FreqHi>0</FreqHi>
+ <MultiCoreRunAll>1</MultiCoreRunAll>
+ </Simulator>
+</settings>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/Abstract.txt b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/Abstract.txt
new file mode 100644
index 0000000..be9b85a
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/Abstract.txt
@@ -0,0 +1,16 @@
+The MsgQueue project is a simple RTX Kernel based example
+for a simulated Cortex-M3 device
+
+Example functionality:
+ - Clock Settings:
+ - XTAL = 12 MHz
+ - Core = 12 MHz
+
+The simple RTX Kernel based example shows how to use a
+message queue to send data from one thread to another.
+The message receiver thread prints the message contents
+to the debug output window.
+
+The MsgQueue example program is available for one target:
+
+ Simulation: configured for a simulated on-chip Flash
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewd b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewd
new file mode 100644
index 0000000..d8cbd95
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewd
@@ -0,0 +1,2974 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <fileVersion>3</fileVersion>
+ <configuration>
+ <name>Debug</name>
+ <toolchain>
+ <name>ARM</name>
+ </toolchain>
+ <debug>1</debug>
+ <settings>
+ <name>C-SPY</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>32</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CInput</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CEndian</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCVariant</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>MemOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MemFile</name>
+ <state>${CMSIS_PACK_PATH_ARM#CMSIS#5.7.0-dev5}$\.iar\config\debugger\ARMCM3.ddf</state>
+ </option>
+ <option>
+ <name>RunToEnable</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RunToName</name>
+ <state>main</state>
+ </option>
+ <option>
+ <name>CExtraOptionsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CExtraOptions</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CFpuProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDDFArgumentProducer</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadSuppressDownload</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDownloadVerifyAll</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>OCDynDriverList</name>
+ <state>ARMSIM_ID</state>
+ </option>
+ <option>
+ <name>OCLastSavedByProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>UseFlashLoader</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CLowLevel</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCBE8Slave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>MacFile2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CDevice</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>FlashLoadersV3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OverrideDefFlashBoard</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesOffset1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesUse1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDeviceConfigMacroFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDebuggerExtraOption</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAllMTBOptions</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCores</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreWorkspace</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveProject</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveConfiguration</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadExtraImage</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAttachSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MassEraseBeforeFlashing</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCoresSlave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreAMPConfigType</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreSessionFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCTpiuBaseOption</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>ARMSIM_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCSimDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCSimEnablePSP</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspOverrideConfig</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspConfigFile</name>
+ <state></state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CADI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CCadiMemory</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>Fast Model</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCADILogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCADILogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CMSISDAP_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>4</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>CMSISDAPDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>
+ <option>
+ <name>CCCMSISDAPUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCMSISDAPUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>GDBSERVER_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJTagBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>IJET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>IjetHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>IjetHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>IjetPowerFromProbe</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetPowerRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>IjetInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetProtocolRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSwoPin</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetSwoPrescalerList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeCfgOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeConfig</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetProbeConfigRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUNumber</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSelectedCPUBehaviour</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>4</state>
+ </option>
+ <option>
+ <name>FlashBoardPathSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>JLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>16</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>JLinkSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCJLinkDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJLinkHWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>JLinkInitialSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCDoJlinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkCommRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>CCJLinkSpeedRadioV2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCUSBDevice</name>
+ <version>1</version>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCRDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkResetList</name>
+ <version>6</version>
+ <state>5</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCTcpIpAlt</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTcpIpSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSource</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSourceDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkDeviceName</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>LMIFTDI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>2</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>LmiftdiSpeed</name>
+ <state>500</state>
+ </option>
+ <option>
+ <name>CCLmiftdiDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCLmiftdiLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>NULINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>PEMICRO_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>3</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJPEMicroShowSettings</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>STLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>7</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkResetList</name>
+ <version>3</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCSTLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkJtagSpeedList</name>
+ <version>2</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkDAPNumber</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkDebugAccessPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUseServerSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkProbeList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>THIRDPARTY_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>CThirdPartyDriverDll</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>TIFET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVccTypeDefault</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CCMSPFetVCCDefault</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetSettlingtime</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioJtagSpeedType</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetConnection</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetUsbComPort</name>
+ <state>Automatic</state>
+ </option>
+ <option>
+ <name>CCMSPFetAllowAccessToBSL</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioEraseFlash</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>XDS100_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>1</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TIPackageOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>TIPackage</name>
+ <state></state>
+ </option>
+ <option>
+ <name>BoardFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCXds100BreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100DoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCXds100CatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockEdit</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCXds100HWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100JtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceRadio</name>
+ <state>2</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ProbeList</name>
+ <version>0</version>
+ <state>3</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPort</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVccEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>OCXDSDigitalStatesConfigFile</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <debuggerPlugins>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin</file>
+ <loadFlag>1</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ </debuggerPlugins>
+ </configuration>
+ <configuration>
+ <name>Release</name>
+ <toolchain>
+ <name>ARM</name>
+ </toolchain>
+ <debug>0</debug>
+ <settings>
+ <name>C-SPY</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>32</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CInput</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CEndian</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCVariant</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MacFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>MemOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MemFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>RunToEnable</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RunToName</name>
+ <state>main</state>
+ </option>
+ <option>
+ <name>CExtraOptionsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CExtraOptions</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CFpuProcessor</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDDFArgumentProducer</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadSuppressDownload</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDownloadVerifyAll</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProductVersion</name>
+ <state>8.50.1.24770</state>
+ </option>
+ <option>
+ <name>OCDynDriverList</name>
+ <state>ARMSIM_ID</state>
+ </option>
+ <option>
+ <name>OCLastSavedByProductVersion</name>
+ <state></state>
+ </option>
+ <option>
+ <name>UseFlashLoader</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CLowLevel</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCBE8Slave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>MacFile2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CDevice</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>FlashLoadersV3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesSuppressCheck3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesPath3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OverrideDefFlashBoard</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesOffset1</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset2</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesOffset3</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCImagesUse1</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCImagesUse3</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDeviceConfigMacroFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCDebuggerExtraOption</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAllMTBOptions</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCores</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreWorkspace</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveProject</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCMulticoreSlaveConfiguration</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCDownloadExtraImage</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCAttachSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>MassEraseBeforeFlashing</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreNrOfCoresSlave</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCMulticoreAMPConfigType</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCMulticoreSessionFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>OCTpiuBaseOption</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>ARMSIM_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCSimDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCSimEnablePSP</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspOverrideConfig</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCSimPspConfigFile</name>
+ <state></state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CADI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CCadiMemory</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>Fast Model</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCADILogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCADILogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>CMSISDAP_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>4</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>CMSISDAPHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>CMSISDAPDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CMSISDAPInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CMSISDAPMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>
+ <option>
+ <name>CCCMSISDAPUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCMSISDAPUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>GDBSERVER_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJTagBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJTagUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>IJET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>OCIarProbeScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetResetList</name>
+ <version>1</version>
+ <state>10</state>
+ </option>
+ <option>
+ <name>IjetHWResetDuration</name>
+ <state>300</state>
+ </option>
+ <option>
+ <name>IjetHWResetDelay</name>
+ <state>200</state>
+ </option>
+ <option>
+ <name>IjetPowerFromProbe</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetPowerRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>IjetInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>IjetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTargetEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetJtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetProtocolRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSwoPin</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetSwoPrescalerList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetRestoreBreakpointsCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetUpdateBreakpointsEdit</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>RDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchUndef</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchData</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchPrefetch</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>RDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>RDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CatchMMERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchNOCPERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchCHKERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSTATERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchBUSERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchINTERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchSFERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchHARDERR</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeCfgOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCProbeConfig</name>
+ <state></state>
+ </option>
+ <option>
+ <name>IjetProbeConfigRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetMultiCPUNumber</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>IjetSelectedCPUBehaviour</name>
+ <state>0</state>
+ </option>
+ <option>
+ <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>4</state>
+ </option>
+ <option>
+ <name>FlashBoardPathSlave</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCIjetUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>JLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>16</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>JLinkSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCJLinkDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCJLinkHWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>JLinkInitialSpeed</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCDoJlinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCScanChainNonARMDevices</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkMultiTarget</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkIRLength</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkCommRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTCPIP</name>
+ <state>aaa.bbb.ccc.ddd</state>
+ </option>
+ <option>
+ <name>CCJLinkSpeedRadioV2</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCUSBDevice</name>
+ <version>1</version>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCRDICatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCRDICatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkBreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkResetList</name>
+ <version>6</version>
+ <state>5</state>
+ </option>
+ <option>
+ <name>CCJLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkScriptFile</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCTcpIpAlt</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCJLinkTcpIpSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSource</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkTraceSourceDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>OCJLinkDeviceName</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>LMIFTDI_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>2</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>LmiftdiSpeed</name>
+ <state>500</state>
+ </option>
+ <option>
+ <name>CCLmiftdiDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCLmiftdiLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCLmiFtdiInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>NULINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>PEMICRO_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>3</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCJPEMicroShowSettings</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>STLINK_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>7</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceRadio</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSTLinkInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkResetList</name>
+ <version>3</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCCpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSwoClockAuto</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCSwoClockEdit</name>
+ <state>2000</state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCSTLinkDoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkCatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkUsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkJtagSpeedList</name>
+ <version>2</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkDAPNumber</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCSTLinkDebugAccessPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkUseServerSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCSTLinkProbeList</name>
+ <version>1</version>
+ <state>0</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>THIRDPARTY_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>0</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>CThirdPartyDriverDll</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileCheck</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CThirdPartyLogFileEditB</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>TIFET_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>1</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetInterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVccTypeDefault</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>CCMSPFetVCCDefault</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetTargetSettlingtime</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioJtagSpeedType</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCMSPFetConnection</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetUsbComPort</name>
+ <state>Automatic</state>
+ </option>
+ <option>
+ <name>CCMSPFetAllowAccessToBSL</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetDoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCMSPFetLogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCMSPFetRadioEraseFlash</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <settings>
+ <name>XDS100_ID</name>
+ <archiveVersion>2</archiveVersion>
+ <data>
+ <version>8</version>
+ <wantNonLocal>1</wantNonLocal>
+ <debug>0</debug>
+ <option>
+ <name>OCDriverInfo</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>TIPackageOverride</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>TIPackage</name>
+ <state></state>
+ </option>
+ <option>
+ <name>BoardFile</name>
+ <state></state>
+ </option>
+ <option>
+ <name>DoLogfile</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>LogFile</name>
+ <state>$PROJ_DIR$\cspycomm.log</state>
+ </option>
+ <option>
+ <name>CCXds100BreakpointRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100DoUpdateBreakpoints</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UpdateBreakpoints</name>
+ <state>_call_main</state>
+ </option>
+ <option>
+ <name>CCXds100CatchReset</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchUndef</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSWI</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchData</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchPrefetch</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchIRQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchFIQ</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCORERESET</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchMMERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchNOCPERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchCHRERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSTATERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchBUSERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchINTERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchSFERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchHARDERR</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CatchDummy</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100CpuClockEdit</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockAuto</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SwoClockEdit</name>
+ <state>1000</state>
+ </option>
+ <option>
+ <name>CCXds100HWResetDelay</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ResetList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNo</name>
+ <state></state>
+ </option>
+ <option>
+ <name>CCXds100UsbSerialNoSelect</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100JtagSpeedList</name>
+ <version>0</version>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceRadio</name>
+ <state>2</state>
+ </option>
+ <option>
+ <name>CCXds100InterfaceCmdLine</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100ProbeList</name>
+ <version>0</version>
+ <state>3</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPortRadio</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXds100SWOPort</name>
+ <state>1</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVccEnable</name>
+ <state>0</state>
+ </option>
+ <option>
+ <name>CCXDSTargetVoltage</name>
+ <state>###Uninitialized###</state>
+ </option>
+ <option>
+ <name>OCXDSDigitalStatesConfigFile</name>
+ <state>1</state>
+ </option>
+ </data>
+ </settings>
+ <debuggerPlugins>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\CMX\CmxTinyArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\FreeRtos\FreeRtosArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\HWRTOSplugin\HWRTOSplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\Mbed\MbedArmPlugin2.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\RemedyRtosViewer\RemedyRtosViewer.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SafeRTOS\SafeRTOSPlugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8b.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\SMX\smxAwareIarArm8bBE.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\TI-RTOS\tirtosplugin.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$TOOLKIT_DIR$\plugins\rtos\uCOS-III\uCOS-III-KA-CSpy.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\TargetAccessServer\TargetAccessServer.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ <plugin>
+ <file>$EW_DIR$\common\plugins\uCProbe\uCProbePlugin.ENU.ewplugin</file>
+ <loadFlag>0</loadFlag>
+ </plugin>
+ </debuggerPlugins>
+ </configuration>
+</project>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewp b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewp
new file mode 100644
index 0000000..ebc4e58
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/MsgQueue.ewp
Binary files differ
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.crun b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.crun
new file mode 100644
index 0000000..d71ea55
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.crun
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<crun>
+ <version>1</version>
+ <filter_entries>
+ <filter index="0" type="default">
+ <type>*</type>
+ <start_file>*</start_file>
+ <end_file>*</end_file>
+ <action_debugger>0</action_debugger>
+ <action_log>1</action_log>
+ </filter>
+ </filter_entries>
+</crun>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dbgdt b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dbgdt
new file mode 100644
index 0000000..55633b1
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dbgdt
@@ -0,0 +1,1196 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Project>
+ <WindowStorage>
+ <ChildIdMap>
+ <TB_CMSISPACK>34048</TB_CMSISPACK>
+ <TB_DEBUG>34049</TB_DEBUG>
+ <TB_MAIN2>34050</TB_MAIN2>
+ <WIN_AUTO>34051</WIN_AUTO>
+ <WIN_BREAKPOINTS>34052</WIN_BREAKPOINTS>
+ <WIN_BUILD>34053</WIN_BUILD>
+ <WIN_CALL_GRAPH>34054</WIN_CALL_GRAPH>
+ <WIN_CALL_STACK>34055</WIN_CALL_STACK>
+ <WIN_CMSISPACK_AGENT_LOG>34056</WIN_CMSISPACK_AGENT_LOG>
+ <WIN_CODECOVERAGE>34057</WIN_CODECOVERAGE>
+ <WIN_CORES>34058</WIN_CORES>
+ <WIN_CUSTOM_SFR>34059</WIN_CUSTOM_SFR>
+ <WIN_C_STAT>34060</WIN_C_STAT>
+ <WIN_DATA_LOG>34061</WIN_DATA_LOG>
+ <WIN_DATA_STAT>34062</WIN_DATA_STAT>
+ <WIN_DEBUGGER_MACROS>34063</WIN_DEBUGGER_MACROS>
+ <WIN_DEBUG_LOG>34064</WIN_DEBUG_LOG>
+ <WIN_DISASSEMBLY>34065</WIN_DISASSEMBLY>
+ <WIN_EXCEPTION_VIEWER>34066</WIN_EXCEPTION_VIEWER>
+ <WIN_FIND_ALL_DECLARATIONS>34067</WIN_FIND_ALL_DECLARATIONS>
+ <WIN_FIND_ALL_REFERENCES>34068</WIN_FIND_ALL_REFERENCES>
+ <WIN_FIND_IN_FILES>34069</WIN_FIND_IN_FILES>
+ <WIN_FIND_IN_SLIDING_TRACE>34070</WIN_FIND_IN_SLIDING_TRACE>
+ <WIN_IMAGES>34071</WIN_IMAGES>
+ <WIN_INTERRUPT_LOG>34072</WIN_INTERRUPT_LOG>
+ <WIN_INTERRUPT_STAT>34073</WIN_INTERRUPT_STAT>
+ <WIN_LOCALS>34074</WIN_LOCALS>
+ <WIN_MACRO_EVAL>34075</WIN_MACRO_EVAL>
+ <WIN_MACRO_REGISTRATION>34076</WIN_MACRO_REGISTRATION>
+ <WIN_MEMORY_1>34077</WIN_MEMORY_1>
+ <WIN_MEMORY_2>34078</WIN_MEMORY_2>
+ <WIN_MEMORY_3>34079</WIN_MEMORY_3>
+ <WIN_MEMORY_4>34080</WIN_MEMORY_4>
+ <WIN_PHYSICAL_BREAKPOINTS>34081</WIN_PHYSICAL_BREAKPOINTS>
+ <WIN_PROFILING2>34082</WIN_PROFILING2>
+ <WIN_QUICK_WATCH>34083</WIN_QUICK_WATCH>
+ <WIN_REGISTER_1>34084</WIN_REGISTER_1>
+ <WIN_REGISTER_2>34085</WIN_REGISTER_2>
+ <WIN_REGISTER_3>34086</WIN_REGISTER_3>
+ <WIN_REGISTER_4>34087</WIN_REGISTER_4>
+ <WIN_REGISTER_GROUPS>34088</WIN_REGISTER_GROUPS>
+ <WIN_RTOS_MBOX>34089</WIN_RTOS_MBOX>
+ <WIN_RTOS_MEMORYPOOL>34090</WIN_RTOS_MEMORYPOOL>
+ <WIN_RTOS_MUTEX>34091</WIN_RTOS_MUTEX>
+ <WIN_RTOS_QUEUE>34092</WIN_RTOS_QUEUE>
+ <WIN_RTOS_SEMAPHORE>34093</WIN_RTOS_SEMAPHORE>
+ <WIN_RTOS_TASK>34094</WIN_RTOS_TASK>
+ <WIN_RTOS_TIMER>34095</WIN_RTOS_TIMER>
+ <WIN_SELECT_AMBIGUOUS_DEFINITIONS>34096</WIN_SELECT_AMBIGUOUS_DEFINITIONS>
+ <WIN_SLIDING_FUNCTION_TRACE>34097</WIN_SLIDING_FUNCTION_TRACE>
+ <WIN_SLIDING_TRACE_WINDOW>34098</WIN_SLIDING_TRACE_WINDOW>
+ <WIN_SOURCEBROWSE_LOG>34099</WIN_SOURCEBROWSE_LOG>
+ <WIN_SOURCE_BROWSE2>34100</WIN_SOURCE_BROWSE2>
+ <WIN_STACK_1>34101</WIN_STACK_1>
+ <WIN_STACK_2>34102</WIN_STACK_2>
+ <WIN_STATICS>34103</WIN_STATICS>
+ <WIN_STATIC_WATCH>34104</WIN_STATIC_WATCH>
+ <WIN_SYMBOLIC_MEMORY>34105</WIN_SYMBOLIC_MEMORY>
+ <WIN_SYMBOLS>34106</WIN_SYMBOLS>
+ <WIN_TERM_IO>34107</WIN_TERM_IO>
+ <WIN_TIMELINE_GRAPH>34108</WIN_TIMELINE_GRAPH>
+ <WIN_TOOL_OUTPUT>34109</WIN_TOOL_OUTPUT>
+ <WIN_TS_INTERRUPT_AVAILABLE>34110</WIN_TS_INTERRUPT_AVAILABLE>
+ <WIN_TS_INTERRUPT_CONFIG>34111</WIN_TS_INTERRUPT_CONFIG>
+ <WIN_TS_INTERRUPT_STATUS>34112</WIN_TS_INTERRUPT_STATUS>
+ <WIN_WATCH_1>34113</WIN_WATCH_1>
+ <WIN_WATCH_2>34114</WIN_WATCH_2>
+ <WIN_WATCH_3>34115</WIN_WATCH_3>
+ <WIN_WATCH_4>34116</WIN_WATCH_4>
+ <WIN_WORKSPACE>34117</WIN_WORKSPACE>
+ </ChildIdMap>
+ <Desktop>
+ <IarPane-34048>
+ <ToolBarCmdIds>
+ <item>34001</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34048>
+ <IarPane-34049>
+ <ToolBarCmdIds>
+ <item>34390</item>
+ <item>34323</item>
+ <item>34398</item>
+ <item>34400</item>
+ <item>34397</item>
+ <item>34320</item>
+ <item>34321</item>
+ <item>34324</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34049>
+ <IarPane-34050>
+ <ToolBarCmdIds>
+ <item>57600</item>
+ <item>57601</item>
+ <item>57603</item>
+ <item>33024</item>
+ <item>0</item>
+ <item>57607</item>
+ <item>0</item>
+ <item>57635</item>
+ <item>57634</item>
+ <item>57637</item>
+ <item>0</item>
+ <item>57643</item>
+ <item>57644</item>
+ <item>0</item>
+ <item>33090</item>
+ <item>33057</item>
+ <item>57636</item>
+ <item>57640</item>
+ <item>57641</item>
+ <item>33026</item>
+ <item>33065</item>
+ <item>33063</item>
+ <item>33064</item>
+ <item>33053</item>
+ <item>33054</item>
+ <item>0</item>
+ <item>33035</item>
+ <item>33036</item>
+ <item>34399</item>
+ <item>0</item>
+ <item>33055</item>
+ <item>33056</item>
+ <item>33094</item>
+ <item>0</item>
+ </ToolBarCmdIds>
+ </IarPane-34050>
+ <IarPane-34065>
+ <col-names>
+ <item>Disassembly</item>
+ <item>_I0</item>
+ </col-names>
+ <col-widths>
+ <item>500</item>
+ <item>20</item>
+ </col-widths>
+ <DisasmHistory />
+ <ShowCodeCoverage>1</ShowCodeCoverage>
+ <ShowInstrProfiling>1</ShowInstrProfiling>
+ </IarPane-34065>
+ <ControlBarVersion>
+ <Major>14</Major>
+ <Minor>15</Minor>
+ </ControlBarVersion>
+ <MFCToolBarParameters>
+ <Tooltips>1</Tooltips>
+ <ShortcutKeys>1</ShortcutKeys>
+ <LargeIcons>0</LargeIcons>
+ <MenuAnimation>0</MenuAnimation>
+ <RecentlyUsedMenus>1</RecentlyUsedMenus>
+ <MenuShadows>1</MenuShadows>
+ <ShowAllMenusAfterDelay>1</ShowAllMenusAfterDelay>
+ <CommandsUsage>25000000B10040E10000010000002387000001000000028600000100000021DE000001000000048400000100000003DA0000010000002596000002000000298100000200000019800000020000001B8F00000100000057860000020000001386000001000000108600000700000020870000010000005684000001000000488100000100000001840000010000001581000008000000048100000100000027D500000100000000DA00000300000059920000010000002CE100000C0000002681000001000000F0800000010000003184000006000000128100000200000005B00000010000000D860000010000001F9600000100000029E1000001000000AF060000110000002392000001000000018100000C00000020920000010000000A8600000400000004E100000200000024B0000001000000539200000100000007DE0000010000000BDA000001000000D8840000010000005F86000002000000009000000100000002B0000001000000ED8000000100000020810000010000000F810000030000003F810000040000001D8100000A0000005E8400001B0000000C810000580000001D92000001000000078600000100000023E100000100000001E1000001000000EA8000000200000008DA00000100000026DE0000020000000D80000003000000D28400000300000059860000010000000DB0000001000000D18500000100000005DA00000100000003DC0000010000000684000001000000048600000100000009810000020000001682000001000000228700000100000001860000010000009A86000001000000019700000100000002DA00000100000000DC0000010000001A8F0000010000000384000003000000568600001100000024960000040000001781000009000000F28000000100000055840000020000001184000001000000778400000200000033840000010000002BE100002B00000007B00000010000000084000001000000148100000200000023D50000010000000DDA00000100000030840000040000004492000001000000EF8000000100000083860000010000000C860000010000000E8400000100000028E100000C0000000081000002000000EC800000010000000ADA000002000000ECFFFFFF0200000001B00000010000005E86000001000000098600000100000003E10000200000001A860000010000001F810000010000000E8100000B000000068600000100000007DA00000100000022E100000B0000000B8100000700000000E10000020000008E86000001000000E98000000200000002DC000001000000698600000100000004DA00000100000041E1000008000000588600000100000014860000010000000584000001000000D184000003000000198F0000010000002187000001000000009700000200000001DA000001000000F4800000010000002781000002000000058100000100000000860000010000005586000001000000118600000A000000239600000100000002840000040000001681000003000000DC8400000100000074860000020000000E860000010000001084000001000000328400000100000001E80000020000000281000001000000468100001200000024810000010000000CDA0000010000000B8600000100000021810000010000006086000017000000549200000100000003B000000100000044D5000001000000EE80000001000000A186000001000000D684000002000000198600000100000000B000000100000024E10000020000000A840000010000001E8100000200000002E1000001000000C3860000010000005D8600000200000008860000010000000D81000005000000EB80000003000000C08600000100000002DE0000020000000A81000004000000058600000100000006DA0000010000005C8400000100000007840000010000001686000001000000E880000003000000</CommandsUsage>
+ </MFCToolBarParameters>
+ <CommandManager>
+ <CommandsWithoutImages>1500FFFFFFFF838600005886000004DC000000DC000001DC000002DC000003DC00001E920000289200002992000024960000259600001F96000000DA000001DA000002DA000003DA000004DA000005DA000006DA0000</CommandsWithoutImages>
+ <MenuUserImages>1500578600001A000000599200002400000023920000000000001D920000130000009A86000018000000259200001B000000008400007800000044920000220000001F9200001F0000001A860000320000002D920000210000008E8600003B0000006986000038000000239600008800000055860000080000000E86000019000000C386000004000000A18600003C0000002C92000020000000C08600000C0000003787000003000000</MenuUserImages>
+ </CommandManager>
+ <Pane-59393>
+ <ID>0</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>00000000490300003E0600005C030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-59393>
+ <BasePane-59393>
+ <IsVisible>1</IsVisible>
+ </BasePane-59393>
+ <Pane-34051>
+ <ID>34051</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34051>
+ <BasePane-34051>
+ <IsVisible>0</IsVisible>
+ </BasePane-34051>
+ <IarPane-34051 />
+ <Pane-34052>
+ <ID>34052</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34052>
+ <BasePane-34052>
+ <IsVisible>0</IsVisible>
+ </BasePane-34052>
+ <Pane--1>
+ <ID>4294967295</ID>
+ <RectRecentFloat>0608000022020000440E0000E3020000</RectRecentFloat>
+ <RectRecentDocked>00000000D30100003E06000094020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane--1>
+ <BasePane--1>
+ <IsVisible>0</IsVisible>
+ </BasePane--1>
+ <Pane-34053>
+ <ID>34053</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34053>
+ <BasePane-34053>
+ <IsVisible>1</IsVisible>
+ </BasePane-34053>
+ <Pane-34056>
+ <ID>34056</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34056>
+ <BasePane-34056>
+ <IsVisible>0</IsVisible>
+ </BasePane-34056>
+ <Pane-34064>
+ <ID>34064</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A0600002F030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34064>
+ <BasePane-34064>
+ <IsVisible>1</IsVisible>
+ </BasePane-34064>
+ <Pane-34067>
+ <ID>34067</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34067>
+ <BasePane-34067>
+ <IsVisible>0</IsVisible>
+ </BasePane-34067>
+ <Pane-34068>
+ <ID>34068</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34068>
+ <BasePane-34068>
+ <IsVisible>0</IsVisible>
+ </BasePane-34068>
+ <Pane-34069>
+ <ID>34069</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34069>
+ <BasePane-34069>
+ <IsVisible>0</IsVisible>
+ </BasePane-34069>
+ <Pane-34096>
+ <ID>34096</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34096>
+ <BasePane-34096>
+ <IsVisible>0</IsVisible>
+ </BasePane-34096>
+ <Pane-34109>
+ <ID>34109</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>04000000D20200003A06000051030000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34109>
+ <BasePane-34109>
+ <IsVisible>0</IsVisible>
+ </BasePane-34109>
+ <Pane-34054>
+ <ID>34054</ID>
+ <RectRecentFloat>060800004F000000860A0000E0000000</RectRecentFloat>
+ <RectRecentDocked>00000000000000008002000091000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34054>
+ <BasePane-34054>
+ <IsVisible>0</IsVisible>
+ </BasePane-34054>
+ <Pane-34055>
+ <ID>34055</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34055>
+ <BasePane-34055>
+ <IsVisible>0</IsVisible>
+ </BasePane-34055>
+ <IarPane-34055 />
+ <Pane-34057>
+ <ID>34057</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34057>
+ <BasePane-34057>
+ <IsVisible>0</IsVisible>
+ </BasePane-34057>
+ <IarPane-34057 />
+ <Pane-34058>
+ <ID>34058</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34058>
+ <BasePane-34058>
+ <IsVisible>0</IsVisible>
+ </BasePane-34058>
+ <IarPane-34058 />
+ <Pane-34059>
+ <ID>34059</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34059>
+ <BasePane-34059>
+ <IsVisible>0</IsVisible>
+ </BasePane-34059>
+ <Pane-34060>
+ <ID>34060</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34060>
+ <BasePane-34060>
+ <IsVisible>0</IsVisible>
+ </BasePane-34060>
+ <Pane-34061>
+ <ID>34061</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34061>
+ <BasePane-34061>
+ <IsVisible>0</IsVisible>
+ </BasePane-34061>
+ <IarPane-34061 />
+ <Pane-34062>
+ <ID>34062</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34062>
+ <BasePane-34062>
+ <IsVisible>0</IsVisible>
+ </BasePane-34062>
+ <IarPane-34062 />
+ <Pane-34063>
+ <ID>34063</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34063>
+ <BasePane-34063>
+ <IsVisible>0</IsVisible>
+ </BasePane-34063>
+ <IarPane-34063 />
+ <Pane-34065>
+ <ID>34065</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>38050000320000003E060000B6020000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34065>
+ <BasePane-34065>
+ <IsVisible>1</IsVisible>
+ </BasePane-34065>
+ <Pane-34066>
+ <ID>34066</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34066>
+ <BasePane-34066>
+ <IsVisible>0</IsVisible>
+ </BasePane-34066>
+ <IarPane-34066 />
+ <Pane-34070>
+ <ID>34070</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34070>
+ <BasePane-34070>
+ <IsVisible>0</IsVisible>
+ </BasePane-34070>
+ <IarPane-34070 />
+ <Pane-34071>
+ <ID>34071</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34071>
+ <BasePane-34071>
+ <IsVisible>0</IsVisible>
+ </BasePane-34071>
+ <IarPane-34071 />
+ <Pane-34072>
+ <ID>34072</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34072>
+ <BasePane-34072>
+ <IsVisible>0</IsVisible>
+ </BasePane-34072>
+ <IarPane-34072 />
+ <Pane-34073>
+ <ID>34073</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34073>
+ <BasePane-34073>
+ <IsVisible>0</IsVisible>
+ </BasePane-34073>
+ <IarPane-34073 />
+ <Pane-34074>
+ <ID>34074</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34074>
+ <BasePane-34074>
+ <IsVisible>0</IsVisible>
+ </BasePane-34074>
+ <IarPane-34074 />
+ <Pane-34075>
+ <ID>34075</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34075>
+ <BasePane-34075>
+ <IsVisible>0</IsVisible>
+ </BasePane-34075>
+ <IarPane-34075 />
+ <Pane-34076>
+ <ID>34076</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34076>
+ <BasePane-34076>
+ <IsVisible>0</IsVisible>
+ </BasePane-34076>
+ <IarPane-34076 />
+ <Pane-34077>
+ <ID>34077</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34077>
+ <BasePane-34077>
+ <IsVisible>0</IsVisible>
+ </BasePane-34077>
+ <IarPane-34077 />
+ <Pane-34078>
+ <ID>34078</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34078>
+ <BasePane-34078>
+ <IsVisible>0</IsVisible>
+ </BasePane-34078>
+ <IarPane-34078 />
+ <Pane-34079>
+ <ID>34079</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34079>
+ <BasePane-34079>
+ <IsVisible>0</IsVisible>
+ </BasePane-34079>
+ <IarPane-34079 />
+ <Pane-34080>
+ <ID>34080</ID>
+ <RectRecentFloat>060800004F0000002809000010010000</RectRecentFloat>
+ <RectRecentDocked>04000000EB0100003A0600007A020000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34080>
+ <BasePane-34080>
+ <IsVisible>0</IsVisible>
+ </BasePane-34080>
+ <IarPane-34080 />
+ <Pane-34081>
+ <ID>34081</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34081>
+ <BasePane-34081>
+ <IsVisible>0</IsVisible>
+ </BasePane-34081>
+ <IarPane-34081 />
+ <Pane-34082>
+ <ID>34082</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34082>
+ <BasePane-34082>
+ <IsVisible>0</IsVisible>
+ </BasePane-34082>
+ <IarPane-34082 />
+ <Pane-34083>
+ <ID>34083</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34083>
+ <BasePane-34083>
+ <IsVisible>0</IsVisible>
+ </BasePane-34083>
+ <IarPane-34083 />
+ <Pane-34084>
+ <ID>34084</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34084>
+ <BasePane-34084>
+ <IsVisible>0</IsVisible>
+ </BasePane-34084>
+ <IarPane-34084 />
+ <Pane-34085>
+ <ID>34085</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34085>
+ <BasePane-34085>
+ <IsVisible>0</IsVisible>
+ </BasePane-34085>
+ <IarPane-34085 />
+ <Pane-34086>
+ <ID>34086</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34086>
+ <BasePane-34086>
+ <IsVisible>0</IsVisible>
+ </BasePane-34086>
+ <IarPane-34086 />
+ <Pane-34087>
+ <ID>34087</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34087>
+ <BasePane-34087>
+ <IsVisible>0</IsVisible>
+ </BasePane-34087>
+ <IarPane-34087 />
+ <Pane-34088>
+ <ID>34088</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34088>
+ <BasePane-34088>
+ <IsVisible>0</IsVisible>
+ </BasePane-34088>
+ <IarPane-34088 />
+ <Pane-34089>
+ <ID>34089</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34089>
+ <BasePane-34089>
+ <IsVisible>0</IsVisible>
+ </BasePane-34089>
+ <IarPane-34089 />
+ <Pane-34090>
+ <ID>34090</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34090>
+ <BasePane-34090>
+ <IsVisible>0</IsVisible>
+ </BasePane-34090>
+ <IarPane-34090 />
+ <Pane-34091>
+ <ID>34091</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34091>
+ <BasePane-34091>
+ <IsVisible>0</IsVisible>
+ </BasePane-34091>
+ <IarPane-34091 />
+ <Pane-34092>
+ <ID>34092</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34092>
+ <BasePane-34092>
+ <IsVisible>0</IsVisible>
+ </BasePane-34092>
+ <IarPane-34092 />
+ <Pane-34093>
+ <ID>34093</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34093>
+ <BasePane-34093>
+ <IsVisible>0</IsVisible>
+ </BasePane-34093>
+ <IarPane-34093 />
+ <Pane-34094>
+ <ID>34094</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000502000034050000B6020000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34094>
+ <BasePane-34094>
+ <IsVisible>1</IsVisible>
+ </BasePane-34094>
+ <IarPane-34094>
+ <col-names>
+ <item>ID</item>
+ <item>Name</item>
+ <item>Priority</item>
+ <item>Stack End</item>
+ <item>Stack Ptr</item>
+ <item>Stack Size</item>
+ <item>Stack Start</item>
+ <item>State</item>
+ </col-names>
+ <col-widths>
+ <item>125</item>
+ <item>100</item>
+ <item>65</item>
+ <item>125</item>
+ <item>125</item>
+ <item>75</item>
+ <item>125</item>
+ <item>100</item>
+ </col-widths>
+ </IarPane-34094>
+ <Pane-34095>
+ <ID>34095</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34095>
+ <BasePane-34095>
+ <IsVisible>0</IsVisible>
+ </BasePane-34095>
+ <IarPane-34095 />
+ <Pane-34097>
+ <ID>34097</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34097>
+ <BasePane-34097>
+ <IsVisible>0</IsVisible>
+ </BasePane-34097>
+ <IarPane-34097 />
+ <Pane-34098>
+ <ID>34098</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34098>
+ <BasePane-34098>
+ <IsVisible>0</IsVisible>
+ </BasePane-34098>
+ <IarPane-34098 />
+ <Pane-34099>
+ <ID>34099</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34099>
+ <BasePane-34099>
+ <IsVisible>0</IsVisible>
+ </BasePane-34099>
+ <Pane-34100>
+ <ID>34100</ID>
+ <RectRecentFloat>060800004F000000860A0000E0000000</RectRecentFloat>
+ <RectRecentDocked>00000000000000008002000091000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34100>
+ <BasePane-34100>
+ <IsVisible>0</IsVisible>
+ </BasePane-34100>
+ <Pane-34101>
+ <ID>34101</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34101>
+ <BasePane-34101>
+ <IsVisible>0</IsVisible>
+ </BasePane-34101>
+ <IarPane-34101 />
+ <Pane-34102>
+ <ID>34102</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34102>
+ <BasePane-34102>
+ <IsVisible>0</IsVisible>
+ </BasePane-34102>
+ <IarPane-34102 />
+ <Pane-34103>
+ <ID>34103</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34103>
+ <BasePane-34103>
+ <IsVisible>0</IsVisible>
+ </BasePane-34103>
+ <IarPane-34103 />
+ <Pane-34104>
+ <ID>34104</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34104>
+ <BasePane-34104>
+ <IsVisible>0</IsVisible>
+ </BasePane-34104>
+ <IarPane-34104 />
+ <Pane-34105>
+ <ID>34105</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34105>
+ <BasePane-34105>
+ <IsVisible>0</IsVisible>
+ </BasePane-34105>
+ <IarPane-34105 />
+ <Pane-34106>
+ <ID>34106</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34106>
+ <BasePane-34106>
+ <IsVisible>0</IsVisible>
+ </BasePane-34106>
+ <IarPane-34106 />
+ <Pane-34107>
+ <ID>34107</ID>
+ <RectRecentFloat>060800004F000000B409000010010000</RectRecentFloat>
+ <RectRecentDocked>86030000320000003405000001020000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34107>
+ <BasePane-34107>
+ <IsVisible>1</IsVisible>
+ </BasePane-34107>
+ <IarPane-34107>
+ <InputSource>1</InputSource>
+ <InputMode>10</InputMode>
+ <Filename>$PROJ_DIR$\TermIOInput.txt</Filename>
+ <InputEcho>1</InputEcho>
+ <ShowReset>0</ShowReset>
+ <InputEncoding>2</InputEncoding>
+ <OutputEncoding>2</OutputEncoding>
+ </IarPane-34107>
+ <Pane-34108>
+ <ID>34108</ID>
+ <RectRecentFloat>060800004F000000B409000010010000</RectRecentFloat>
+ <RectRecentDocked>0000000000000000AE010000C1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34108>
+ <BasePane-34108>
+ <IsVisible>0</IsVisible>
+ </BasePane-34108>
+ <IarPane-34108 />
+ <Pane-34110>
+ <ID>34110</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34110>
+ <BasePane-34110>
+ <IsVisible>0</IsVisible>
+ </BasePane-34110>
+ <Pane-34111>
+ <ID>34111</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>00000000BC0100008203000001020000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34111>
+ <BasePane-34111>
+ <IsVisible>1</IsVisible>
+ </BasePane-34111>
+ <Pane-34112>
+ <ID>34112</ID>
+ <RectRecentFloat>060800004F0000002809000000010000</RectRecentFloat>
+ <RectRecentDocked>000000000000000022010000B1000000</RectRecentDocked>
+ <RecentFrameAlignment>32768</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34112>
+ <BasePane-34112>
+ <IsVisible>0</IsVisible>
+ </BasePane-34112>
+ <IarPane-34112 />
+ <Pane-34113>
+ <ID>34113</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34113>
+ <BasePane-34113>
+ <IsVisible>0</IsVisible>
+ </BasePane-34113>
+ <IarPane-34113 />
+ <Pane-34114>
+ <ID>34114</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34114>
+ <BasePane-34114>
+ <IsVisible>0</IsVisible>
+ </BasePane-34114>
+ <IarPane-34114 />
+ <Pane-34115>
+ <ID>34115</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34115>
+ <BasePane-34115>
+ <IsVisible>0</IsVisible>
+ </BasePane-34115>
+ <IarPane-34115 />
+ <Pane-34116>
+ <ID>34116</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>00000000000000000601000061010000</RectRecentDocked>
+ <RecentFrameAlignment>16384</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34116>
+ <BasePane-34116>
+ <IsVisible>0</IsVisible>
+ </BasePane-34116>
+ <IarPane-34116 />
+ <Pane-34117>
+ <ID>34117</ID>
+ <RectRecentFloat>060800004F0000000C090000B0010000</RectRecentFloat>
+ <RectRecentDocked>000000003200000006010000B8010000</RectRecentDocked>
+ <RecentFrameAlignment>4096</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>32767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34117>
+ <BasePane-34117>
+ <IsVisible>1</IsVisible>
+ </BasePane-34117>
+ <DockingManager-256>
+ <DockingPaneAndPaneDividers>0000000072000000000000000010000001000000FFFFFFFFFFFFFFFF06010000320000000A010000B8010000010000000200001004000000010000000000000000000000458500000000000000000000000000000000000001000000458500000100000045850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000448500000000000000000000000000000000000001000000448500000100000044850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000438500000000000000000000000000000000000001000000438500000100000043850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000428500000000000000000000000000000000000001000000428500000100000042850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000418500000000000000000000000000000000000001000000418500000100000041850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000408500000000000000000000000000000000000001000000408500000100000040850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B801000082030000BC010000010000000100000004000000010000000DFFFFFF6F0000003F85000000000000000000000000000000000000010000003F850000010000003F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000003E85000000000000000000000000000000000000010000003E850000010000003E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000003C85000000000000000000000000000000000000010000003C850000010000003C850000000000000040000001000000FFFFFFFFFFFFFFFF820300003200000086030000010200000100000002000000040000000100000000000000000000003B85000000000000000000000000000000000000010000003B850000010000003B850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000003A85000000000000000000000000000000000000010000003A850000010000003A850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000398500000000000000000000000000000000000001000000398500000100000039850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000388500000000000000000000000000000000000001000000388500000100000038850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000378500000000000000000000000000000000000001000000378500000100000037850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000368500000000000000000000000000000000000001000000368500000100000036850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000358500000000000000000000000000000000000001000000358500000100000035850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000348500000000000000000000000000000000000001000000348500000100000034850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000338500000000000000000000000000000000000001000000338500000100000033850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000328500000000000000000000000000000000000001000000328500000100000032850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000318500000000000000000000000000000000000001000000318500000100000031850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002F85000000000000000000000000000000000000010000002F850000010000002F850000000000000080000001000000FFFFFFFFFFFFFFFF000000000102000034050000050200000100000001000000040000000100000000000000000000002E85000000000000000000000000000000000000010000002E850000010000002E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002D85000000000000000000000000000000000000010000002D850000010000002D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002C85000000000000000000000000000000000000010000002C850000010000002C850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002B85000000000000000000000000000000000000010000002B850000010000002B850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000002A85000000000000000000000000000000000000010000002A850000010000002A850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000298500000000000000000000000000000000000001000000298500000100000029850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000288500000000000000000000000000000000000001000000288500000100000028850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000278500000000000000000000000000000000000001000000278500000100000027850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000268500000000000000000000000000000000000001000000268500000100000026850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000258500000000000000000000000000000000000001000000258500000100000025850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000248500000000000000000000000000000000000001000000248500000100000024850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000238500000000000000000000000000000000000001000000238500000100000023850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000228500000000000000000000000000000000000001000000228500000100000022850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000218500000000000000000000000000000000000001000000218500000100000021850000000000000080000000000000FFFFFFFFFFFFFFFF00000000CF0100003E060000D3010000000000000100000004000000010000000000000000000000FFFFFFFF040000001D8500001E8500001F85000020850000FFFF02000B004354616262656450616E6500800000000000000608000022020000440E0000E302000000000000D30100003E06000094020000000000004080004604000000FFFEFF084D0065006D006F007200790020003100000000001D85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003200000000001E85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003300000000001F85000001000000FFFFFFFFFFFFFFFFFFFEFF084D0065006D006F007200790020003400000000002085000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFF1D85000001000000FFFFFFFF1D850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001C85000000000000000000000000000000000000010000001C850000010000001C850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001B85000000000000000000000000000000000000010000001B850000010000001B850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000001A85000000000000000000000000000000000000010000001A850000010000001A850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000198500000000000000000000000000000000000001000000198500000100000019850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000188500000000000000000000000000000000000001000000188500000100000018850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000178500000000000000000000000000000000000001000000178500000100000017850000000000000020000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000168500000000000000000000000000000000000001000000168500000100000016850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000128500000000000000000000000000000000000001000000128500000100000012850000000000000040000001000000FFFFFFFFFFFFFFFF340500003200000038050000B6020000010000000200001004000000010000000000000000000000118500000000000000000000000000000000000001000000118500000100000011850000000000000040000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000002000000040000000100000000000000000000000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000E85000000000000000000000000000000000000010000000E850000010000000E850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000B85000000000000000000000000000000000000010000000B850000010000000B850000000000000020000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000A85000000000000000000000000000000000000010000000A850000010000000A850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000098500000000000000000000000000000000000001000000098500000100000009850000000000000010000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B60200003E060000BA02000001000000010000100400000001000000A3FDFFFF6F000000FFFFFFFF08000000058500000885000010850000138500001485000015850000308500003D8500000180008000000100000006080000E7020000440E00009803000000000000BA0200003E06000049030000000000004080005608000000FFFEFF054200750069006C006400010000000585000001000000FFFFFFFFFFFFFFFFFFFEFF0E43004D005300490053002D005000610063006B0020004C006F006700000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000001085000001000000FFFFFFFFFFFFFFFFFFFEFF0C4400650063006C00610072006100740069006F006E007300000000001385000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000001485000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000001585000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000003085000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000003D85000001000000FFFFFFFFFFFFFFFF02000000000000000000000000000000000000000000000001000000FFFFFFFF0585000001000000FFFFFFFF05850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000048500000000000000000000000000000000000001000000048500000100000004850000000000000040000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000200000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000</DockingPaneAndPaneDividers>
+ </DockingManager-256>
+ <MFCToolBar-34048>
+ <Name>CMSIS-Pack</Name>
+ <Buttons>00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED1840000000000001E000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000</Buttons>
+ </MFCToolBar-34048>
+ <Pane-34048>
+ <ID>34048</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>F1030000000000001F0400001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>24</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34048>
+ <BasePane-34048>
+ <IsVisible>1</IsVisible>
+ </BasePane-34048>
+ <MFCToolBar-34049>
+ <Name>Debug</Name>
+ <Buttons>00200000010000000800FFFF01001100434D4643546F6F6C426172427574746F6E568600000000000033000000FFFEFF000000000000000000000000000100000001000000018013860000000000002F000000FFFEFF00000000000000000000000000010000000100000001805E8600000000000035000000FFFEFF0000000000000000000000000001000000010000000180608600000000000037000000FFFEFF00000000000000000000000000010000000100000001805D8600000000040034000000FFFEFF000000000000000000000000000100000001000000018010860000000000002D000000FFFEFF000000000000000000000000000100000001000000018011860000000004002E000000FFFEFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E148600000000000030000000FFFEFF205200650073006500740020007400680065002000640065006200750067006700650064002000700072006F006700720061006D000A00520065007300650074000000000000000000000000000100000001000000000000000000000001000000020009800000000000000400FFFFFFFFFFFEFF000000000000000000000000000100000001000000000000000000000001000000000009801986000000000000FFFFFFFFFFFEFF000100000000000000000000000100000001000000000000000000000001000000000000000000FFFEFF0544006500620075006700C6000000</Buttons>
+ </MFCToolBar-34049>
+ <Pane-34049>
+ <ID>34049</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>1503000000000000F10300001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>198</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34049>
+ <BasePane-34049>
+ <IsVisible>1</IsVisible>
+ </BasePane-34049>
+ <MFCToolBar-34050>
+ <Name>Main</Name>
+ <Buttons>00200000010000002100FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000065000000FFFEFF000000000000000000000000000100000001000000018001E100000000000066000000FFFEFF000000000000000000000000000100000001000000018003E100000000040068000000FFFEFF0000000000000000000000000001000000010000000180008100000000000049000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004006B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004006D000000FFFEFF000000000000000000000000000100000001000000018022E10000000004006C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004006F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040072000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040073000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000400FFFFFFFFFFFEFF0001000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004005C000000FFFEFF000000000000000000000000000100000001000000018024E10000000004006E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040070000000FFFEFF000000000000000000000000000100000001000000018029E100000000040071000000FFFEFF000000000000000000000000000100000001000000018002810000000004004B000000FFFEFF0000000000000000000000000001000000010000000180298100000000040060000000FFFEFF000000000000000000000000000100000001000000018027810000000004005E000000FFFEFF000000000000000000000000000100000001000000018028810000000004005F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040058000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040059000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000000004F000000FFFEFF00000000000000000000000000010000000100000001800C8100000000000050000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000064000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001801F810000000000005A000000FFFEFF000000000000000000000000000100000001000000018020810000000000005B000000FFFEFF0000000000000000000000000001000000010000000180468100000000020062000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00FF020000</Buttons>
+ </MFCToolBar-34050>
+ <Pane-34050>
+ <ID>34050</ID>
+ <RectRecentFloat>0A0000000A0000006E0000006E000000</RectRecentFloat>
+ <RectRecentDocked>0000000000000000150300001A000000</RectRecentDocked>
+ <RecentFrameAlignment>8192</RecentFrameAlignment>
+ <RecentRowIndex>0</RecentRowIndex>
+ <IsFloating>0</IsFloating>
+ <MRUWidth>767</MRUWidth>
+ <PinState>0</PinState>
+ </Pane-34050>
+ <BasePane-34050>
+ <IsVisible>1</IsVisible>
+ </BasePane-34050>
+ </Desktop>
+ </WindowStorage>
+</Project>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dnx b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dnx
new file mode 100644
index 0000000..6b3619c
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.dnx
@@ -0,0 +1,100 @@
+<?xml version="1.0"?>
+<settings>
+ <Stack>
+ <FillEnabled>0</FillEnabled>
+ <OverflowWarningsEnabled>1</OverflowWarningsEnabled>
+ <WarningThreshold>90</WarningThreshold>
+ <SpWarningsEnabled>1</SpWarningsEnabled>
+ <WarnLogOnly>1</WarnLogOnly>
+ <UseTrigger>1</UseTrigger>
+ <TriggerName>main</TriggerName>
+ <LimitSize>0</LimitSize>
+ <ByteLimit>50</ByteLimit>
+ </Stack>
+ <Trace1>
+ <Enabled>0</Enabled>
+ <ShowSource>1</ShowSource>
+ </Trace1>
+ <DebugChecksum>
+ <Checksum>2135918346</Checksum>
+ </DebugChecksum>
+ <Disassembly>
+ <InstrCount>0</InstrCount>
+ <MixedMode>1</MixedMode>
+ </Disassembly>
+ <CodeCoverage>
+ <Enabled>0</Enabled>
+ <ShowSource>0</ShowSource>
+ <HideCovered>0</HideCovered>
+ </CodeCoverage>
+ <Exceptions>
+ <StopOnUncaught>_ 0</StopOnUncaught>
+ <StopOnThrow>_ 0</StopOnThrow>
+ </Exceptions>
+ <CallStack>
+ <ShowArgs>0</ShowArgs>
+ </CallStack>
+ <DriverProfiling>
+ <Enabled>0</Enabled>
+ <Mode>1</Mode>
+ <Graph>0</Graph>
+ <Symbiont>0</Symbiont>
+ </DriverProfiling>
+ <CallStackLog>
+ <Enabled>0</Enabled>
+ </CallStackLog>
+ <CallStackStripe>
+ <ShowTiming>1</ShowTiming>
+ </CallStackStripe>
+ <TermIOLog>
+ <LoggingEnabled>_ 0</LoggingEnabled>
+ <LogFile>_ ""</LogFile>
+ </TermIOLog>
+ <LogFile>
+ <LoggingEnabled>_ 0</LoggingEnabled>
+ <LogFile>_ ""</LogFile>
+ <Category>_ 0</Category>
+ </LogFile>
+ <InterruptLog>
+ <LogEnabled>0</LogEnabled>
+ <GraphEnabled>0</GraphEnabled>
+ <ShowTimeLog>1</ShowTimeLog>
+ <SumEnabled>0</SumEnabled>
+ <ShowTimeSum>1</ShowTimeSum>
+ <SumSortOrder>0</SumSortOrder>
+ </InterruptLog>
+ <DataLog>
+ <LogEnabled>0</LogEnabled>
+ <GraphEnabled>0</GraphEnabled>
+ <ShowTimeLog>1</ShowTimeLog>
+ <SumEnabled>0</SumEnabled>
+ <ShowTimeSum>1</ShowTimeSum>
+ </DataLog>
+ <DisassembleMode>
+ <mode>0</mode>
+ </DisassembleMode>
+ <Breakpoints2>
+ <Count>0</Count>
+ </Breakpoints2>
+ <Interrupts>
+ <Enabled>1</Enabled>
+ <Irq0>_ 0 400000 0 10000 0 0 100 100 0 1 "SysTick 1 0x3C"</Irq0>
+ <Count>1</Count>
+ </Interrupts>
+ <MemConfig>
+ <Base>1</Base>
+ <Manual>0</Manual>
+ <Ddf>1</Ddf>
+ <TypeViol>0</TypeViol>
+ <Stop>1</Stop>
+ </MemConfig>
+ <Aliases>
+ <Count>0</Count>
+ <SuppressDialog>0</SuppressDialog>
+ </Aliases>
+ <Simulator>
+ <Freq>10000000</Freq>
+ <FreqHi>0</FreqHi>
+ <MultiCoreRunAll>1</MultiCoreRunAll>
+ </Simulator>
+</settings>
diff --git a/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/main.c b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/main.c
new file mode 100644
index 0000000..0052382
--- /dev/null
+++ b/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/main.c
@@ -0,0 +1,120 @@
+/* --------------------------------------------------------------------------
+ * Copyright (c) 2013-2019 ARM Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the License); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Name: main.c
+ * Purpose: RTX example program
+ *
+ *---------------------------------------------------------------------------*/
+
+#include <stdio.h>
+
+#include "RTE_Components.h"
+#include CMSIS_device_header
+#include "cmsis_os2.h"
+
+void app_main (void *argument);
+void app_msg (void *argument);
+
+typedef struct msg_s {
+ uint8_t cmd;
+ uint8_t len;
+ uint8_t data[8];
+} msg_t;
+
+static osMessageQueueId_t msgQueue;
+
+static const osThreadAttr_t msgAttr = {
+ .stack_size = 400U
+};
+
+/*----------------------------------------------------------------------------
+ * Application main thread
+ *---------------------------------------------------------------------------*/
+
+void app_main (void *argument) {
+ (void)argument;
+
+ osStatus_t status;
+ uint32_t cnt = 0UL;
+ msg_t msg = {
+ .cmd = 1U,
+ .len = 4U,
+ .data = { 0U }
+ };
+
+ while (1) {
+ // Produce a new message and put it to the queue
+ ++cnt;
+ *((uint32_t*)msg.data) = cnt;
+ status = osMessageQueuePut(msgQueue, &msg, 0U, osWaitForever);
+ if (status != osOK) {
+ printf("app_main: osMessageQueuePut failed.\n");
+ }
+
+ // Defer message creation
+ osDelay(osMessageQueueGetCount(msgQueue)*100U);
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Application message receiver thread
+ *---------------------------------------------------------------------------*/
+
+void app_msg (void *argument) {
+ (void)argument;
+
+ osStatus_t status;
+ uint32_t cnt;
+ msg_t msg;
+
+ while (1) {
+ // Defer message processing
+ osDelay(osMessageQueueGetSpace(msgQueue)*100U);
+
+ // Wait forever until a message could be received
+ status = osMessageQueueGet(msgQueue, &msg, NULL, osWaitForever);
+ if (status != osOK) {
+ printf("app_msg: osMessageQueueGet failed.\n");
+ } else {
+ if (msg.len == 4U) {
+ cnt = *((uint32_t*)msg.data);
+ }
+ printf("app_msg: received [cmd = %d, data = 0x%0X]\n", msg.cmd, cnt);
+ }
+ }
+}
+
+/*----------------------------------------------------------------------------
+ * Main entry
+ *---------------------------------------------------------------------------*/
+
+int main (void) {
+
+ // System Initialization
+ SystemCoreClockUpdate();
+
+ osKernelInitialize(); // Initialize CMSIS-RTOS
+
+ osThreadNew(app_main, NULL, NULL); // Create application main thread
+ osThreadNew(app_msg, NULL, &msgAttr); // Create message receiver thread
+
+ // Create message queue for up to 10 messages of type msg_t
+ msgQueue = osMessageQueueNew(10, sizeof(msg_t), NULL);
+
+ osKernelStart(); // Start thread execution
+ for (;;) {}
+}