2 ; FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
\r
5 ; ***************************************************************************
\r
7 ; * FreeRTOS tutorial books are available in pdf and paperback. *
\r
8 ; * Complete, revised, and edited pdf reference manuals are also *
\r
11 ; * Purchasing FreeRTOS documentation will not only help you, by *
\r
12 ; * ensuring you get running as quickly as possible and with an *
\r
13 ; * in-depth knowledge of how to use FreeRTOS, it will also help *
\r
14 ; * the FreeRTOS project to continue with its mission of providing *
\r
15 ; * professional grade, cross platform, de facto standard solutions *
\r
16 ; * for microcontrollers - completely free of charge! *
\r
18 ; * >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
\r
20 ; * Thank you for using FreeRTOS, and thank you for your support! *
\r
22 ; ***************************************************************************
\r
25 ; This file is part of the FreeRTOS distribution.
\r
27 ; FreeRTOS is free software; you can redistribute it and/or modify it under
\r
28 ; the terms of the GNU General Public License (version 2) as published by the
\r
29 ; Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
\r
30 ; >>>NOTE<<< The modification to the GPL is included to allow you to
\r
31 ; distribute a combined work that includes FreeRTOS without being obliged to
\r
32 ; provide the source code for proprietary components outside of the FreeRTOS
\r
33 ; kernel. FreeRTOS is distributed in the hope that it will be useful, but
\r
34 ; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
\r
35 ; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
\r
36 ; more details. You should have received a copy of the GNU General Public
\r
37 ; License and the FreeRTOS license exception along with FreeRTOS; if not it
\r
38 ; can be viewed here: http://www.freertos.org/a00114.html and also obtained
\r
39 ; by writing to Richard Barry, contact details for whom are available on the
\r
40 ; FreeRTOS WEB site.
\r
42 ; 1 tab == 4 spaces!
\r
44 ; http://www.FreeRTOS.org - Documentation, latest information, license and
\r
47 ; http://www.SafeRTOS.com - A version that is certified for use in safety
\r
50 ; http://www.OpenRTOS.com - Commercial support, development, porting,
\r
51 ; licensing and training services.
\r
56 ; This file defines the RegTest tasks as described at the top of main.c
\r
59 ;------------------------------------------------------------------------------
\r
62 ; Functions implemented in this file
\r
63 ;------------------------------------------------------------------------------
\r
65 PUBLIC vRegTest1Task
\r
66 PUBLIC vRegTest2Task
\r
68 ; Functions and variables used by this file
\r
69 ;------------------------------------------------------------------------------
\r
70 EXTERN vRegTestError
\r
71 EXTERN usRegTest1LoopCounter
\r
72 EXTERN usRegTest2LoopCounter
\r
74 ;------------------------------------------------------------------------------
\r
75 ; Fill all the registers with known values, then check that the registers
\r
76 ; contain the expected value. An incorrect value being indicative of an
\r
77 ; error in the context switch mechanism.
\r
81 ; Call: Created as a task.
\r
85 ;------------------------------------------------------------------------------
\r
89 ; First fill the registers.
\r
96 #if __DATA_MODEL__ == __DATA_MODEL_FAR__
\r
98 ; ES is not saved or restored when using the near memory model so only
\r
99 ; test it when using the far model.
\r
106 ; Continuously check that the register values remain at their expected
\r
107 ; values. The BRK is to test the yield. This task runs at low priority
\r
108 ; so will also regularly get preempted.
\r
111 ; Compare with the expected value.
\r
115 ; Jump over the branch to vRegTestError() if the register contained the
\r
116 ; expected value - otherwise flag an error by executing vRegTestError().
\r
119 ; Repeat for all the registers.
\r
137 #if __DATA_MODEL__ == __DATA_MODEL_FAR__
\r
139 ; ES is not saved or restored when using the near memory model so only
\r
140 ; test it when using the far model.
\r
148 ; Indicate that this task is still cycling.
\r
149 INCW usRegTest1LoopCounter
\r
155 ;------------------------------------------------------------------------------
\r
156 ; Fill all the registers with known values, then check that the registers
\r
157 ; contain the expected value. An incorrect value being indicative of an
\r
158 ; error in the context switch mechanism.
\r
162 ; Call: Created as a task.
\r
166 ;------------------------------------------------------------------------------
\r
176 #if __DATA_MODEL__ == __DATA_MODEL_FAR__
\r
203 #if __DATA_MODEL__ == __DATA_MODEL_FAR__
\r
212 ; Indicate that this task is still cycling.
\r
213 INCW usRegTest2LoopCounter
\r