changeset 6492 | 286a52449b54 |
parent 6483 | ae78fc3c6b20 |
child 7045 | 5d5306f074db |
6491:00dc414c909d | 6492:286a52449b54 |
---|---|
220 |
220 |
221 |
221 |
222 void CSleep(int milliseconds) |
222 void CSleep(int milliseconds) |
223 { |
223 { |
224 #ifndef __INNOTEK_LIBC__ |
224 #ifndef __INNOTEK_LIBC__ |
225 delay(milliseconds); |
225 delay(milliseconds); |
226 #else |
226 #else |
227 usleep(milliseconds * 1000); |
227 usleep(milliseconds * 1000); |
228 #endif |
228 #endif |
229 } |
229 } |
230 |
230 |