Sfoglia il codice sorgente

Merge pull request #115 from Faboor/patch-1

Return error from `softPwmCreate` if `pthread_create` fails
pull/117/head
Mark Liffiton 3 anni fa
committed by GitHub
parent
commit
6a17382a0a
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. +3
    -0
      wiringPi/softPwm.c

+ 3
- 0
wiringPi/softPwm.c Vedi File

@@ -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) ;



Caricamento…
Annulla
Salva