diff options
author | siddhu8990 | 2015-12-08 11:43:14 +0530 |
---|---|---|
committer | siddhu8990 | 2015-12-08 11:43:14 +0530 |
commit | 56d929da6683ca38ab07870173dba5aadb451403 (patch) | |
tree | 481583d1acbde742f975ea7b140f005d4ac08216 /src/c/hardware/avr/util/U16AVRSleeps.c | |
parent | 28917732a0c500c5db111ed49dbd7755758f5f72 (diff) | |
download | scilab2c-56d929da6683ca38ab07870173dba5aadb451403.tar.gz scilab2c-56d929da6683ca38ab07870173dba5aadb451403.tar.bz2 scilab2c-56d929da6683ca38ab07870173dba5aadb451403.zip |
Modified so that code for all three output formats can be generated
Diffstat (limited to 'src/c/hardware/avr/util/U16AVRSleeps.c')
-rw-r--r-- | src/c/hardware/avr/util/U16AVRSleeps.c | 14 |
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 00000000..f2144717 --- /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); + + retrun 0; +} |