]> git.sur5r.net Git - freertos/commitdiff
Replace the hard coded interrupt priorities with the configKERNEL_INTERRUPT_PRIORITY...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 23 Sep 2010 13:39:45 +0000 (13:39 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 23 Sep 2010 13:39:45 +0000 (13:39 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1131 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/RX600_RX62N-RDK_IAR/FreeRTOSConfig.h
Demo/RX600_RX62N-RDK_IAR/PriorityDefinitions.h [new file with mode: 0644]
Demo/RX600_RX62N-RDK_IAR/RTOSDemo.dep
Demo/RX600_RX62N-RDK_IAR/RTOSDemo.ewp
Demo/RX600_RX62N-RDK_IAR/settings/RTOSDemo.dni
Demo/RX600_RX62N-RDK_IAR/settings/RTOSDemo.wsdt
Demo/RX600_RX62N-RSK_IAR/FreeRTOSConfig.h
Demo/RX600_RX62N-RSK_IAR/PriorityDefinitions.h [new file with mode: 0644]
Demo/RX600_RX62N-RSK_IAR/RTOSDemo.ewp
Demo/RX600_RX62N-RSK_IAR/settings/RTOSDemo.dni
Demo/RX600_RX62N-RSK_IAR/settings/RTOSDemo.wsdt

index 739bd23e52f1e6dbc214685233d4b3f22f1ee32f..4c8b37a9a91d1564d61b7a650e5f4ba9b7295e53 100644 (file)
 #define configMAX_PRIORITIES                   ( ( unsigned portBASE_TYPE ) 7 )\r
 #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )\r
 \r
-/* The interrupt priority used by the kernel itself for the tick interrupt and\r
-the pended interrupt.  This would normally be the lowest priority. */\r
-#define configKERNEL_INTERRUPT_PRIORITY         1\r
-\r
-/* The maximum interrupt priority from which FreeRTOS API calls can be made.\r
-Interrupts that use a priority above this will not be effected by anything the\r
-kernel is doing. */\r
-#define configMAX_SYSCALL_INTERRUPT_PRIORITY    4\r
+\r
+/* \r
+The interrupt priority used by the kernel itself for the tick interrupt and\r
+the pended interrupt is set by configKERNEL_INTERRUPT_PRIORITY.  This would \r
+normally be the lowest priority (1 in this case).  The maximum interrupt \r
+priority from which FreeRTOS API calls can be made is set by\r
+configMAX_SYSCALL_INTERRUPT_PRIORITY.  Interrupts that use a priority above this \r
+will not be effected by anything the kernel is doing.  Interrupts at or below\r
+this priority can use FreeRTOS API functions - but *only* those that end in\r
+"FromISR".  Both these constants are defined in 'PriorityDefinitions.h' so they\r
+can also be included in assembly source files.\r
+*/\r
+#include "PriorityDefinitions.h"\r
+\r
 \r
 /* The peripheral used to generate the tick interrupt is configured as part of\r
 the application code.  This constant should be set to the vector number of the\r
diff --git a/Demo/RX600_RX62N-RDK_IAR/PriorityDefinitions.h b/Demo/RX600_RX62N-RDK_IAR/PriorityDefinitions.h
new file mode 100644 (file)
index 0000000..5a0f451
--- /dev/null
@@ -0,0 +1,67 @@
+/*\r
+    FreeRTOS V6.0.6 rc1 - Copyright (C) 2010 Real Time Engineers Ltd.\r
+\r
+    ***************************************************************************\r
+    *                                                                         *\r
+    * If you are:                                                             *\r
+    *                                                                         *\r
+    *    + New to FreeRTOS,                                                   *\r
+    *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
+    *    + Looking for basic training,                                        *\r
+    *    + Wanting to improve your FreeRTOS skills and productivity           *\r
+    *                                                                         *\r
+    * then take a look at the FreeRTOS eBooks and paperbacks                  *\r
+    *                                                                         *\r
+    *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
+    *                  http://www.FreeRTOS.org/Documentation                  *\r
+    *                                                                         *\r
+    * A pdf reference manual is also available.  Both are usually delivered   *\r
+    * to your inbox within 20 minutes to two hours when purchased between 8am *\r
+    * and 8pm GMT (although please allow up to 24 hours in case of            *\r
+    * exceptional circumstances).  Thank you for your support!                *\r
+    *                                                                         *\r
+    ***************************************************************************\r
+\r
+    This file is part of the FreeRTOS distribution.\r
+\r
+    FreeRTOS is free software; you can redistribute it and/or modify it under\r
+    the terms of the GNU General Public License (version 2) as published by the\r
+    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
+    ***NOTE*** The exception to the GPL is included to allow you to distribute\r
+    a combined work that includes FreeRTOS without being obliged to provide the\r
+    source code for proprietary components outside of the FreeRTOS kernel.\r
+    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
+    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
+    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
+    more details. You should have received a copy of the GNU General Public\r
+    License and the FreeRTOS license exception along with FreeRTOS; if not it\r
+    can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
+    by writing to Richard Barry, contact details for whom are available on the\r
+    FreeRTOS WEB site.\r
+\r
+    1 tab == 4 spaces!\r
+\r
+    http://www.FreeRTOS.org - Documentation, latest information, license and\r
+    contact details.\r
+\r
+    http://www.SafeRTOS.com - A version that is certified for use in safety\r
+    critical systems.\r
+\r
+    http://www.OpenRTOS.com - Commercial support, development, porting,\r
+    licensing and training services.\r
+*/\r
+\r
+#ifndef PRIORITY_DEFINITIONS_H\r
+#define PRIORITY_DEFINITIONS_H\r
+\r
+\r
+/* The interrupt priority used by the kernel itself for the tick interrupt and\r
+the pended interrupt.  This would normally be the lowest priority. */\r
+#define configKERNEL_INTERRUPT_PRIORITY         1\r
+\r
+/* The maximum interrupt priority from which FreeRTOS API calls can be made.\r
+Interrupts that use a priority above this will not be effected by anything the\r
+kernel is doing. */\r
+#define configMAX_SYSCALL_INTERRUPT_PRIORITY    4\r
+\r
+#endif /* PRIORITY_DEFINITIONS_H */\r
index 026e0f25a0bbafd40c192642dd42b1d6ccc4b709..56e46848903dc8a29e6f9b94848e5aa64fbc7d00 100644 (file)
@@ -2,47 +2,49 @@
 \r
 <project>\r
   <fileVersion>2</fileVersion>\r
-  <fileChecksum>1767481010</fileChecksum>\r
+  <fileChecksum>1659094556</fileChecksum>\r
   <configuration>\r
     <name>Blinky</name>\r
     <outputs>\r
-      <file>$PROJ_DIR$\..\..\Source\include\FreeRTOS.h</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\queue.o</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\port.pbi</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\list.h</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\hwsetup.o</file>\r
-      <file>$PROJ_DIR$\FreeRTOSConfig.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\mpu_wrappers.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\projdefs.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\task.h</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\queue.pbi</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\tasks.o</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\tasks.pbi</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\portable.h</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\ParTest.pbi</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\port.o</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\heap_2.pbi</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\hwsetup.pbi</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\main-blinky.pbi</file>\r
-      <file>$PROJ_DIR$\Blinky\Exe\RTOSDemo.out</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\list.o</file>\r
       <file>$PROJ_DIR$\..\..\Source\include\StackMacros.h</file>\r
       <file>$PROJ_DIR$\Blinky\Obj\ParTest.o</file>\r
       <file>$PROJ_DIR$\Blinky\Obj\heap_2.o</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\portmacro.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\croutine.h</file>\r
-      <file>$PROJ_DIR$\Blinky\Obj\RTOSDemo.pbd</file>\r
       <file>$PROJ_DIR$\Blinky\Obj\list.pbi</file>\r
       <file>$PROJ_DIR$\Blinky\Obj\port_asm.o</file>\r
       <file>$PROJ_DIR$\Blinky\Obj\main-blinky.o</file>\r
-      <file>$PROJ_DIR$\Renesas-Files\hwsetup.c</file>\r
+      <file>$PROJ_DIR$\include\yrdkrx62ndef.h</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\list.o</file>\r
+      <file>$PROJ_DIR$\Blinky\Exe\RTOSDemo.out</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\mpu_wrappers.h</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\queue.o</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\FreeRTOS.h</file>\r
+      <file>$PROJ_DIR$\PriorityDefinitions.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\partest.h</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\queue.pbi</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\ParTest.pbi</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\port.o</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\heap_2.pbi</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\hwsetup.pbi</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\tasks.o</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\tasks.pbi</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\portable.h</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\port.pbi</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\list.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\queue.h</file>\r
       <file>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</file>\r
       <file>$PROJ_DIR$\..\..\Source\list.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\queue.c</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\hwsetup.o</file>\r
+      <file>$PROJ_DIR$\FreeRTOSConfig.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\portmacro.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\croutine.h</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\main-blinky.pbi</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\task.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\projdefs.h</file>\r
       <file>$PROJ_DIR$\..\..\Source\tasks.c</file>\r
-      <file>$PROJ_DIR$\include\yrdkrx62ndef.h</file>\r
+      <file>$PROJ_DIR$\Renesas-Files\hwsetup.c</file>\r
       <file>$PROJ_DIR$\HighFrequencyTimerTest.c</file>\r
       <file>$PROJ_DIR$\IntQueueTimer.c</file>\r
       <file>$PROJ_DIR$\main-blinky.c</file>\r
       <file>$PROJ_DIR$\ParTest.c</file>\r
       <file>$PROJ_DIR$\RegTest.s</file>\r
       <file>$PROJ_DIR$\uIP_Task.c</file>\r
+      <file>$PROJ_DIR$\Blinky\Obj\RTOSDemo.pbd</file>\r
     </outputs>\r
     <file>\r
       <name>[ROOT_NODE]</name>\r
       <outputs>\r
         <tool>\r
           <name>ILINK</name>\r
-          <file> 18</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\Renesas-Files\hwsetup.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 4</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 16</file>\r
+          <file> 8</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 22</file>\r
+          <file> 2</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 15</file>\r
+          <file> 17</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 7 5 36 12 23 6 8 3</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 14</file>\r
+          <file> 16</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 2</file>\r
+          <file> 22</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 7 5 36 12 23 6 8 3</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ARX</name>\r
-          <file> 27</file>\r
+          <file> 4</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 19</file>\r
+          <file> 7</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 26</file>\r
+          <file> 3</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 7 5 36 12 23 6 3</file>\r
+          <file> 11 36 31 6 12 21 32 9 23</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 1</file>\r
+          <file> 10</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 9</file>\r
+          <file> 14</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 7 5 36 12 23 6 8 3 24</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23 33</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 10</file>\r
+          <file> 19</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 11</file>\r
+          <file> 20</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 7 5 36 12 23 6 8 3 20</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\main-blinky.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 28</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 17</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\ParTest.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 21</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 13</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-  </configuration>\r
-  <configuration>\r
-    <name>Debug</name>\r
-    <outputs>\r
-      <file>$PROJ_DIR$\Debug\Obj\death.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\port_asm.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\IntQueueTimer.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\sys\timer.h</file>\r
-      <file>$PROJ_DIR$\include\typedefine.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\sys\clock.h</file>\r
-      <file>$PROJ_DIR$\Debug\List\main-full.lst</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\flop.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\list.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\IntQueue.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\blocktim.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\QPeek.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\phy.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\port.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\queue.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\semtest.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uip_arp.o</file>\r
-      <file>$PROJ_DIR$\webserver\webserver.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\http-strings.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\flash.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\tasks.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\integer.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\main-full.pbi</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\FreeRTOS.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\list.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\death.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\blocktim.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\EMAC.o</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\psock.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pack_struct_end.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uIP_Task.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd-cgi.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\psock.o</file>\r
-      <file>$PROJ_DIR$\include\IntQueueTimer.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\HighFrequencyTimerTest.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\semtest.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\timer.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\QPeek.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\ParTest.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\heap_2.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd-fs.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\RTOSDemo.pbd</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\psock.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\GenQTest.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\flash.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\flop.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pt.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\blocktim.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\GenQTest.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\GenQTest.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\RegTest.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\IntQueueTimer.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uip_arp.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\integer.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\heap_2.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uip.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\BlockQ.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\ParTest.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\QPeek.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\queue.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\BlockQ.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip_arp.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uipopt.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\recmutex.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\list.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\flash.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\port.o</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\clock-arch.h</file>\r
-      <file>$PROJ_DIR$\FreeRTOSConfig.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\mpu_wrappers.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\queue.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\projdefs.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\PollQ.pbi</file>\r
-      <file>$PROJ_DIR$\webserver\uip-conf.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\recmutex.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\tasks.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\recmutex.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd-fs.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\BlockQ.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uip.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\death.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\IntQueue.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\EMAC.pbi</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\hwsetup.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\phy.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fsdata.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\HighFrequencyTimerTest.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\lc.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\IntQueue.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\PollQ.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\uIP_Task.o</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pack_struct_start.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\integer.o</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\httpd-cgi.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\flop.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-cgi.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\hwsetup.pbi</file>\r
-      <file>$PROJ_DIR$\..\Common\include\PollQ.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\semphr.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\lc-switch.h</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\http-strings.pbi</file>\r
-      <file>$PROJ_DIR$\webserver\httpd-fsdata.c</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\main-full.o</file>\r
-      <file>$PROJ_DIR$\Debug\Exe\RTOSDemo.out</file>\r
-      <file>$PROJ_DIR$\Debug\Obj\timer.o</file>\r
-      <file>$PROJ_DIR$\webserver\r_ether.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\semtest.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\ymath.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\task.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\DLib_Threads.h</file>\r
-      <file>$PROJ_DIR$\webserver\phy.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip_arch.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>\r
-      <file>$TOOLKIT_DIR$\config\lnkr5f562n8.icf</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\portable.h</file>\r
-      <file>$PROJ_DIR$\Debug\List\port_asm.lst</file>\r
-      <file>$TOOLKIT_DIR$\lib\dbgrxlld.a</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\string.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\DLib_Product.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\stddef.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\xtgmath.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\ystdio.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\stdint.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\iorx62n.h</file>\r
-      <file>$TOOLKIT_DIR$\lib\dlrxflln.h</file>\r
-      <file>$TOOLKIT_DIR$\lib\dlrxflln.a</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\stdio.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\intrinsics.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\math.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\yvals.h</file>\r
-      <file>$TOOLKIT_DIR$\inc\c\xencoding_limits.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\StackMacros.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\portmacro.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\croutine.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</file>\r
-      <file>$PROJ_DIR$\webserver\EMAC.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</file>\r
-      <file>$PROJ_DIR$\webserver\httpd-cgi.c</file>\r
-      <file>$PROJ_DIR$\webserver\phy.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</file>\r
-      <file>$PROJ_DIR$\Renesas-Files\hwsetup.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\death.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\IntQueue.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\PollQ.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\QPeek.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\recmutex.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\semtest.c</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</file>\r
-      <file>$PROJ_DIR$\..\..\Source\list.c</file>\r
-      <file>$PROJ_DIR$\..\..\Source\queue.c</file>\r
-      <file>$PROJ_DIR$\..\..\Source\tasks.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\blocktim.c</file>\r
-      <file>$PROJ_DIR$\..\Common\include\partest.h</file>\r
-      <file>$PROJ_DIR$\include\yrdkrx62ndef.h</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\flash.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\flop.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\integer.c</file>\r
-      <file>$PROJ_DIR$\HighFrequencyTimerTest.c</file>\r
-      <file>$PROJ_DIR$\IntQueueTimer.c</file>\r
-      <file>$PROJ_DIR$\main-blinky.c</file>\r
-      <file>$PROJ_DIR$\main-full.c</file>\r
-      <file>$PROJ_DIR$\ParTest.c</file>\r
-      <file>$PROJ_DIR$\RegTest.s</file>\r
-      <file>$PROJ_DIR$\uIP_Task.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</file>\r
-      <file>$PROJ_DIR$\Debug\List\death.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\integer.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\IntQueue.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\timer.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\recmutex.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\semtest.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\httpd-cgi.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\BlockQ.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\GenQTest.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\uip.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\IntQueueTimer.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\list.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\ParTest.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\httpd-fs.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\http-strings.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\psock.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\flash.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\uIP_Task.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\uip_arp.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\HighFrequencyTimerTest.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\flop.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\phy.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\port.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\EMAC.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\tasks.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\httpd.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\RegTest.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\PollQ.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\QPeek.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\heap_2.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\RTOSDemo.map</file>\r
-      <file>$PROJ_DIR$\Debug\List\blocktim.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\hwsetup.lst</file>\r
-      <file>$PROJ_DIR$\Debug\List\queue.lst</file>\r
-    </outputs>\r
-    <file>\r
-      <name>[ROOT_NODE]</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ILINK</name>\r
-          <file> 108 211</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\Debug\Obj\RTOSDemo.pbd</name>\r
-      <inputs>\r
-        <tool>\r
-          <name>BILINK</name>\r
-          <file> 62 86 44 90 85 2 39 75 60 48 25 19 46 56 105 98 80 92 101 54 66 22 88 13 29 61 79 15 20 37 31 82 53</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\Debug\Exe\RTOSDemo.out</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ILINK</name>\r
-          <file> 211</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ILINK</name>\r
-          <file> 121 58 27 50 35 9 52 59 94 11 51 10 0 45 7 40 18 32 41 55 87 97 8 107 12 69 1 33 14 65 36 78 109 95 57 16 134 124</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23 0</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</name>\r
+      <name>$PROJ_DIR$\Renesas-Files\hwsetup.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 206 55</file>\r
+          <file> 30</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 92</file>\r
+          <file> 18</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 100 67 125 119 138 115 133 126 139 116 128</file>\r
-        </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 100 67</file>\r
+          <file> 6</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\webserver\EMAC.c</name>\r
+      <name>$PROJ_DIR$\main-blinky.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 204 27</file>\r
+          <file> 5</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 86</file>\r
+          <file> 34</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 132 4 110 131 119 138 115 133 126 139 116 117 23 127 128 74 71 168 122 141 136 72 114 24 103 73 83 64 76 17 28 43 47 91 104 113 96 30</file>\r
-        </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 4 110 117 23 74 71 168 122 141 72 114 24 103 73 83 64 76 17 28 43 47 91 104 113 96 30</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23 24 13</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</name>\r
+      <name>$PROJ_DIR$\ParTest.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 184 109</file>\r
+          <file> 1</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 37</file>\r
+          <file> 15</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 76 17 28 43 64 47 91 104 113 70 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 5 3</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 76 17 28 43 64 47 91 104 113 70 23 74 71 168 122 141 72 5 3</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\webserver\httpd-cgi.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 187 32</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 98</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 100 135 119 138 115 133 126 139 116 128 130 125 23 127 74 71 168 122 141 136 72 114 24</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 100 23 74 71 168 122 141 72 114 24</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\webserver\phy.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 202 12</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 88</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 132 110 131 119 138 115 133 126 139 116 117 23 127 128 74 71 168 122 141 136 72 114 24</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 110 117 23 74 71 168 122 141 72 114 24</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 196 33</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 29</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 135 119 138 115 133 126 139 116 128 130 125 64 76 17 28 43 47 91 104 113 83 96 30</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 64 76 17 28 43 47 91 104 113 83 96 30</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 190 57</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 82</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 63 118 125 119 138 115 133 126 139 116 128</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 83 64 76 17 28 43 47 91 104 113 96 30 63 118</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 199 16</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 53</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 63 83 64 76 17 28 43 47 91 104 113 96 30 125 119 138 115 133 126 139 116 128</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 63 83 64 76 17 28 43 47 91 104 113 96 30</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\Renesas-Files\hwsetup.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 213 87</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 101</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 131 119 138 115 133 126 139 116 132 168</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 168</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\death.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 181 0</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 25</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 84</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 84</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\IntQueue.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 183 9</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 85</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 125 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 73 114 24 93 34</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 73 114 24 93 34</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\PollQ.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 208 94</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 75</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 73 102</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 73 102</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\QPeek.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 209 11</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 60</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 73 103 38</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 73 103 38</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\recmutex.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 185 65</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 79</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 114 24 103 73 77</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 103 73 77</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\semtest.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 186 36</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 15</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 103 73 111</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 103 73 111</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 210 40</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 56</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 203 69</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 13</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 114 24 125 132</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ARX</name>\r
-          <file> 1 123</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\list.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 192 8</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 66</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 24</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 24</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\queue.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 214 14</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 61</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 125 23 127 74 71 168 122 141 136 72 114 24 142</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 142</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\tasks.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 205 78</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 20</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 135 119 138 115 133 126 139 116 128 130 120 125 23 127 74 71 168 122 141 136 72 114 24 140</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 140</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 195 18</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 105</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 194 41</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 80</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 28 43 64 76 17 47 91 104 113 89 106</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 28 43 64 76 17 47 91 104 113 89 106</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\blocktim.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 212 10</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 48</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 114 24 73 26</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 73 26</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\flash.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 197 45</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 19</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 167 68</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 167 68</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\flop.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 201 7</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 46</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 137 112 129 23 127 74 71 168 122 141 136 72 114 24 99</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 99</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 189 50</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 44</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 73 103 49</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 73 103 49</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\integer.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 182 97</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 54</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 21</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 21</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\HighFrequencyTimerTest.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 200 35</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 90</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 132</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\IntQueueTimer.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 191 52</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 2</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 114 24 34 93 132</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 34 93</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\main-full.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 6 107</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 22</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 125 119 138 115 133 126 139 116 128 135 130 132 23 127 74 71 168 122 141 136 72 114 24 167 68 93 81 84 21 26 111 102 49 38 77 99</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 167 68 93 81 84 21 26 111 102 49 38 77 99</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\ParTest.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 193 59</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 39</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 23 127 119 138 115 133 126 139 116 128 74 71 168 122 141 136 72 114 24 167 132</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 167</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\RegTest.s</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ARX</name>\r
-          <file> 51 207</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\uIP_Task.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 198 95</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 31</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 125 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 103 73 83 64 76 17 28 43 47 91 104 113 96 30 63 3 5 70 110 131 167</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 103 73 83 64 76 17 28 43 47 91 104 113 96 30 63 3 5 70 110 167</file>\r
-        </tool>\r
-      </inputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 188 58</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 62</file>\r
-        </tool>\r
-      </outputs>\r
-      <inputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 120 119 138 115 133 126 139 116 128 23 127 74 71 168 122 141 136 72 114 24 73 81</file>\r
-        </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 23 74 71 168 122 141 72 114 24 73 81</file>\r
+          <file> 11 36 31 6 12 21 32 9 35 23 13</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
+    <file>\r
+      <name>$PROJ_DIR$\Blinky\Obj\RTOSDemo.pbd</name>\r
+      <inputs>\r
+        <tool>\r
+          <name>BILINK</name>\r
+          <file> 15 17 18 3 34 22 14 20</file>\r
+        </tool>\r
+      </inputs>\r
+    </file>\r
+  </configuration>\r
+  <configuration>\r
+    <name>Debug</name>\r
+    <outputs>\r
+      <file>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</file>\r
+      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</file>\r
+      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</file>\r
+      <file>$PROJ_DIR$\..\..\Source\list.c</file>\r
+      <file>$PROJ_DIR$\..\..\Source\queue.c</file>\r
+      <file>$PROJ_DIR$\..\..\Source\tasks.c</file>\r
+      <file>$PROJ_DIR$\HighFrequencyTimerTest.c</file>\r
+      <file>$PROJ_DIR$\IntQueueTimer.c</file>\r
+      <file>$PROJ_DIR$\main-blinky.c</file>\r
+      <file>$PROJ_DIR$\main-full.c</file>\r
+      <file>$PROJ_DIR$\ParTest.c</file>\r
+      <file>$PROJ_DIR$\RegTest.s</file>\r
+      <file>$PROJ_DIR$\uIP_Task.c</file>\r
+    </outputs>\r
   </configuration>\r
   <configuration>\r
     <name>Debug-with-optimisation</name>\r
     <outputs>\r
-      <file>$PROJ_DIR$\..\..\Source\include\FreeRTOS.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\list.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\blocktim.h</file>\r
-      <file>$PROJ_DIR$\FreeRTOSConfig.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\mpu_wrappers.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\queue.h</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\projdefs.h</file>\r
-      <file>$PROJ_DIR$\..\Common\include\BlockQ.h</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\hwsetup.pbi</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\ParTest.pbi</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\blocktim.o</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd-fs.pbi</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\queue.pbi</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\timer.pbi</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\task.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\StackMacros.h</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd-cgi.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\BlockQ.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\phy.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd-fs.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\tasks.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\main-full.o</file>\r
-      <file>$PROJ_DIR$\..\..\Source\include\portable.h</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\flop.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\PollQ.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\integer.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\flash.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\death.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd.pbi</file>\r
+      <file>$PROJ_DIR$\include\yrdkrx62ndef.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\mpu_wrappers.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\FreeRTOS.h</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\psock.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\http-strings.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\list.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\GenQTest.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\RTOSDemo.pbd</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\flop.o</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\hwsetup.pbi</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd-fs.pbi</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\timer.pbi</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\queue.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\ParTest.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\httpd-cgi.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\queue.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\QPeek.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\semtest.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\IntQueue.pbi</file>\r
-      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\IntQueueTimer.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\HighFrequencyTimerTest.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\EMAC.pbi</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\IntQueueTimer.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\phy.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\integer.pbi</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\uip.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\timer.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\semtest.o</file>\r
       <file>$PROJ_DIR$\Debug-with-optimisation\Obj\EMAC.o</file>\r
-      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\portmacro.h</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</file>\r
-      <file>$PROJ_DIR$\webserver\EMAC.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</file>\r
-      <file>$PROJ_DIR$\webserver\httpd-cgi.c</file>\r
-      <file>$PROJ_DIR$\webserver\phy.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</file>\r
-      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</file>\r
-      <file>$PROJ_DIR$\Renesas-Files\hwsetup.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\death.c</file>\r
+      <file>$PROJ_DIR$\PriorityDefinitions.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\partest.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\portable.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\list.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fsdata.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\lc.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\IntQueue.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\queue.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pack_struct_start.h</file>\r
+      <file>$PROJ_DIR$\webserver\uip-conf.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\recmutex.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\death.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\BlockQ.h</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\integer.c</file>\r
       <file>$PROJ_DIR$\..\Common\Minimal\IntQueue.c</file>\r
       <file>$PROJ_DIR$\..\Common\Minimal\PollQ.c</file>\r
       <file>$PROJ_DIR$\..\Common\Minimal\QPeek.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</file>\r
       <file>$PROJ_DIR$\..\..\Source\list.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\queue.c</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\death.c</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\flash.c</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\flop.c</file>\r
+      <file>$PROJ_DIR$\FreeRTOSConfig.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\portmacro.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\croutine.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\task.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\projdefs.h</file>\r
+      <file>$PROJ_DIR$\..\Common\Minimal\blocktim.c</file>\r
       <file>$PROJ_DIR$\..\..\Source\tasks.c</file>\r
       <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.c</file>\r
       <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\blocktim.c</file>\r
-      <file>$PROJ_DIR$\include\yrdkrx62ndef.h</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\flash.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\flop.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\integer.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</file>\r
+      <file>$PROJ_DIR$\webserver\EMAC.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</file>\r
+      <file>$PROJ_DIR$\webserver\httpd-cgi.c</file>\r
+      <file>$PROJ_DIR$\webserver\phy.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</file>\r
+      <file>$PROJ_DIR$\Renesas-Files\hwsetup.c</file>\r
       <file>$PROJ_DIR$\HighFrequencyTimerTest.c</file>\r
       <file>$PROJ_DIR$\IntQueueTimer.c</file>\r
       <file>$PROJ_DIR$\main-blinky.c</file>\r
       <file>$PROJ_DIR$\ParTest.c</file>\r
       <file>$PROJ_DIR$\RegTest.s</file>\r
       <file>$PROJ_DIR$\uIP_Task.c</file>\r
-      <file>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip.h</file>\r
+      <file>$PROJ_DIR$\..\..\Source\include\semphr.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\flop.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-cgi.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\PollQ.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\lc-switch.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.h</file>\r
+      <file>$PROJ_DIR$\webserver\httpd-fsdata.c</file>\r
+      <file>$PROJ_DIR$\webserver\r_ether.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\semtest.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pack_struct_end.h</file>\r
+      <file>$PROJ_DIR$\include\IntQueueTimer.h</file>\r
+      <file>$PROJ_DIR$\webserver\webserver.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\sys\clock.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\QPeek.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\psock.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip_arp.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\flash.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\clock-arch.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\sys\timer.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\pt.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uipopt.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\GenQTest.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\integer.h</file>\r
+      <file>$PROJ_DIR$\..\Common\include\blocktim.h</file>\r
+      <file>$PROJ_DIR$\webserver\phy.h</file>\r
+      <file>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\net\uip_arch.h</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\ParTest.pbi</file>\r
+      <file>$PROJ_DIR$\include\typedefine.h</file>\r
+      <file>$PROJ_DIR$\Debug-with-optimisation\Obj\blocktim.o</file>\r
     </outputs>\r
     <file>\r
       <name>[ROOT_NODE]</name>\r
       <outputs>\r
         <tool>\r
           <name>ILINK</name>\r
-          <file> 51</file>\r
+          <file> 43</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</name>\r
+      <name>$PROJ_DIR$\Debug-with-optimisation\Obj\RTOSDemo.pbd</name>\r
+      <inputs>\r
+        <tool>\r
+          <name>BILINK</name>\r
+          <file> 2 60 30 59 58 61 155 16 56 49 21 20 15 46 18 1 34 22 33 63 28 65 62 5 26 36 29 57 40 35 45 54 19</file>\r
+        </tool>\r
+      </inputs>\r
+    </file>\r
+    <file>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 52</file>\r
+          <file> 53</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 37</file>\r
+          <file> 30</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 79 127 150</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\webserver\EMAC.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\integer.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 79</file>\r
+          <file> 17</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 69</file>\r
+          <file> 63</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 151</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\IntQueue.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 77</file>\r
+          <file> 41</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 13</file>\r
+          <file> 58</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 79 104 75 78 138</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\webserver\httpd-cgi.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\PollQ.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 46</file>\r
+          <file> 48</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 15</file>\r
+          <file> 16</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 79 130</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\webserver\phy.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\QPeek.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 17</file>\r
+          <file> 47</file>\r
+        </tool>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 56</file>\r
         </tool>\r
+      </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 79 127 141</file>\r
+        </tool>\r
+      </inputs>\r
+    </file>\r
+    <file>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\recmutex.c</name>\r
+      <outputs>\r
+        <tool>\r
+          <name>ICCRX</name>\r
+          <file> 11</file>\r
+        </tool>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 29</file>\r
+        </tool>\r
+      </outputs>\r
+      <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 127 79 82</file>\r
+        </tool>\r
+      </inputs>\r
+    </file>\r
+    <file>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\semtest.c</name>\r
+      <outputs>\r
+        <tool>\r
+          <name>ICCRX</name>\r
           <file> 70</file>\r
         </tool>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 57</file>\r
+        </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 127 79 135</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</name>\r
+      <name>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 50</file>\r
+          <file> 51</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 38</file>\r
+          <file> 46</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</name>\r
+      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 72</file>\r
+          <file> 10</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 62</file>\r
+          <file> 5</file>\r
+        </tool>\r
+      </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75</file>\r
+        </tool>\r
+      </inputs>\r
+    </file>\r
+    <file>\r
+      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</name>\r
+      <outputs>\r
+        <tool>\r
+          <name>ARX</name>\r
+          <file> 7</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</name>\r
+      <name>$PROJ_DIR$\..\..\Source\list.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 23</file>\r
+          <file> 67</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 34</file>\r
+          <file> 28</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 75</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\Renesas-Files\hwsetup.c</name>\r
+      <name>$PROJ_DIR$\..\..\Source\queue.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 20</file>\r
+          <file> 39</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 8</file>\r
+          <file> 36</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 103</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\death.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 18</file>\r
+          <file> 8</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 36</file>\r
+          <file> 2</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 79 84</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\IntQueue.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\death.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 49</file>\r
+          <file> 4</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 66</file>\r
+          <file> 21</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 83</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\PollQ.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\flash.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 56</file>\r
+          <file> 52</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 31</file>\r
+          <file> 20</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 73 144</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\QPeek.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\flop.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 55</file>\r
+          <file> 32</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 64</file>\r
+          <file> 15</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 128</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\recmutex.c</name>\r
+      <name>$PROJ_DIR$\..\Common\Minimal\blocktim.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 25</file>\r
+          <file> 157</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 41</file>\r
+          <file> 49</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 79 152</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\semtest.c</name>\r
+      <name>$PROJ_DIR$\..\..\Source\tasks.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 78</file>\r
+          <file> 13</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 65</file>\r
+          <file> 40</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 0</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\MemMang\heap_2.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 59</file>\r
+          <file> 27</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 54</file>\r
+          <file> 18</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 24</file>\r
+          <file> 12</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 19</file>\r
+          <file> 34</file>\r
         </tool>\r
       </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\portable\IAR\RX600\port_asm.s</name>\r
-      <outputs>\r
+      <inputs>\r
         <tool>\r
-          <name>ARX</name>\r
-          <file> 21</file>\r
+          <name>BICOMP</name>\r
+          <file> 136 142 149 81 139 148 77 131 132 76 133</file>\r
         </tool>\r
-      </outputs>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\..\Source\list.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 75</file>\r
+          <file> 44</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 40</file>\r
+          <file> 22</file>\r
         </tool>\r
       </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\..\Source\queue.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 47</file>\r
-        </tool>\r
+      <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 12</file>\r
+          <file> 126 149 81 139 136 142 148 77 131 132 80 137 129 145</file>\r
         </tool>\r
-      </outputs>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\..\Source\tasks.c</name>\r
+      <name>$PROJ_DIR$\webserver\EMAC.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 27</file>\r
+          <file> 71</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 48</file>\r
+          <file> 60</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 156 134 153 25 105 101 23 72 74 102 24 104 75 127 79 126 149 81 139 136 142 148 77 131 132 80 137</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\http-strings.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\timer.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 39</file>\r
+          <file> 69</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 33</file>\r
+          <file> 35</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 81 139 136 142 149 148 77 131 132 146 25 105 101 23 72 74 102 24 140 147</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\apps\httpd\httpd-fs.c</name>\r
+      <name>$PROJ_DIR$\webserver\httpd-cgi.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 26</file>\r
+          <file> 38</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 11</file>\r
+          <file> 1</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 126 149 81 139 136 142 148 77 131 132 80 137 129 25 105 101 23 72 74 102 24 104 75</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\blocktim.c</name>\r
+      <name>$PROJ_DIR$\webserver\phy.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 10</file>\r
+          <file> 3</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 57</file>\r
+          <file> 62</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 6 3 105 29 80 4 14 1 5 2</file>\r
+          <file> 134 153 25 105 101 23 72 74 102 24 104 75</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\flash.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\psock.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 60</file>\r
+          <file> 42</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 35</file>\r
+          <file> 26</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 149 81 139 136 142 148 77 131 132 126 80 137</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\flop.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 44</file>\r
+          <file> 64</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 30</file>\r
+          <file> 54</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 126 149 81 139 136 142 148 77 131 132 80 137 143 154</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\GenQTest.c</name>\r
+      <name>$PROJ_DIR$\..\Common\ethernet\FreeTCPIP\uip_arp.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 61</file>\r
+          <file> 9</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 42</file>\r
+          <file> 19</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 143 126 149 81 139 136 142 148 77 131 132 80 137</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\integer.c</name>\r
+      <name>$PROJ_DIR$\Renesas-Files\hwsetup.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 32</file>\r
+          <file> 6</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 71</file>\r
+          <file> 33</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 23</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
       <name>$PROJ_DIR$\HighFrequencyTimerTest.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 76</file>\r
+          <file> 68</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 68</file>\r
+          <file> 59</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
       <name>$PROJ_DIR$\IntQueueTimer.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 58</file>\r
+          <file> 50</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 67</file>\r
+          <file> 61</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 138 78</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
       <name>$PROJ_DIR$\main-full.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 28</file>\r
+          <file> 14</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 73</file>\r
+          <file> 65</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 73 144 78 84 83 151 152 135 130 150 141 82 128</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
       <name>$PROJ_DIR$\ParTest.c</name>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 45</file>\r
+          <file> 37</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 9</file>\r
+          <file> 155</file>\r
         </tool>\r
       </outputs>\r
+      <inputs>\r
+        <tool>\r
+          <name>BICOMP</name>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 73</file>\r
+        </tool>\r
+      </inputs>\r
     </file>\r
     <file>\r
       <name>$PROJ_DIR$\RegTest.s</name>\r
       <outputs>\r
         <tool>\r
           <name>ARX</name>\r
-          <file> 63</file>\r
+          <file> 55</file>\r
         </tool>\r
       </outputs>\r
     </file>\r
       <outputs>\r
         <tool>\r
           <name>ICCRX</name>\r
-          <file> 74</file>\r
-        </tool>\r
-        <tool>\r
-          <name>BICOMP</name>\r
-          <file> 53</file>\r
-        </tool>\r
-      </outputs>\r
-    </file>\r
-    <file>\r
-      <name>$PROJ_DIR$\..\Common\Minimal\BlockQ.c</name>\r
-      <outputs>\r
-        <tool>\r
-          <name>ICCRX</name>\r
-          <file> 22</file>\r
+          <file> 66</file>\r
         </tool>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 16</file>\r
+          <file> 45</file>\r
         </tool>\r
       </outputs>\r
       <inputs>\r
         <tool>\r
           <name>BICOMP</name>\r
-          <file> 0 6 3 105 29 80 4 14 1 5 7</file>\r
+          <file> 25 105 101 23 72 74 102 24 104 75 127 79 126 149 81 139 136 142 148 77 131 132 80 137 143 147 140 146 134 73</file>\r
         </tool>\r
       </inputs>\r
     </file>\r
index 65bd03a8d66614ed1ac77190ea2fd15edc4f20af..b8d0cbc26505afcb660c4be0e3e45056b86f93da 100644 (file)
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
index 3f1935682c547d395eba92b28e751c9bd58c43e4..05ba900d92e3e47edf393cd0e682b724601feabe 100644 (file)
@@ -1,5 +1,5 @@
 [E20]\r
-TimeConnected=1284472022\r
+TimeConnected=1285248097\r
 ComuniDllSave=84541440\r
 FfwnsdDllSave=81330176\r
 ChipName=R5F562N8\r
@@ -11,7 +11,7 @@ DebugFlags=0,0
 EmulatorMode=0\r
 NeedInit=1\r
 [DebugChecksum]\r
-Checksum=-501542729\r
+Checksum=188492037\r
 [DisAssemblyWindow]\r
 NumStates=_ 1\r
 State 1=_ 1\r
@@ -31,6 +31,10 @@ UseTrigger=1
 TriggerName=main\r
 LimitSize=0\r
 ByteLimit=50\r
+[DriverProfiling]\r
+Enabled=0\r
+Source=2\r
+Graph=0\r
 [Log file]\r
 LoggingEnabled=_ 0\r
 LogFile=_ ""\r
@@ -38,10 +42,6 @@ Category=_ 0
 [TermIOLog]\r
 LoggingEnabled=_ 0\r
 LogFile=_ ""\r
-[DriverProfiling]\r
-Enabled=0\r
-Source=2\r
-Graph=0\r
 [Breakpoints]\r
 Count=0\r
 [Monitor Execution]\r
index 892b302a234c066081e899621b814dacaed889c8..62d2bb0d728adbc25c30838d0ebfac6ad410855a 100644 (file)
@@ -33,7 +33,7 @@
             <Factory>Workspace</Factory>\r
             <Session>\r
               \r
-            <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode></NodeDict></Session>\r
+            <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode><ExpandedNode>RTOSDemo/FreeRTOS Source</ExpandedNode><ExpandedNode>RTOSDemo/FreeRTOS Source/Portable Layer</ExpandedNode></NodeDict></Session>\r
           </Tab>\r
         </Tabs>\r
         \r
@@ -60,7 +60,7 @@
       \r
       \r
       \r
-    <Top><Row0><Sizes><Toolbar-00a2ab10><key>iaridepm.enu1</key></Toolbar-00a2ab10></Sizes></Row0><Row1><Sizes/></Row1><Row2><Sizes/></Row2></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>706</Bottom><Right>351</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>284</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>289206</sizeHorzCY><sizeVertCX>210119</sizeVertCX><sizeVertCY>720978</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>232</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>234</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>238289</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>289206</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>\r
+    <Top><Row0><Sizes><Toolbar-00a2ab40><key>iaridepm.enu1</key></Toolbar-00a2ab40></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>706</Bottom><Right>351</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>284</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>289206</sizeHorzCY><sizeVertCX>210119</sizeVertCX><sizeVertCY>720978</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>232</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>234</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>238289</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>289206</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>\r
   </Desktop>\r
 </Workspace>\r
 \r
index c9f684505743bb470218aef24d22bc1f1199ebfc..d118d5f18e03ac2045e8cebbd0a0975d6d6031aa 100644 (file)
 #define configMAX_PRIORITIES                   ( ( unsigned portBASE_TYPE ) 7 )\r
 #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )\r
 \r
-/* The interrupt priority used by the kernel itself for the tick interrupt and\r
-the pended interrupt.  This would normally be the lowest priority. */\r
-#define configKERNEL_INTERRUPT_PRIORITY         1\r
-\r
-/* The maximum interrupt priority from which FreeRTOS API calls can be made.\r
-Interrupts that use a priority above this will not be effected by anything the\r
-kernel is doing. */\r
-#define configMAX_SYSCALL_INTERRUPT_PRIORITY    4\r
+\r
+/* \r
+The interrupt priority used by the kernel itself for the tick interrupt and\r
+the pended interrupt is set by configKERNEL_INTERRUPT_PRIORITY.  This would \r
+normally be the lowest priority (1 in this case).  The maximum interrupt \r
+priority from which FreeRTOS API calls can be made is set by\r
+configMAX_SYSCALL_INTERRUPT_PRIORITY.  Interrupts that use a priority above this \r
+will not be effected by anything the kernel is doing.  Interrupts at or below\r
+this priority can use FreeRTOS API functions - but *only* those that end in\r
+"FromISR".  Both these constants are defined in 'PriorityDefinitions.h' so they\r
+can also be included in assembly source files.\r
+*/\r
+#include "PriorityDefinitions.h"\r
+\r
 \r
 /* The peripheral used to generate the tick interrupt is configured as part of\r
 the application code.  This constant should be set to the vector number of the\r
diff --git a/Demo/RX600_RX62N-RSK_IAR/PriorityDefinitions.h b/Demo/RX600_RX62N-RSK_IAR/PriorityDefinitions.h
new file mode 100644 (file)
index 0000000..5a0f451
--- /dev/null
@@ -0,0 +1,67 @@
+/*\r
+    FreeRTOS V6.0.6 rc1 - Copyright (C) 2010 Real Time Engineers Ltd.\r
+\r
+    ***************************************************************************\r
+    *                                                                         *\r
+    * If you are:                                                             *\r
+    *                                                                         *\r
+    *    + New to FreeRTOS,                                                   *\r
+    *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
+    *    + Looking for basic training,                                        *\r
+    *    + Wanting to improve your FreeRTOS skills and productivity           *\r
+    *                                                                         *\r
+    * then take a look at the FreeRTOS eBooks and paperbacks                  *\r
+    *                                                                         *\r
+    *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
+    *                  http://www.FreeRTOS.org/Documentation                  *\r
+    *                                                                         *\r
+    * A pdf reference manual is also available.  Both are usually delivered   *\r
+    * to your inbox within 20 minutes to two hours when purchased between 8am *\r
+    * and 8pm GMT (although please allow up to 24 hours in case of            *\r
+    * exceptional circumstances).  Thank you for your support!                *\r
+    *                                                                         *\r
+    ***************************************************************************\r
+\r
+    This file is part of the FreeRTOS distribution.\r
+\r
+    FreeRTOS is free software; you can redistribute it and/or modify it under\r
+    the terms of the GNU General Public License (version 2) as published by the\r
+    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
+    ***NOTE*** The exception to the GPL is included to allow you to distribute\r
+    a combined work that includes FreeRTOS without being obliged to provide the\r
+    source code for proprietary components outside of the FreeRTOS kernel.\r
+    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
+    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
+    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
+    more details. You should have received a copy of the GNU General Public\r
+    License and the FreeRTOS license exception along with FreeRTOS; if not it\r
+    can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
+    by writing to Richard Barry, contact details for whom are available on the\r
+    FreeRTOS WEB site.\r
+\r
+    1 tab == 4 spaces!\r
+\r
+    http://www.FreeRTOS.org - Documentation, latest information, license and\r
+    contact details.\r
+\r
+    http://www.SafeRTOS.com - A version that is certified for use in safety\r
+    critical systems.\r
+\r
+    http://www.OpenRTOS.com - Commercial support, development, porting,\r
+    licensing and training services.\r
+*/\r
+\r
+#ifndef PRIORITY_DEFINITIONS_H\r
+#define PRIORITY_DEFINITIONS_H\r
+\r
+\r
+/* The interrupt priority used by the kernel itself for the tick interrupt and\r
+the pended interrupt.  This would normally be the lowest priority. */\r
+#define configKERNEL_INTERRUPT_PRIORITY         1\r
+\r
+/* The maximum interrupt priority from which FreeRTOS API calls can be made.\r
+Interrupts that use a priority above this will not be effected by anything the\r
+kernel is doing. */\r
+#define configMAX_SYSCALL_INTERRUPT_PRIORITY    4\r
+\r
+#endif /* PRIORITY_DEFINITIONS_H */\r
index 65bd03a8d66614ed1ac77190ea2fd15edc4f20af..b8d0cbc26505afcb660c4be0e3e45056b86f93da 100644 (file)
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
         <option>\r
           <name>AsmIncludePath</name>\r
           <state>$TOOLKIT_DIR$\INC\</state>\r
+          <state>$PROJ_DIR$</state>\r
         </option>\r
         <option>\r
           <name>AsmDefines</name>\r
index a91f359bec7002cc36bf66b2fe94082b80bb687f..d7312a3152117f4abf6bc14d7f0bda9253376273 100644 (file)
@@ -1,5 +1,5 @@
 [E20]\r
-TimeConnected=1284472849\r
+TimeConnected=1285249114\r
 ComuniDllSave=101515264\r
 FfwnsdDllSave=303235072\r
 ChipName=R5F562N8\r
index cddd6f5ccb93079040c183067b7872fe405fd79d..f6a5bb44c4fc9f6fa0b445fa9a977e006f78b6c9 100644 (file)
@@ -3,7 +3,7 @@
 <Workspace>\r
   <ConfigDictionary>\r
     \r
-  <CurrentConfigs><Project>RTOSDemo/Debug-with-optimisation</Project></CurrentConfigs></ConfigDictionary>\r
+  <CurrentConfigs><Project>RTOSDemo/Debug</Project></CurrentConfigs></ConfigDictionary>\r
   <Desktop>\r
     <Static>\r
       <Workspace>\r
@@ -25,7 +25,7 @@
     <Windows>\r
       \r
       \r
-    <Wnd2>\r
+    <Wnd0>\r
         <Tabs>\r
           <Tab>\r
             <Identity>TabID-10758-3386</Identity>\r
             <Factory>Workspace</Factory>\r
             <Session>\r
               \r
-            <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode></NodeDict></Session>\r
+            <NodeDict><ExpandedNode>RTOSDemo</ExpandedNode><ExpandedNode>RTOSDemo/FreeRTOS Source</ExpandedNode></NodeDict></Session>\r
           </Tab>\r
         </Tabs>\r
         \r
-      <SelectedTab>0</SelectedTab></Wnd2><Wnd3>\r
+      <SelectedTab>0</SelectedTab></Wnd0><Wnd1>\r
         <Tabs>\r
           <Tab>\r
             <Identity>TabID-16801-3477</Identity>\r
@@ -47,7 +47,7 @@
           </Tab>\r
         <Tab><Identity>TabID-414-15843</Identity><TabName>Breakpoints</TabName><Factory>Breakpoints</Factory></Tab><Tab><Identity>TabID-3320-15993</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs>\r
         \r
-      <SelectedTab>0</SelectedTab></Wnd3></Windows>\r
+      <SelectedTab>0</SelectedTab></Wnd1></Windows>\r
     <Editor>\r
       \r
       \r
@@ -60,7 +60,7 @@
       \r
       \r
       \r
-    <Top><Row0><Sizes><Toolbar-00a2ab10><key>iaridepm.enu1</key></Toolbar-00a2ab10></Sizes></Row0><Row1><Sizes/></Row1><Row2><Sizes/></Row2></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>706</Bottom><Right>351</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>284</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>289206</sizeHorzCY><sizeVertCX>210119</sizeVertCX><sizeVertCY>720978</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>232</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>234</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>238289</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>289206</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>\r
+    <Top><Row0><Sizes><Toolbar-00a2ab40><key>iaridepm.enu1</key></Toolbar-00a2ab40></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>706</Bottom><Right>351</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>284</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>289206</sizeHorzCY><sizeVertCX>210119</sizeVertCX><sizeVertCY>720978</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>232</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>234</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>238289</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>289206</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>\r
   </Desktop>\r
 </Workspace>\r
 \r