소스 검색

Replacing PWM pulse delay's hardcoded value from 100 to macro PULSE_TIME

pull/179/head
obtronyt 1 년 전
부모
커밋
b1a7892c96
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      wiringPi/softPwm.c

+ 2
- 2
wiringPi/softPwm.c 파일 보기

@@ -87,11 +87,11 @@ static void *softPwmThread (void *arg)

if (mark != 0)
digitalWrite (pin, HIGH) ;
delayMicroseconds (mark * 100) ;
delayMicroseconds (mark * PULSE_TIME) ;

if (space != 0)
digitalWrite (pin, LOW) ;
delayMicroseconds (space * 100) ;
delayMicroseconds (space * PULSE_TIME) ;
}

return NULL ;


불러오는 중...
취소
저장