Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
irobotTime.cpp
00001 #include "irobotTime.h" 00002 00003 #ifdef _WIN32 00004 #include <windows.h> 00005 #elif defined(__unix__) 00006 #include <unistd.h> 00007 #endif 00008 00009 void irobotDelayMs(const int32_t ms){ 00010 #ifdef _WIN32 00011 Sleep(ms); 00012 #elif defined(__unix__) 00013 usleep((ms) * 1000); 00014 #endif 00015 }
Generated on Wed Jul 13 2022 12:36:27 by
1.7.2