| file vmupro_utilities lua brief VMU Pro LUA SDK Utility Functions author version date copyright | Copyright (c) 2025 8BitMods. All rights reserved. --- --- Utility functions for VMU Pro LUA applications. --- All utility functions are available globally in the LUA environment. --- @brief Sleep for a specified number of milliseconds --- @param milliseconds number Time to sleep in milliseconds --- @usage vmupro_sleep_ms(1000) -- Sleep for 1 second --- @usage vmupro_sleep_ms(500) -- Sleep for 0.5 seconds --- @note This is a stub definition for IDE support only. --- Actual implementation is provided by VMU Pro firmware at runtime. function vmupro_sleep_ms(milliseconds) end --- @brief Get current time in microseconds --- @return number Current time in microseconds since boot --- @usage local time |