You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "delay.h"
-
-
-
- void delay_ms(unsigned short timeCnt)
- {
- unsigned short i,j;
- while(timeCnt--){
- for(i=200;i>0;i--){ // 1ms
- for(j=18;j>0;j--); // 1us
- }
- }
- }
- void delay_5us(unsigned short timeCnt)
- {
- unsigned short j;
- while(timeCnt--){
- for(j=18;j>0;j--); // 1us
- }
- }
-
-
|