summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/avr/util/U16AVRSleeps.c
blob: f2144717d104f015eba3738c63ffb236f7e9ceef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Function to introduce specific delay in milliseconds
//
//Authors
//   Siddhesh Wani
//

#include "AVRUtil.h"

uint8 U16AVRSleeps (uint16 delay)
{
  _delay_ms(delay);

 retrun 0;
}