hacks.c 160 B

1234567
  1. #include <cmsis_os.h>
  2. #include <stdbool.h>
  3. bool task_equal(TaskHandle_t a, TaskHandle_t b) {
  4. if(a == NULL || b == NULL) return false;
  5. return a == b;
  6. }