18 lines
432 B
C
18 lines
432 B
C
#ifndef GFX_TASK_H
|
|
#define GFX_TASK_H
|
|
#include "FreeRTOS.h"
|
|
#include "wm_include.h"
|
|
|
|
|
|
#define GFX_STACK_SIZE_IN_BYTES (1024 * sizeof(StackType_t))
|
|
#define GFX_STACK_PRIORITY (5)
|
|
|
|
static u8 gfx_task_stack[GFX_STACK_SIZE_IN_BYTES];
|
|
tls_os_task_t gfx_task_handle;
|
|
|
|
/**
|
|
* @brief gfx_task is responsible for the UI (rendering graphics to the screen, handling UI related events)
|
|
*/
|
|
void gfx_task(void *param);
|
|
|
|
#endif //GFX_TASK_H
|