mirror of https://github.com/ArduPilot/ardupilot
12 lines
207 B
C
12 lines
207 B
C
|
#pragma once
|
||
|
|
||
|
#include "AP_HAL_SITL.h"
|
||
|
|
||
|
namespace HALSITL {
|
||
|
class ToneAlarm_SF {
|
||
|
public:
|
||
|
void set_buzzer_tone(float frequency, float volume, float duration_ms);
|
||
|
bool init();
|
||
|
};
|
||
|
}
|