FreeRTOS C-Addons  1.1.0
C-Addon functionality to FreeRTOS
workqueue.h
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2017, Michael Becker (michael.f.becker@gmail.com)
4  *
5  * This file is part of the FreeRTOS Add-ons project.
6  *
7  * Source Code:
8  * https://github.com/michaelbecker/freertos-addons
9  *
10  * Project Page:
11  * http://michaelbecker.github.io/freertos-addons/
12  *
13  * On-line Documentation:
14  * http://michaelbecker.github.io/freertos-addons/docs/html/index.html
15  *
16  * Permission is hereby granted, free of charge, to any person obtaining a
17  * copy of this software and associated documentation files
18  * (the "Software"), to deal in the Software without restriction, including
19  * without limitation the rights to use, copy, modify, merge, publish,
20  * distribute, sublicense, and/or sell copies of the Software, and to
21  * permit persons to whom the Software is furnished to do so,subject to the
22  * following conditions:
23  *
24  * + The above copyright notice and this permission notice shall be included
25  * in all copies or substantial portions of the Software.
26  * + Credit is appreciated, but not required, if you find this project
27  * useful enough to include in your application, product, device, etc.
28  *
29  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
30  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36  *
37  ***************************************************************************/
38 
39 
40 #ifndef WORKQUEUE_H_
41 #define WORKQUEUE_H_
42 
43 
44 #include "FreeRTOS.h"
45 #include "semphr.h"
46 
47 
52 typedef void (* WorkItem_t)(void *UserData);
53 
54 
58 typedef void * WorkQueue_t;
59 
60 
64 #define DEFAULT_WORK_QUEUE_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
65 
66 
70 #define DEFAULT_WORK_QUEUE_PRIORITY (tskIDLE_PRIORITY + 1)
71 
72 
81 WorkQueue_t CreateWorkQueueEx( const char * const Name,
82  uint16_t StackSize,
83  UBaseType_t Priority);
84 
85 
91 #define CreateWorkQueue() \
92  CreateWorkQueueEx("wq", \
93  DEFAULT_WORK_QUEUE_STACK_SIZE, \
94  DEFAULT_WORK_QUEUE_PRIORITY) \
95 
96 
97 #if (INCLUDE_vTaskDelete == 1)
98 
104 void DestroyWorkQueue(WorkQueue_t WorkQueue);
105 
106 #endif
107 
116 int QueueWorkItem( WorkQueue_t WorkQueue,
117  WorkItem_t WorkItem,
118  void *UserData);
119 
120 
121 #endif
122 
int QueueWorkItem(WorkQueue_t WorkQueue, WorkItem_t WorkItem, void *UserData)
Definition: workqueue.c:344
void DestroyWorkQueue(WorkQueue_t WorkQueue)
Definition: workqueue.c:312
WorkQueue_t CreateWorkQueueEx(const char *const Name, uint16_t StackSize, UBaseType_t Priority)
Definition: workqueue.c:255
void * WorkQueue_t
Definition: workqueue.h:58
void(* WorkItem_t)(void *UserData)
Definition: workqueue.h:52