summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/avr/util
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/hardware/avr/util')
-rw-r--r--2.3-1/src/c/hardware/avr/util/U16AVRSleeps.c14
1 files changed, 14 insertions, 0 deletions
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..f2144717
--- /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);
+
+ retrun 0;
+}