/** * @file delay.cpp * @author (@.com) * @brief * @version 0.1 * @date 2023-06-13 * * @copyright Copyright (c) 2023 * * How to modify this file: * - Ctrl + F and replace "YOUR_DEVICE" with the appropriate name. * - Implement the functions delayMs and delayUs. * - Remove the import if no longer needed. */ #define STA_PLATFORM_YOUR_DEVICE #include #ifdef STA_PLATFORM_YOUR_DEVICE #include namespace sta { void delayMs(uint32_t ms) { STA_NOT_IMPLEMENTED(); } void delayUs(uint32_t us) { STA_NOT_IMPLEMENTED(); } } // namespace sta #endif // STA_PLATFORM_YOUR_DEVICE