From aa38e5c1f48e31213ee349aa5cd6f06c85bda70d Mon Sep 17 00:00:00 2001 From: android <android@lingyun.com> Date: Tue, 25 Jun 2024 21:49:39 +0800 Subject: [PATCH] Add GD32F103RCT6 ADC converter board SDK source code --- mcu_sdk/gd32f103/rk_eFire/Utiles/Utilities/delay.h | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/mcu_sdk/gd32f103/rk_eFire/Utiles/Utilities/delay.h b/mcu_sdk/gd32f103/rk_eFire/Utiles/Utilities/delay.h new file mode 100644 index 0000000..920b210 --- /dev/null +++ b/mcu_sdk/gd32f103/rk_eFire/Utiles/Utilities/delay.h @@ -0,0 +1,33 @@ +/* + / _____) _ | | +( (____ _____ ____ _| |_ _____ ____| |__ + \____ \| ___ | (_ _) ___ |/ ___) _ \ + _____) ) ____| | | || |_| ____( (___| | | | +(______/|_____)_|_|_| \__)_____)\____)_| |_| + (C)2013 Semtech + +Description: Delay functions implementation + +License: Revised BSD License, see LICENSE.TXT file include in the project + +Maintainer: Miguel Luis and Gregory Cristian +*/ +#ifndef __DELAY_H__ +#define __DELAY_H__ + +/*! + * Blocking delay of "s" seconds + */ +void Delay( float s ); + +/*! + * Blocking delay of "ms" milliseconds + */ +void DelayMs( uint32_t ms ); + +/*! + * Blocking delay of "us" milliseconds + */ +void Delayus(uint32_t nTimer); +#endif // __DELAY_H__ + -- Gitblit v1.9.1