//DelayX.c unsigned char Delay_ms( unsigned int i)// { i = (45*i); while(i) { i--; i++; i--; } return(i); } char Delay_us( unsigned char i) { while(i) { i--; } return(i); }