Skip to content

Instantly share code, notes, and snippets.

@kevr
Created January 26, 2018 05:34
Show Gist options
  • Save kevr/72a129a436ef6eccf94ab20bc7847849 to your computer and use it in GitHub Desktop.
Save kevr/72a129a436ef6eccf94ab20bc7847849 to your computer and use it in GitHub Desktop.
static void delay(unsigned long ms)
{
struct timespec tv;
memset(&tv, 0, sizeof(tv));
tv.tv_sec = 0;
tv.tv_nsec = 1000000L * ms;
nanosleep(&tv, NULL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment