You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
403 B
21 lines
403 B
//
|
|
// Created by MightyPork on 2017/11/21.
|
|
//
|
|
|
|
#ifndef GEX_TASK_SCHED_H
|
|
#define GEX_TASK_SCHED_H
|
|
|
|
#include "platform.h"
|
|
#include "sched_queue.h"
|
|
|
|
#if USE_STACK_MONITOR
|
|
extern volatile uint32_t jobQueHighWaterMark;
|
|
extern volatile uint32_t msgQueHighWaterMark;
|
|
#endif
|
|
|
|
extern osThreadId tskJobRunnerHandle;
|
|
void TaskJobQueue(const void *argument);
|
|
|
|
void scheduleJob(Job *job);
|
|
|
|
#endif //GEX_TASK_SCHED_H
|
|
|