Update to V6.0.2.

This commit is contained in:
Richard Barry 2010-01-09 14:48:45 +00:00
parent 4f59d550c6
commit c99f3c55cd
522 changed files with 1253 additions and 1254 deletions

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
#/* #/*
# FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. # FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
# #
# *************************************************************************** # ***************************************************************************
# * * # * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -2,51 +2,42 @@
/*-Editor annotation file-*/ /*-Editor annotation file-*/
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */ /* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
/*-Specials-*/ /*-Specials-*/
define symbol __ICFEDIT_intvec_start__ = 0x00000000; define symbol __ICFEDIT_intvec_start__ = 0x00100000;
/*-Memory Regions-*/ /*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x100000; define symbol __ICFEDIT_region_ROM_start__ = 0x00100040;
define symbol __ICFEDIT_region_ROM_end__ = 0x10FFFF; define symbol __ICFEDIT_region_ROM_end__ = 0x10FFFF;
define symbol __ICFEDIT_region_RAM_start__ = 0x00200000; define symbol __ICFEDIT_region_RAM_start__ = 0x200000;
define symbol __ICFEDIT_region_RAM_end__ = 0x00203FFF; define symbol __ICFEDIT_region_RAM_end__ = 0x203FFF;
/*-Sizes-*/ /*-Sizes-*/
define symbol __ICFEDIT_size_cstack__ = 0x200; define symbol __ICFEDIT_size_cstack__ = 0x400;
define symbol __ICFEDIT_size_svcstack__ = 0x200; define symbol __ICFEDIT_size_svcstack__ = 0x100;
define symbol __ICFEDIT_size_irqstack__ = 0x200; define symbol __ICFEDIT_size_irqstack__ = 0x100;
define symbol __ICFEDIT_size_fiqstack__ = 0x4; define symbol __ICFEDIT_size_fiqstack__ = 0x0;
define symbol __ICFEDIT_size_undstack__ = 0x4; define symbol __ICFEDIT_size_undstack__ = 0x0;
define symbol __ICFEDIT_size_abtstack__ = 0x4; define symbol __ICFEDIT_size_abtstack__ = 0x0;
define symbol __ICFEDIT_size_heap__ = 0x4; define symbol __ICFEDIT_size_heap__ = 0x0;
/*-Exports-*/
export symbol __ICFEDIT_region_ROM_start__;
export symbol __ICFEDIT_region_ROM_end__;
export symbol __ICFEDIT_region_RAM_start__;
export symbol __ICFEDIT_region_RAM_end__;
export symbol __ICFEDIT_size_startup__;
export symbol __ICFEDIT_size_vectors__;
export symbol __ICFEDIT_size_cstack__;
export symbol __ICFEDIT_size_sysstack__;
export symbol __ICFEDIT_size_irqstack__;
export symbol __ICFEDIT_size_heap__;
/**** End of ICF editor section. ###ICF###*/ /**** End of ICF editor section. ###ICF###*/
define memory mem with size = 4G; define memory mem with size = 4G;
define region STA_region = mem:[from __ICFEDIT_region_ROM_start__ size __ICFEDIT_size_startup__]; define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__+__ICFEDIT_size_startup__ to __ICFEDIT_region_ROM_end__]; define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
define region VEC_region = mem:[from __ICFEDIT_region_RAM_start__ size __ICFEDIT_size_vectors__];
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__+__ICFEDIT_size_vectors__ to __ICFEDIT_region_RAM_end__];
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
define block SYS_STACK with alignment = 8, size = __ICFEDIT_size_sysstack__ { }; define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { }; define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
initialize by copy { readwrite }; initialize by copy { readwrite };
initialize by copy { section .vectors };
do not initialize { section .noinit }; do not initialize { section .noinit };
place in STA_region { section .cstartup }; place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
place in ROM_region { readonly };
place in VEC_region { section .vectors }; place in ROM_region { readonly };
place in RAM_region { readwrite, block IRQ_STACK, block SYS_STACK, block CSTACK, block HEAP }; place in RAM_region { readwrite,
block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
block UND_STACK, block ABT_STACK, block HEAP };

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -48,14 +48,14 @@
<Pane><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>880</SelStart><SelEnd>880</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\SrcIAR\Cstartup.s</Filename><XPos>0</XPos><YPos>49</YPos><SelStart>3250</SelStart><SelEnd>3250</SelEnd></Tab><ActiveTab>1</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor> <Pane><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>880</SelStart><SelEnd>880</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\temp\rc\1\FreeRTOS\Demo\ARM7_AT91SAM7S64_IAR\SrcIAR\Cstartup.s</Filename><XPos>0</XPos><YPos>213</YPos><SelStart>8773</SelStart><SelEnd>8773</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\temp\rc\1\FreeRTOS\Source\portable\IAR\AtmelSAM7S64\AT91SAM7S64.h</Filename><XPos>0</XPos><YPos>18</YPos><SelStart>2080</SelStart><SelEnd>2080</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\temp\rc\1\FreeRTOS\Source\portable\IAR\AtmelSAM7S64\port.c</Filename><XPos>0</XPos><YPos>234</YPos><SelStart>9960</SelStart><SelEnd>9960</SelEnd></Tab><ActiveTab>3</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Positions> <Positions>
<Top><Row0><Sizes><Toolbar-00abb068><key>iaridepm.enu1</key></Toolbar-00abb068><Toolbar-04734888><key>debuggergui.enu1</key></Toolbar-04734888></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>740</Bottom><Right>278</Right><x>-2</x><y>-2</y><xscreen>0</xscreen><yscreen>0</yscreen><sizeHorzCX>0</sizeHorzCX><sizeHorzCY>0</sizeHorzCY><sizeVertCX>166667</sizeVertCX><sizeVertCY>755601</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203666</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions> <Top><Row0><Sizes><Toolbar-00abb198><key>iaridepm.enu1</key></Toolbar-00abb198><Toolbar-049f1f30><key>debuggergui.enu1</key></Toolbar-049f1f30></Sizes></Row0></Top><Left><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>740</Bottom><Right>278</Right><x>-2</x><y>-2</y><xscreen>0</xscreen><yscreen>0</yscreen><sizeHorzCX>0</sizeHorzCX><sizeHorzCY>0</sizeHorzCY><sizeVertCX>166667</sizeVertCX><sizeVertCY>755601</sizeVertCY></Rect></Wnd0></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203666</sizeVertCY></Rect></Wnd1></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop> </Desktop>
</Project> </Project>

