* @brief Delays the execution of the current thread for the specified number of milliseconds. * * @param msecs The number of milliseconds to delay. */
| 40 | * @param msecs The number of milliseconds to delay. |
| 41 | */ |
| 42 | void mdelay(unsigned long msecs) |
| 43 | { |
| 44 | rt_hw_us_delay(msecs * 1000); |
| 45 | } |
| 46 | RTM_EXPORT(mdelay); |
| 47 | |
| 48 | /** |
nothing calls this directly
no test coverage detected