summaryrefslogtreecommitdiff
path: root/macros/Hardware/AVR/AVRSleep.sci
blob: eec6e5a2ffd2e2e5c95883786e084bd2eb412fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function AVRSleep(delay)
// Function to pause the execution for the given time.
//       
// Parameter
//        delay : The time, in milliseconds, for which the execution is to be paused
//
// Description
//        This function causes the execution to stop for the given amount of time.
//
// This is curretly dummy function. It provides no functionality but is required 
// for providing support for generating C code for AVR.    
//
//Examples
//    AVRSleep(5000);
//See also
//
// Authors
//     Jorawar Singh
//

endfunction