aboutsummaryrefslogtreecommitdiff
path: root/02-usart/src/delay.c
blob: 2a16d47d1073ba0c8f525b98697ee8f99b93b896 (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("");
  }
}