/// \file timing.h /// Utilities for handling time and timestamps. #pragma once #include namespace Util { void wait(int ms); ///< Sleeps for the indicated amount of milliseconds or longer. void sleep(int ms); ///< Sleeps for roughly the indicated amount of milliseconds. long long int getMS(); ///< Gets the current time in milliseconds. long long int bootSecs(); ///< Gets the current system uptime in seconds. long long unsigned int getMicros();///