aboutsummaryrefslogtreecommitdiff
path: root/system-clock/src/delay.c
blob: 077d1ff393db75029731328dc8b5e4119be3504f (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "delay.h"

void delay(uint32_t delay)
{
  while (delay --) {
    /* needed to keep the compiler from optimizing away the loop. */
    asm volatile ("");
  }
}