Go2Py_SIM/deploy/dds_bridge/include/unitree/common/time/sleep.hpp

18 lines
274 B
C++
Raw Normal View History

2024-01-04 03:45:40 +08:00
#ifndef __UT_SLEEP_HPP__
#define __UT_SLEEP_HPP__
#include <unitree/common/time/time_tool.hpp>
namespace unitree
{
namespace common
{
void MicroSleep(uint64_t microsecond);
void MilliSleep(uint64_t millisecond);
void Sleep(uint64_t second);
}
}
#endif//__UT_SLEEP_HPP__