From eac39cdc77ad5fdaf7b245cbce5c92f105ac75bf Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Fri, 11 Dec 2015 18:28:43 +0530 Subject: AVR ADC checked after some modifications --- 2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c (limited to '2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c') diff --git a/2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c b/2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c new file mode 100644 index 00000000..4d81c964 --- /dev/null +++ b/2.3-1/src/c/hardware/avr/util/u16AVRSleeps.c @@ -0,0 +1,14 @@ +//Function to introduce specific delay in milliseconds +// +//Authors +// Siddhesh Wani +// + +#include "AVRUtil.h" + +uint8 u16AVRSleeps (uint16 delay) +{ + _delay_ms(delay); + + return 0; +} -- cgit