delay

Function delay 

Source
pub unsafe extern "C" fn delay(milliseconds: u32)
Expand description

Delays a task for a given number of milliseconds.

This is not the best method to have a task execute code at predefined intervals, as the delay time is measured from when the delay is requested. To delay cyclically, use task_delay_until().

\param milliseconds The number of milliseconds to wait (1000 milliseconds per second)