mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-16 19:50:35 +08:00
tone_alarm: more device paths replaced with #define
This commit is contained in:
committed by
Lorenz Meier
parent
03727974f1
commit
1a641b791d
@@ -82,7 +82,7 @@ static int buzzer;
|
||||
|
||||
int buzzer_init()
|
||||
{
|
||||
buzzer = open("/dev/tone_alarm", O_WRONLY);
|
||||
buzzer = open(TONEALARM_DEVICE_PATH, O_WRONLY);
|
||||
|
||||
if (buzzer < 0) {
|
||||
warnx("Buzzer: open fail\n");
|
||||
|
||||
@@ -163,7 +163,7 @@ system_eval:
|
||||
warnx("PREFLIGHT CHECK ERROR! TRIGGERING ALARM");
|
||||
fflush(stderr);
|
||||
|
||||
int buzzer = open("/dev/tone_alarm", O_WRONLY);
|
||||
int buzzer = open(TONEALARM_DEVICE_PATH, O_WRONLY);
|
||||
int leds = open(LED_DEVICE_PATH, 0);
|
||||
|
||||
if (leds < 0) {
|
||||
|
||||
@@ -124,10 +124,10 @@ int test_tone(int argc, char *argv[])
|
||||
int fd, result;
|
||||
unsigned long tone;
|
||||
|
||||
fd = open("/dev/tone_alarm", O_WRONLY);
|
||||
fd = open(TONEALARM_DEVICE_PATH, O_WRONLY);
|
||||
|
||||
if (fd < 0) {
|
||||
printf("failed opening /dev/tone_alarm\n");
|
||||
printf("failed opening " TONEALARM_DEVICE_PATH "\n");
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user