Forked repo of Platform Drivers- Analog Devices
delay.cpp
- Committer:
- mahphalke
- Date:
- 2021-07-13
- Revision:
- 17:af1f2416dd26
- Child:
- 20:26b1a4570f4b
File content as of revision 17:af1f2416dd26:
/***************************************************************************//** * @file delay.cpp * @brief Implementation of Mbed specific delay functionality ******************************************************************************** * Copyright (c) 2019 - 2021 Analog Devices, Inc. * All rights reserved. * * This software is proprietary to Analog Devices, Inc. and its licensors. * By using this software you agree to the terms of the associated * Analog Devices Software License Agreement. *******************************************************************************/ /******************************************************************************/ /***************************** Include Files **********************************/ /******************************************************************************/ #include <mbed.h> // Platform drivers needs to be C-compatible to work with other drivers #ifdef __cplusplus extern "C" { #endif // _cplusplus #include "delay.h" /******************************************************************************/ /********************** Macros and Constants Definitions **********************/ /******************************************************************************/ /******************************************************************************/ /************************ Functions Definitions *******************************/ /******************************************************************************/ /** * @brief Generate microseconds delay. * @param usecs - Delay in microseconds. * @return None. */ void udelay(uint32_t usecs) { wait_us(usecs); } /** * @brief Generate miliseconds delay. * @param msecs - Delay in miliseconds. * @return None. */ void mdelay(uint32_t msecs) { if (msecs) { HAL_Delay(msecs); } } #ifdef __cplusplus // Closing extern c } #endif // _cplusplus