mirror of
https://github.com/jie65535/stm32f10x-uC-OS-II.git
synced 2024-07-27 19:10:55 +08:00
17 lines
259 B
C
17 lines
259 B
C
#ifndef TEST_TASK_H_
|
|
#define TEST_TASK_H_
|
|
|
|
#include "includes.h"
|
|
|
|
#define TASK_TEST_PRIO 5u
|
|
|
|
#define TASK_TEST_STK_SIZE 512u
|
|
|
|
extern OS_STK TASK_TEST_STK[TASK_TEST_STK_SIZE];
|
|
|
|
extern OS_EVENT *pMailBox;
|
|
|
|
void TaskTest(void *p_arg);
|
|
|
|
#endif
|