30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
#include "delay.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Wait for a specific time in 100 uSec
|
|
// (15 + t*( ((K_DELAY_100us-1)*6)+5 ))
|
|
//----------------------------------------------------------------------------
|
|
void Delay_100us(unsigned char t) {
|
|
unsigned int i;
|
|
if (t==0) return;
|
|
while (t--) for(i=0;i<K_DELAY_100us; i++);
|
|
}
|
|
//----------------------------------------------------------------------------
|
|
// Wait for a specific time in 1 mSec
|
|
// (15 + t*( ((K_DELAY_1ms-1)*6)+5 ))
|
|
//----------------------------------------------------------------------------
|
|
void Delay_1ms(unsigned char t) {
|
|
unsigned int i;
|
|
if (t==0) return;
|
|
while (t--) for(i=0;i<K_DELAY_1ms; i++);
|
|
}
|
|
//----------------------------------------------------------------------------
|
|
// Wait for a specific time in 10 mSec
|
|
// (15 + t*( ((K_DELAY_10ms-1)*6)+5 ))
|
|
//----------------------------------------------------------------------------
|
|
void Delay_10ms(unsigned char t) {
|
|
unsigned int i;
|
|
if (t==0) return;
|
|
while (t--) for(i=0;i<K_DELAY_10ms; i++);
|
|
}
|