| 199 | } // namespace detail |
| 200 | |
| 201 | void delayMillis(u32 ms) FL_NOEXCEPT { |
| 202 | // Legacy function - no async pumping (backward compatibility) |
| 203 | detail::delay_impl(ms, false); |
| 204 | } |
| 205 | |
| 206 | void delayMicroseconds(u32 us) FL_NOEXCEPT { |
| 207 | // Direct pass-through to platform layer (no async pumping for microsecond precision) |
no test coverage detected