]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_R4_RM48_TMS570_CCS5/Library/het.c
a32ab29894e6d5c8538a4a39a43e69cade85ab4f
[freertos] / FreeRTOS / Demo / CORTEX_R4_RM48_TMS570_CCS5 / Library / het.c
1 /*\r
2  * FreeRTOS Kernel V10.2.1\r
3  * Copyright (C) 2019 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 #include "FreeRTOS.h"\r
29 #include "task.h"\r
30 #include "gio.h"\r
31 #include "het.h"\r
32 \r
33 /*\r
34  * Task that flashes the LEDS on the USB stick.\r
35  *\r
36  * This task is also run in Thumb mode to test the ARM/THUMB context switch\r
37  */\r
38 \r
39 #pragma TASK(vLedTask)\r
40 #pragma CODE_STATE(vLedTask, 16)\r
41 \r
42 void vLedTask(void *pvParameters)\r
43 {\r
44         unsigned led    = 0;\r
45         unsigned count  = 0;\r
46         unsigned colour = 0;\r
47 \r
48         /* Initalise the IO ports that drive the LEDs */\r
49         gioSetDirection(hetPORT, 0xFFFFFFFF);\r
50         /* switch all leds off */\r
51         gioSetPort(hetPORT, 0x08110034);\r
52 \r
53         for(;;)\r
54         {\r
55                 /* toggle on/off */\r
56                 led ^= 1;\r
57                 /* switch TOP row */\r
58                 gioSetBit(hetPORT, 25, led);\r
59                 gioSetBit(hetPORT, 18, led);\r
60                 gioSetBit(hetPORT, 29, led);\r
61                 /* switch BOTTOM row */\r
62                 gioSetBit(hetPORT, 17, led ^ 1);\r
63                 gioSetBit(hetPORT, 31, led ^ 1);\r
64                 gioSetBit(hetPORT,  0, led ^ 1);\r
65                 vTaskDelay(500);\r
66 \r
67                 if (++count > 5)\r
68                 {\r
69                         count = 0;\r
70                         /* both leds to off */\r
71                         gioSetBit(hetPORT, 2, 1);  gioSetBit(hetPORT,  5, 1);  gioSetBit(hetPORT, 20, 1);\r
72                         gioSetBit(hetPORT, 4, 1);  gioSetBit(hetPORT, 27, 1);  gioSetBit(hetPORT, 16, 1);\r
73                         switch(colour)\r
74                         {\r
75                         case 0:\r
76                                 gioSetBit(hetPORT, 2, 0);  /* red */\r
77                                 gioSetBit(hetPORT, 4, 0);\r
78                                 colour++;\r
79                                 continue;\r
80                         case 1:\r
81                                 gioSetBit(hetPORT,  5, 0);  /* blue */\r
82                                 gioSetBit(hetPORT, 27, 0);\r
83                                 colour++;\r
84                                 continue;\r
85                         case 2:\r
86                                 gioSetBit(hetPORT, 20, 0);  /* green */\r
87                                 gioSetBit(hetPORT, 16, 0);\r
88                                 colour++;\r
89                                 continue;\r
90                         }\r
91                         colour = 0;\r
92                 }\r
93         }\r
94 }\r
95 \r