6#ifndef DESKTOP_MILLIS_DEFINED
7#define DESKTOP_MILLIS_DEFINED
13 using namespace std::chrono;
19 return now.time_since_epoch().count();
24 std::this_thread::sleep_for(std::chrono::milliseconds(ms));
29 std::this_thread::sleep_for(std::chrono::microseconds(
us));
34 using namespace std::chrono;
40 return now.time_since_epoch().count();
If you want to use the framework w/o Arduino you need to provide the implementation of a couple of cl...