View file

@ -27,7 +27,7 @@ ByteLimit=50
Enabled=0 Enabled=0
ShowSource=1 ShowSource=1
[DebugChecksum] [DebugChecksum]
Checksum=-39238073 Checksum=-1701609349
[InstructionProfiling] [InstructionProfiling]
Enabled=_ 0 Enabled=_ 0
[Log file] [Log file]

View file

@ -3,7 +3,7 @@
<Workspace> <Workspace>
<ConfigDictionary> <ConfigDictionary>
<CurrentConfigs><Project>rtosdemo/Flash Bin</Project></CurrentConfigs></ConfigDictionary> <CurrentConfigs><Project>rtosdemo/Flash Debug</Project></CurrentConfigs></ConfigDictionary>
<Desktop> <Desktop>
<Static> <Static>
<Workspace> <Workspace>
@ -36,7 +36,7 @@
<Factory>Workspace</Factory> <Factory>Workspace</Factory>
<Session> <Session>
<NodeDict><ExpandedNode>rtosdemo</ExpandedNode><ExpandedNode>rtosdemo/Demo Source</ExpandedNode></NodeDict></Session> <NodeDict><ExpandedNode>rtosdemo</ExpandedNode></NodeDict></Session>
</Tab> </Tab>
</Tabs> </Tabs>
@ -62,14 +62,14 @@
<Pane><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>880</SelStart><SelEnd>880</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\SrcIAR\Cstartup.s</Filename><XPos>0</XPos><YPos>49</YPos><SelStart>3250</SelStart><SelEnd>3250</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\resource\at91SAM7S64_FLASH.icf</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>1038</SelStart><SelEnd>1045</SelEnd></Tab><ActiveTab>2</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor> <Pane><Tab><Factory>TextEditor</Factory><Filename>C:\E\Dev\FreeRTOS\WorkingCopy\Demo\ARM7_AT91SAM7S64_IAR\main.c</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>880</SelStart><SelEnd>880</SelEnd></Tab><ActiveTab>0</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
<Positions> <Positions>
<Top><Row0><Sizes><Toolbar-00abb068><key>iaridepm.enu1</key></Toolbar-00abb068></Sizes></Row0><Row1><Sizes/></Row1></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>576</Bottom><Right>310</Right><x>-2</x><y>-2</y><xscreen>32</xscreen><yscreen>26</yscreen><sizeHorzCX>19048</sizeHorzCX><sizeHorzCY>26477</sizeHorzCY><sizeVertCX>185714</sizeVertCX><sizeVertCY>588595</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>362</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>364</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>370672</sizeHorzCY><sizeVertCX>19048</sizeVertCX><sizeVertCY>26477</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions> <Top><Row0><Sizes><Toolbar-00abb198><key>iaridepm.enu1</key></Toolbar-00abb198></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>576</Bottom><Right>310</Right><x>-2</x><y>-2</y><xscreen>32</xscreen><yscreen>26</yscreen><sizeHorzCX>19048</sizeHorzCX><sizeHorzCY>26477</sizeHorzCY><sizeVertCX>185714</sizeVertCX><sizeVertCY>588595</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>362</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>364</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>370672</sizeHorzCY><sizeVertCX>19048</sizeVertCX><sizeVertCY>26477</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
</Desktop> </Desktop>
</Workspace> </Workspace>

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
#/* #/*
# FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. # FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
# #
# *************************************************************************** # ***************************************************************************
# * * # * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
#/* #/*
# FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. # FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
# #
# *************************************************************************** # ***************************************************************************
# * * # * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -64,15 +64,15 @@ FIQ_Stack_Size EQU 0x00000008
IRQ_Stack_Size EQU 0x00000300 IRQ_Stack_Size EQU 0x00000300
USR_Stack_Size EQU 0x00000008 USR_Stack_Size EQU 0x00000008
ISR_Stack_Size EQU (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + \ Stack_Size EQU (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + \
FIQ_Stack_Size + IRQ_Stack_Size) FIQ_Stack_Size + IRQ_Stack_Size + USR_Stack_Size )
AREA STACK, NOINIT, READWRITE, ALIGN=3 AREA STACK, NOINIT, READWRITE, ALIGN=3
Stack_Mem SPACE Stack_Size
Stack_Mem SPACE USR_Stack_Size ;__initial_sp SPACE ISR_Stack_Size
__initial_sp SPACE ISR_Stack_Size
Stack_Top Stack_Top EQU Stack_Mem + Stack_Size
;// <h> Heap Configuration ;// <h> Heap Configuration
@ -419,8 +419,8 @@ MEMMAP EQU 0xE01FC040 ; Memory Mapping Control
__user_initial_stackheap __user_initial_stackheap
LDR R0, = Heap_Mem LDR R0, = Heap_Mem
LDR R1, =(Stack_Mem + USR_Stack_Size) LDR R1, = (Stack_Mem + IRQ_Stack_Size + USR_Stack_Size)
LDR R2, = (Heap_Mem + Heap_Size) LDR R2, = (Heap_Mem + Heap_Size)
LDR R3, = Stack_Mem LDR R3, = Stack_Mem
BX LR BX LR
ENDIF ENDIF

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
;/* ;/*
; FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. ; FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
; ;
; *************************************************************************** ; ***************************************************************************
; * * ; * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
#/* #/*
# FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. # FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
# #
# *************************************************************************** # ***************************************************************************
# * * # * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,6 +1,6 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

View file

@ -1,5 +1,5 @@
/* /*
FreeRTOS V6.0.1 - Copyright (C) 2009 Real Time Engineers Ltd. FreeRTOS V6.0.2 - Copyright (C) 2010 Real Time Engineers Ltd.
*************************************************************************** ***************************************************************************
* * * *

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