| 1234567891011121314151617181920212223242526272829303132 |
- /*
- / _____) _ | |
- ( (____ _____ ____ _| |_ _____ ____| |__
- \____ \| ___ | (_ _) ___ |/ ___) _ \
- _____) ) ____| | | || |_| ____( (___| | | |
- (______/|_____)_|_|_| \__)_____)\____)_| |_|
- (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
- */
- #include "board.h"
- void Delay( float s )
- {
- DelayMs( s * 1000.0f );
- }
- void DelayMs( uint32_t ms )
- {
- if( TimerGetLowPowerEnable( ) == true )
- {
- RtcDelayMs( ms );
- }
- else
- {
- TimerHwDelayMs( ms );
- }
- }
|