Show
Ignore:
Timestamp:
01/31/10 12:44:23 (15 years ago)
Author:
phil
Message:

- SolarCount? data reading now working. Still hangs sometimes on Rx Data loss. Data not yet visible on web page.
- Deleted some unnecessary temp files from the compiler.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • webserver/example/EasyWEB/ARM Flash Release/EasyWeb.ld

    r10 r37  
    3838 
    3939  __vectors_ram_load_start__ = __SRAM_segment_start__; 
    40   .vectors_ram __SRAM_segment_start__ (NOLOAD) : 
     40  .vectors_ram __SRAM_segment_start__ (NOLOAD) : AT(__SRAM_segment_start__) 
    4141  { 
    4242    __vectors_ram_start__ = .; 
     
    4949 
    5050  __vectors_load_start__ = __FLASH_segment_start__; 
    51   .vectors __FLASH_segment_start__ : 
     51  .vectors __FLASH_segment_start__ : AT(__FLASH_segment_start__) 
    5252  { 
    5353    __vectors_start__ = .; 
     
    5959 
    6060  __init_load_start__ = ALIGN(__vectors_end__ , 4); 
    61   .init ALIGN(__vectors_end__ , 4) : 
     61  .init ALIGN(__vectors_end__ , 4) : AT(ALIGN(__vectors_end__ , 4)) 
    6262  { 
    6363    __init_start__ = .; 
     
    6969 
    7070  __text_load_start__ = ALIGN(__init_end__ , 4); 
    71   .text ALIGN(__init_end__ , 4) : 
     71  .text ALIGN(__init_end__ , 4) : AT(ALIGN(__init_end__ , 4)) 
    7272  { 
    7373    __text_start__ = .; 
     
    7979 
    8080  __dtors_load_start__ = ALIGN(__text_end__ , 4); 
    81   .dtors ALIGN(__text_end__ , 4) : 
     81  .dtors ALIGN(__text_end__ , 4) : AT(ALIGN(__text_end__ , 4)) 
    8282  { 
    8383    __dtors_start__ = .; 
     
    8989 
    9090  __ctors_load_start__ = ALIGN(__dtors_end__ , 4); 
    91   .ctors ALIGN(__dtors_end__ , 4) : 
     91  .ctors ALIGN(__dtors_end__ , 4) : AT(ALIGN(__dtors_end__ , 4)) 
    9292  { 
    9393    __ctors_start__ = .; 
     
    9999 
    100100  __rodata_load_start__ = ALIGN(__ctors_end__ , 4); 
    101   .rodata ALIGN(__ctors_end__ , 4) : 
     101  .rodata ALIGN(__ctors_end__ , 4) : AT(ALIGN(__ctors_end__ , 4)) 
    102102  { 
    103103    __rodata_start__ = .; 
     
    153153 
    154154  __bss_load_start__ = ALIGN(__data_run_end__ , 4); 
    155   .bss ALIGN(__data_run_end__ , 4) (NOLOAD) : 
     155  .bss ALIGN(__data_run_end__ , 4) (NOLOAD) : AT(ALIGN(__data_run_end__ , 4)) 
    156156  { 
    157157    __bss_start__ = .; 
     
    163163 
    164164  __non_init_load_start__ = ALIGN(__bss_end__ , 4); 
    165   .non_init ALIGN(__bss_end__ , 4) (NOLOAD) : 
     165  .non_init ALIGN(__bss_end__ , 4) (NOLOAD) : AT(ALIGN(__bss_end__ , 4)) 
    166166  { 
    167167    __non_init_start__ = .; 
     
    173173 
    174174  __heap_load_start__ = ALIGN(__non_init_end__ , 4); 
    175   .heap ALIGN(__non_init_end__ , 4) (NOLOAD) : 
     175  .heap ALIGN(__non_init_end__ , 4) (NOLOAD) : AT(ALIGN(__non_init_end__ , 4)) 
    176176  { 
    177177    __heap_start__ = .; 
     
    184184 
    185185  __stack_load_start__ = ALIGN(__heap_end__ , 4); 
    186   .stack ALIGN(__heap_end__ , 4) (NOLOAD) : 
     186  .stack ALIGN(__heap_end__ , 4) (NOLOAD) : AT(ALIGN(__heap_end__ , 4)) 
    187187  { 
    188188    __stack_start__ = .; 
     
    195195 
    196196  __stack_irq_load_start__ = ALIGN(__stack_end__ , 4); 
    197   .stack_irq ALIGN(__stack_end__ , 4) (NOLOAD) : 
     197  .stack_irq ALIGN(__stack_end__ , 4) (NOLOAD) : AT(ALIGN(__stack_end__ , 4)) 
    198198  { 
    199199    __stack_irq_start__ = .; 
     
    206206 
    207207  __stack_fiq_load_start__ = ALIGN(__stack_irq_end__ , 4); 
    208   .stack_fiq ALIGN(__stack_irq_end__ , 4) (NOLOAD) : 
     208  .stack_fiq ALIGN(__stack_irq_end__ , 4) (NOLOAD) : AT(ALIGN(__stack_irq_end__ , 4)) 
    209209  { 
    210210    __stack_fiq_start__ = .; 
     
    217217 
    218218  __stack_svc_load_start__ = ALIGN(__stack_fiq_end__ , 4); 
    219   .stack_svc ALIGN(__stack_fiq_end__ , 4) (NOLOAD) : 
     219  .stack_svc ALIGN(__stack_fiq_end__ , 4) (NOLOAD) : AT(ALIGN(__stack_fiq_end__ , 4)) 
    220220  { 
    221221    __stack_svc_start__ = .; 
     
    228228 
    229229  __stack_abt_load_start__ = ALIGN(__stack_svc_end__ , 4); 
    230   .stack_abt ALIGN(__stack_svc_end__ , 4) (NOLOAD) : 
     230  .stack_abt ALIGN(__stack_svc_end__ , 4) (NOLOAD) : AT(ALIGN(__stack_svc_end__ , 4)) 
    231231  { 
    232232    __stack_abt_start__ = .; 
     
    239239 
    240240  __stack_und_load_start__ = ALIGN(__stack_abt_end__ , 4); 
    241   .stack_und ALIGN(__stack_abt_end__ , 4) (NOLOAD) : 
     241  .stack_und ALIGN(__stack_abt_end__ , 4) (NOLOAD) : AT(ALIGN(__stack_abt_end__ , 4)) 
    242242  { 
    243243    __stack_und_start__ = .; 
  • webserver/example/EasyWEB/EasyWeb.hzs

    r12 r37  
    11<!DOCTYPE CrossStudio_for_ARM_Session_File> 
    22<session> 
    3  <Autos> 
    4   <Watches active="0" /> 
    5  </Autos> 
    63 <Bookmarks/> 
    74 <Breakpoints> 
    8   <BreakpointListItem actiontype="0" chainFrom="" line="10" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/CrossWorks_ARM_1_7/Projects/EasyWeb/catch_irqs.cpp" /> 
    9   <BreakpointListItem actiontype="0" chainFrom="" line="13" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" /> 
    10   <BreakpointListItem actiontype="0" chainFrom="" line="16" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/CrossWorks_ARM_1_7/Projects/EasyWeb/catch_irqs.cpp" /> 
    11   <BreakpointListItem actiontype="0" chainFrom="" line="19" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" /> 
    12   <BreakpointListItem actiontype="0" chainFrom="" line="22" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" /> 
    13   <BreakpointListItem actiontype="0" chainFrom="" line="22" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/CrossWorks_ARM_1_7/Projects/EasyWeb/catch_irqs.cpp" /> 
    14   <BreakpointListItem actiontype="0" chainFrom="" line="4" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/CrossWorks_ARM_1_7/Projects/EasyWeb/catch_irqs.cpp" /> 
    15   <BreakpointListItem actiontype="0" chainFrom="" line="4" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" /> 
    16   <BreakpointListItem actiontype="0" chainFrom="" line="7" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" /> 
    17   <BreakpointListItem actiontype="0" chainFrom="" line="42" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/CrossWorks_ARM_1_7/Projects/Blinky1/main.c" /> 
    18   <BreakpointListItem actiontype="0" chainFrom="" line="82" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Breakpoints" breakdatatype="0" value="0" name="unnamed" counter="0" state="4" mask="0" comparison="0" expression="" filename="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/tcpip.c" /> 
    19   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="D_Abort" filename="" /> 
    20   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="3" mask="0" comparison="0" expression="FIQ" filename="" /> 
    21   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="3" mask="0" comparison="0" expression="IRQ" filename="" /> 
    22   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="P_Abort" filename="" /> 
    23   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="3" mask="0" comparison="0" expression="Reset" filename="" /> 
    24   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="3" mask="0" comparison="0" expression="SWI" filename="" /> 
    25   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="ARM Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="Undef" filename="" /> 
    26   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="BusFault" filename="" /> 
    27   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="ExceptionEntryReturnFault" filename="" /> 
    28   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="HardFault" filename="" /> 
    29   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="MemManage" filename="" /> 
    30   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="3" mask="0" comparison="0" expression="Reset" filename="" /> 
    31   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="UsageFault_CheckingError" filename="" /> 
    32   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="UsageFault_Coprocessor" filename="" /> 
    33   <BreakpointListItem actiontype="0" chainFrom="" line="-1" defaultBreakType="true" length="0" triggertype="0" useHWbreakpoint="false" group="Cortex-M3 Exceptions" breakdatatype="5" value="0" name="unnamed" counter="0" state="2" mask="0" comparison="0" expression="UsageFault_StateError" filename="" /> 
     5  <BreakpointListItem line="10" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\CrossWorks_ARM_1_7\Projects\EasyWeb\catch_irqs.cpp" expression="" /> 
     6  <BreakpointListItem line="13" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="2" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\catch_irqs.cpp" expression="" /> 
     7  <BreakpointListItem line="16" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\CrossWorks_ARM_1_7\Projects\EasyWeb\catch_irqs.cpp" expression="" /> 
     8  <BreakpointListItem line="19" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="2" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\catch_irqs.cpp" expression="" /> 
     9  <BreakpointListItem line="22" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\catch_irqs.cpp" expression="" /> 
     10  <BreakpointListItem line="22" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\CrossWorks_ARM_1_7\Projects\EasyWeb\catch_irqs.cpp" expression="" /> 
     11  <BreakpointListItem line="4" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\CrossWorks_ARM_1_7\Projects\EasyWeb\catch_irqs.cpp" expression="" /> 
     12  <BreakpointListItem line="4" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\catch_irqs.cpp" expression="" /> 
     13  <BreakpointListItem line="7" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\catch_irqs.cpp" expression="" /> 
     14  <BreakpointListItem line="36" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="2" counter="0" isFunctionBreakpoint="false" filename="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\easyweb.c" expression="" /> 
     15  <BreakpointListItem line="42" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\CrossWorks_ARM_1_7\Projects\Blinky1\main.c" expression="" /> 
     16  <BreakpointListItem line="82" action="" hardwareBreakpoint="" trigger="" useHWbreakpoint="false" group="Breakpoints" type="Breakpoint" state="4" counter="0" isFunctionBreakpoint="false" filename="\home\phil\Desktop\SVN\philsvn\webserver\example\EasyWEB\tcpip.c" expression="" /> 
    3417 </Breakpoints> 
    3518 <ExecutionCountWindow/> 
     
    4629  <MemoryWindow autoEvaluate="0" addressText="" numColumns="8" sizeText="" dataSize="1" radix="16" addressSpace="" /> 
    4730 </Memory4> 
    48  <MemoryUsageWindow> 
    49   <ProjectSessionItem path="EasyWeb" name="unnamed" /> 
    50   <ProjectSessionItem path="EasyWeb;EasyWeb" name="unnamed" /> 
    51   <ProjectSessionItem path="EasyWeb;EasyWeb;Source Files" name="unnamed" /> 
    52   <ProjectSessionItem path="EasyWeb;EasyWeb;System Files" name="unnamed" /> 
    53  </MemoryUsageWindow> 
    5431 <Project> 
    5532  <ProjectSessionItem path="EasyWeb" name="unnamed" /> 
    5633  <ProjectSessionItem path="EasyWeb;EasyWeb" name="unnamed" /> 
    5734  <ProjectSessionItem path="EasyWeb;EasyWeb;Source Files" name="unnamed" /> 
    58   <ProjectSessionItem path="EasyWeb;EasyWeb;System Files" name="unnamed" /> 
    5935 </Project> 
    6036 <Register1> 
     
    7046  <RegisterWindow openNodes="" binaryNodes="" unsignedNodes="" visibleGroups="" decimalNodes="" octalNodes="" asciiNodes="" /> 
    7147 </Register4> 
    72  <SourceNavigatorWindow/> 
     48 <TargetWindow programAction="" uploadFileType="" programLoadAddress="" programSize="" uploadFileName="" uploadMemoryInterface="" programFileName="" uploadStartAddress="" programFileType="" uploadSize="" programMemoryInterface="" /> 
    7349 <TraceWindow> 
    74   <Trace wrap="Yes" type="1" enabled="Yes" /> 
     50  <Trace enabled="Yes" /> 
    7551 </TraceWindow> 
    7652 <Watch1> 
    77   <Watches active="1"
     53  <Watches active="1" update="Never"
    7854   <Watchpoint linenumber="921" radix="16" name="T0IR" expression="T0IR" filename="./tcpip.c" /> 
    7955   <Watchpoint linenumber="920" radix="16" name="TCPTimer" expression="TCPTimer" filename="./tcpip.c" /> 
     
    8258 </Watch1> 
    8359 <Watch2> 
    84   <Watches active="0" /> 
     60  <Watches active="0" update="Never" /> 
    8561 </Watch2> 
    8662 <Watch3> 
    87   <Watches active="0" /> 
     63  <Watches active="0" update="Never" /> 
    8864 </Watch3> 
    8965 <Watch4> 
    90   <Watches active="0" /> 
     66  <Watches active="0" update="Never" /> 
    9167 </Watch4> 
    9268 <Files> 
    93   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="71" debugPath="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/Philips_LPC230X_Startup.s" y="17" path="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/Philips_LPC230X_Startup.s" left="0" selected="0" name="unnamed" top="276" /> 
    94   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/easyweb.c" y="29" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/easyweb.c" left="0" selected="0" name="unnamed" top="5" /> 
    95   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="60" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/tcpip.c" y="42" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/tcpip.c" left="0" selected="0" name="unnamed" top="33" /> 
    96   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/EMAC.c" y="326" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/EMAC.c" left="0" selected="0" name="unnamed" top="299" /> 
    97   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/VIC_PL192_irq_handler.s" y="0" path="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/VIC_PL192_irq_handler.s" left="0" selected="0" name="unnamed" top="0" /> 
    98   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/VIC_PL192.c" y="0" path="/home/phil/CrossWorks_ARM_1_7/targets/Philips_LPC210X/VIC_PL192.c" left="0" selected="0" name="unnamed" top="63" /> 
    99   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/webpage.h" y="0" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/webpage.h" left="0" selected="0" name="unnamed" top="0" /> 
    100   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/Retarget.c" y="0" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/Retarget.c" left="0" selected="0" name="unnamed" top="0" /> 
    101   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/LPC23xx.h" y="0" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/LPC23xx.h" left="0" selected="0" name="unnamed" top="0" /> 
    102   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/EMAC.h" y="0" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/EMAC.h" left="0" selected="0" name="unnamed" top="0" /> 
    103   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="25" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" y="18" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/catch_irqs.cpp" left="0" selected="0" name="unnamed" top="0" /> 
    104   <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="43" debugPath="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/tcpip.h" y="271" path="/home/phil/Desktop/SVN/philsvn/webserver/example/EasyWEB/tcpip.h" left="0" selected="1" name="unnamed" top="246" /> 
     69  <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="37" debugPath="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\easyweb.c" y="24" path="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\easyweb.c" left="0" selected="0" name="unnamed" top="30" /> 
     70  <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\catch_irqs.cpp" y="0" path="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\catch_irqs.cpp" left="0" selected="0" name="unnamed" top="0" /> 
     71  <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\EMAC.c" y="0" path="C:\Dokumente und Einstellungen\phil\Desktop\repo\webserver\example\EasyWEB\EMAC.c" left="0" selected="1" name="unnamed" top="372" /> 
    10572 </Files> 
    106  <ARMCrossStudioWindow activeProject="EasyWeb" autoConnectTarget="/Macraigor Wiggler (20 Pin)" debugSearchFileMap="" fileDialogInitialDirectory="/home/phil/CrossWorks_ARM_1_7/Projects/EasyWeb" fileDialogDefaultFilter="*.cpp;*.cxx;*.cc;*.c;*.h;*.hpp;*.hxx" autoConnectCapabilities="1407" debugSearchPath="" buildConfiguration="ARM Flash Release" /> 
     73 <ARMCrossStudioWindow activeProject="EasyWeb" autoConnectTarget="/Macraigor Wiggler (20 Pin)" debugSearchFileMap="" fileDialogInitialDirectory="\home\phil\CrossWorks_ARM_1_7\Projects\EasyWeb" fileDialogDefaultFilter="*.c" autoConnectCapabilities="1407" debugSearchPath="" buildConfiguration="ARM Flash Release" /> 
    10774</session>