summaryrefslogtreecommitdiff
path: root/src/c/hardware/avr/util/u16AVRSleeps.c
diff options
context:
space:
mode:
authorsiddhu89902015-12-11 18:28:43 +0530
committersiddhu89902015-12-11 18:28:43 +0530
commit96b51a5ded447676d493be9721e4480065a5ae7e (patch)
treec7a52243f195cf0887cc2141dd26e32cf332b483 /src/c/hardware/avr/util/u16AVRSleeps.c
parent56d929da6683ca38ab07870173dba5aadb451403 (diff)
downloadScilab2C_fossee_old-96b51a5ded447676d493be9721e4480065a5ae7e.tar.gz
Scilab2C_fossee_old-96b51a5ded447676d493be9721e4480065a5ae7e.tar.bz2
Scilab2C_fossee_old-96b51a5ded447676d493be9721e4480065a5ae7e.zip
AVR ADC checked after some modifications
Diffstat (limited to 'src/c/hardware/avr/util/u16AVRSleeps.c')
-rw-r--r--src/c/hardware/avr/util/u16AVRSleeps.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/c/hardware/avr/util/u16AVRSleeps.c b/src/c/hardware/avr/util/u16AVRSleeps.c
new file mode 100644
index 0000000..4d81c96
--- /dev/null
+++ b/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;
+}