我不是C开发人员,但我需要编写简单的程序,但我遇到了延迟问题。这是我的程序:
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <wiringPi.h>
#include <softPwm.h>
int main (int argc, char *argv[])
{
int val = 10;
if (argc > 1) {
val = atoi(argv[1]);
}
wiringPiSetup () ;
pinMode(1, OUTPUT);
softPwmCreate (1, 0, 100) ;
printf ("Soft Pwm created: %s!\n", argv[1]) ;
softPwmWrite (1, val) ;
delay (200);
return 0;
}
它工作得很好,直到我删除延迟行 (200)。在程序完成之前,我如何才能等到函数 softPwmWrite 完成而不延迟() ?我正在使用Linux和WiringPi库。谢谢。