/* * rv_delay.h * * Created on: 19-Apr-2023 * Author: pushpkant */ /** * @file rv_delay.h * @brief Implement the blocking delays using the nop operation. */ #ifndef SRC_RV_DELAY_H_ #define SRC_RV_DELAY_H_ #include "ltcusb.h" #ifdef GNU_BUILD #include #endif /** * @brief Implement the blocking delay of approximate micro seconds provided. * @param us Desired Delay in micro seconds. */ void rv_delay_us(int32_t us); /** * @brief Implement the blocking delay of approximate milliseconds provided. * @param ms Desired delay in milliseconds. */ void rv_delay_ms(int32_t ms); #endif /* SRC_RV_DELAY_H_ */