GEX core repository.
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.
gex-core/tasks/task_sched.h

22 lines
403 B

7 years ago
//
// 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;
7 years ago
#endif
extern osThreadId tskJobRunnerHandle;
void TaskJobQueue(const void *argument);
7 years ago
void scheduleJob(Job *job);
7 years ago
#endif //GEX_TASK_SCHED_H