8 lines
160 B
C
8 lines
160 B
C
|
#include <cmsis_os.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
bool task_equal(TaskHandle_t a, TaskHandle_t b) {
|
||
|
if(a == NULL || b == NULL) return false;
|
||
|
return a == b;
|
||
|
}
|