]> git.sur5r.net Git - freertos/blob - Demo/MB96350_Softune_Dice_Kit/DiceTask.c
Continue FX16 demo development.
[freertos] / Demo / MB96350_Softune_Dice_Kit / DiceTask.c
1 /*\r
2         FreeRTOS.org V5.1.1 - Copyright (C) 2003-2008 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26     ***************************************************************************\r
27     ***************************************************************************\r
28     *                                                                         *\r
29     * SAVE TIME AND MONEY!  We can port FreeRTOS.org to your own hardware,    *\r
30     * and even write all or part of your application on your behalf.          *\r
31     * See http://www.OpenRTOS.com for details of the services we provide to   *\r
32     * expedite your project.                                                  *\r
33     *                                                                         *\r
34     ***************************************************************************\r
35     ***************************************************************************\r
36 \r
37         Please ensure to read the configuration and relevant port sections of the\r
38         online documentation.\r
39 \r
40         http://www.FreeRTOS.org - Documentation, latest information, license and \r
41         contact details.\r
42 \r
43         http://www.SafeRTOS.com - A version that is certified for use in safety \r
44         critical systems.\r
45 \r
46         http://www.OpenRTOS.com - Commercial support, development, porting, \r
47         licensing and training services.\r
48 */\r
49 \r
50 #include "FreeRTOS.h"\r
51 #include "task.h"\r
52 \r
53 #define diceMIN    1\r
54 #define diceMAX    6\r
55 #define diceRUN_MIN  600000L\r
56 #define diceRUN_MAX 1200000L\r
57 \r
58 #define diceSTATE_STOPPED               0\r
59 #define diceSTATE_STARTUP               1\r
60 #define diceSTATE_RUNNING               2\r
61 \r
62 #define diceEND_DELAY                   ( 5000 / portTICK_RATE_MS )\r
63 \r
64 #define dice7SEG_Value( x )             *( pucDisplayOutput[ x ] )\r
65 \r
66 static unsigned char prvButtonHit( unsigned char ucIndex );\r
67 \r
68 static const char cDisplaySegments[ 2 ][ 11 ] =\r
69 {\r
70         { 0x48, 0xeb, 0x8c, 0x89, 0x2b, 0x19, 0x18, 0xcb, 0x08, 0x09, 0xf7 },\r
71         { 0xa0, 0xf3, 0xc4, 0xc1, 0x93, 0x89, 0x88, 0xe3, 0x80, 0x81, 0x7f }\r
72 };\r
73 \r
74 extern volatile unsigned char *pucDisplayOutput[ 2 ];\r
75 \r
76 /*-----------------------------------------------------------*/\r
77 \r
78 void vDiceTask( void *pvParameters )\r
79 {\r
80 char cDiceState = diceSTATE_STOPPED;\r
81 unsigned char ucDiceValue, ucIndex;\r
82 unsigned long ulDiceRunTime, ulDiceDelay, ulDiceDelayReload;\r
83 extern void vToggleFlashTaskSuspendState( void );\r
84 \r
85         ucIndex = ( unsigned char ) pvParameters;\r
86 \r
87         for( ;; )\r
88         {\r
89                 switch( cDiceState )\r
90                 {\r
91                         case diceSTATE_STOPPED:\r
92 \r
93                                 if( prvButtonHit( ucIndex ) == pdTRUE )\r
94                                 {\r
95                                         ulDiceRunTime = diceRUN_MIN;\r
96                                         srand( ( unsigned char ) ulDiceRunTime );\r
97                                         cDiceState = diceSTATE_STARTUP;\r
98                                 }\r
99 \r
100                                 break;\r
101 \r
102                         case diceSTATE_STARTUP:\r
103 \r
104                                 if( ulDiceRunTime < diceRUN_MAX )     // variable running time\r
105                                 {\r
106                                         ulDiceRunTime++;\r
107                                 }\r
108                                 else\r
109                                 {\r
110                                         ulDiceRunTime = diceRUN_MIN;\r
111                                 }\r
112 \r
113                                 if( prvButtonHit( ucIndex ) == pdFALSE )\r
114                                 {\r
115                                         if( ucIndex == 0 )\r
116                                         {\r
117                                                 vToggleFlashTaskSuspendState();\r
118                                         }\r
119 \r
120                                         ulDiceDelay = 1;\r
121                                         ulDiceDelayReload = 1;\r
122                                         cDiceState = diceSTATE_RUNNING;\r
123                                 }   \r
124                                        \r
125                                 break;\r
126 \r
127                         case diceSTATE_RUNNING:\r
128 \r
129                                 ulDiceRunTime--;\r
130                                 ulDiceDelay--;\r
131 \r
132                                 if( !ulDiceDelay )\r
133                                 {\r
134                                         ucDiceValue = rand() % 6 + 1;\r
135                                         dice7SEG_Value( ucIndex ) = ( dice7SEG_Value( ucIndex ) | 0xf7 ) & cDisplaySegments[ ucIndex ][ ucDiceValue ];\r
136                                         ulDiceDelayReload = ulDiceDelayReload + 100;\r
137                                         ulDiceDelay = ulDiceDelayReload;\r
138                                 }\r
139 \r
140                                 if( ulDiceRunTime == 0 )\r
141                                 {\r
142                                         dice7SEG_Value( ucIndex ) = ( dice7SEG_Value( ucIndex ) | 0xf7 ) & cDisplaySegments[ ucIndex ][ rand() % 6 + 1 ];\r
143                                         cDiceState = diceSTATE_STOPPED;\r
144 \r
145                                         if( ucIndex == 0 )\r
146                                         {\r
147                                                 vTaskDelay( diceEND_DELAY );\r
148                                                 *pucDisplayOutput[ ucIndex ] = 0xff;\r
149                                                 vToggleFlashTaskSuspendState();\r
150                                         }\r
151                                 }\r
152 \r
153                                 break;\r
154                 }\r
155         }\r
156 }\r
157 /*-----------------------------------------------------------*/\r
158 \r
159 static unsigned char prvButtonHit( unsigned char ucIndex )\r
160 {\r
161         if( ( ucIndex == 0 ) && PDR00_P0 )\r
162         {\r
163                 return pdTRUE;\r
164         }\r
165         else if( ( ucIndex == 1 ) && PDR00_P1 )\r
166         {\r
167                 return pdTRUE;\r
168         }\r
169         else\r
170         {\r
171                 return pdFALSE;\r
172         }\r
173 }\r
174 /*-----------------------------------------------------------*/\r
175 \r
176 \r
177 \r
178 \r
179 \r
180 \r
181 \r