mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-20 09:43:23 +00:00
8 lines
156 B
C
8 lines
156 B
C
|
#pragma once
|
||
|
#include "main.h"
|
||
|
#include <cmsis_os.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
bool task_equal(TaskHandle_t a, TaskHandle_t b);
|
||
|
bool task_is_isr_context(void);
|