blob: 4fad440694518d3143a4b519ad378a0789e32eb6 (
plain) (
blame)
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
|
/*
* camera.c
*
* Created on: 23.10.2011
* Author: Roland
*/
#include "Types.h"
#include "FreeRTOS.h"
#include "queue.h"
#define TASK_PRIORITY_camera ( tskIDLE_PRIORITY + 2 )
#define TASK_STACK_SIZE_camera ( ( unsigned short ) 64 )
/* Globals */
static Task_Param_t TaskParam_Camera;
/*
* Wake up other tasks, send them messages telling what to do,
* wait for them to have processed the commands or not, maybe
* put them to sleep again, ...
* */
static void camera_Process_Task(void *Param)
{
Message_t Msg;
if(NULL == TaskParam_Camera.QueueHandles.hxq_Camera)
{
return;
}
while(1)
{
if( xQueueReceive( TaskParam_Camera.QueueHandles.hxq_Camera,
&Msg, portTICK_RATE_MS * 5 ))
{
/*
* switch Msg.Sender
*
*/
;
}
}
}
Status_t camera_Init_Camera(QH_t hxQueues)
{
TaskParam_Camera.QueueHandles = hxQueues;
if(!xTaskCreate( camera_Process_Task, (signed char *) "Camera",
TASK_STACK_SIZE_camera, &TaskParam_Camera,
TASK_PRIORITY_camera, &(TaskParam_Camera.hxTask_Self)))
return STATUS_ERROR_INIT;
/*TODO: check for success and pass it over to caller. */
return STATUS_OK;
}
|