Parcourir la source

Merge pull request #115 from Faboor/patch-1

Return error from `softPwmCreate` if `pthread_create` fails
pull/117/head
Mark Liffiton il y a 3 ans
committed by GitHub
Parent
révision
6a17382a0a
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. +3
    -0
      wiringPi/softPwm.c

+ 3
- 0
wiringPi/softPwm.c Voir le fichier

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



Chargement…
Annuler
Enregistrer