CC = gcc
-CFLAGS = -std=gnu11 -Wall -O2
+CFLAGS = -std=gnu11 -Wall -g
LDFLAGS = -lpthread -lao -lmpg123 -lwiringPi
fakeradio : mp3player.o main.o
$(CC) $(CFLAGS) -o fakeradio main.o mp3player.o $(LDFLAGS)
if (delaying || pwrOn) return;
pthread_mutex_lock(mut);
intro = !intro;
+ horn = false;
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
if (delaying || pwrOn) return;
pthread_mutex_lock(mut);
horn = !horn;
+ intro = false;
pthread_mutex_unlock(mut);
pthread_cond_signal(wakeup);
}
delaying = true;
if (playThread) {
pthread_cancel(playThread);
+ pthread_join(playThread, NULL);
}
if (!pwrOn) {
if (intro) {
playThread = startPlayThread("intro.mp3", true);
digitalWrite(INTROLED, LOW);
- horn = false;
} else if (horn) {
playThread = startPlayThread("nebelhorn.mp3", true);
- intro = false;
digitalWrite(INTROLED, HIGH);
} else {
digitalWrite(INTROLED, HIGH);