1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include <FreeRTOS.h>
#include <task.h>
#include <semphr.h>
#include <lpc17xx_gpio.h>
#include <BoardConsole.h>
#include <osdebug.h>
#include <stdio.h>
#define LED1_wire 18
#define LED2_wire 20
#define LED3_wire 21
#define LED4_wire 23
static void setupLEDs() {
GPIO_SetDir(1, (1 << LED1_wire) | (1 << LED2_wire) | (1 << LED3_wire) | (1 << LED4_wire), 1);
}
static void litLED(int led, int value) {
if ((led > 4) || (led < 0))
return;
switch (led) {
case 1: led = 1 << LED1_wire; break;
case 2: led = 1 << LED2_wire; break;
case 3: led = 1 << LED3_wire; break;
case 4: led = 1 << LED4_wire; break;
}
if (value) {
GPIO_SetValue(1, led);
} else {
GPIO_ClearValue(1, led);
}
}
xSemaphoreHandle handle;
static void simpleTask1(void *p) {
while (1) {
xSemaphoreTake(handle, portMAX_DELAY);
BoardConsolePuts("Task 1");
xSemaphoreGive(handle);
vTaskDelay(1234);
}
}
static void simpleTask2(void *p) {
while (1) {
xSemaphoreTake(handle, portMAX_DELAY);
BoardConsolePuts("Task 2");
xSemaphoreGive(handle);
vTaskDelay(1357);
}
}
static void badTask(void *x) {
vTaskDelay(5000);
char * p = (char *) 0x10000000;
*p = 42;
}
int main() {
handle = xSemaphoreCreateMutex();
printf("Hello world - from stdio!\r\n");
setupLEDs();
litLED(1, 0);
litLED(2, 0);
litLED(3, 0);
litLED(4, 0);
BoardConsolePuts("Creating simple tasks.");
xTaskCreate(simpleTask1, (signed char *) "st1", configMINIMAL_STACK_SIZE, (void *)NULL, tskIDLE_PRIORITY, NULL);
xTaskCreate(simpleTask2, (signed char *) "st2", configMINIMAL_STACK_SIZE, (void *)NULL, tskIDLE_PRIORITY, NULL);
xTaskCreate(badTask, (signed char *) "bad", configMINIMAL_STACK_SIZE, (void *)NULL, tskIDLE_PRIORITY, NULL);
BoardConsolePuts("Scheduler starting.");
vTaskStartScheduler();
BoardConsolePuts("Scheduler exitting.");
return 0;
}
|