Basic_Frame_TypeC_2023_Omni
Loading...
Searching...
No Matches
uarm_os.hpp
1
#ifndef __UARM_OS_HPP
2
#define __UARM_OS_HPP
3
4
#ifdef GTEST
5
#include "uarm_types.hpp"
6
7
typedef
uint32_t TickType_t;
8
typedef
long
BaseType_t;
9
10
#define pdTRUE 1
11
#define pdFALSE 0
12
13
#define pdMS_TO_TICKS(x) ((x) * 1000)
14
#define xTaskGetTickCount() 0
15
#define vTaskDelayUntil(x, y)
16
#define vTaskDelay(x)
17
18
#else
19
#include "cmsis_os.h"
20
#endif
21
22
#endif
Core
Src
Lib
uarm_os.hpp
Generated by
1.14.0