소스 검색

Merge pull request #115 from Faboor/patch-1

Return error from `softPwmCreate` if `pthread_create` fails
pull/117/head
Mark Liffiton 3 년 전
committed by GitHub
부모
커밋
6a17382a0a
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      wiringPi/softPwm.c

+ 3
- 0
wiringPi/softPwm.c 파일 보기

@@ -153,6 +153,9 @@ int softPwmCreate (int pin, int initialValue, int pwmRange)
newPin = pin ;
res = pthread_create (&myThread, NULL, softPwmThread, (void *)passPin) ;

if (res != 0)
return res ;
while (newPin != -1)
delay (1) ;



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