Ver a proveniência
Merge pull request #115 from Faboor/patch-1
Return error from `softPwmCreate` if `pthread_create` fails
pull/117/head
Mark Liffiton
há 3 anos
committed by
GitHub
ascendente
cometimento
6a17382a0a
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com
3 adições e
0 eliminações
-
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) ; |
|
|
|
|
|
|
|