mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
5ba20b1763
Due to the way the headers are organized changing a single change in an AP_Notify driver would trigger a rebuild for most of the files in the project. Time could be saved by using ccache (since most of the things didn't change) but we can do better, i.e. re-organize the headers so we don't have to re-build everything.
44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
/*
|
|
ToneAlarm Linux driver
|
|
*/
|
|
/*
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "NotifyDevice.h"
|
|
|
|
class ToneAlarm_Linux: public NotifyDevice
|
|
{
|
|
public:
|
|
/// init - initialised the tone alarm
|
|
bool init(void);
|
|
|
|
/// update - updates led according to timed_updated. Should be called at 50Hz
|
|
void update();
|
|
|
|
private:
|
|
/// play_tune - play one of the pre-defined tunes
|
|
bool play_tune(uint8_t tune_number);
|
|
|
|
bool _initialized = false;
|
|
|
|
/// tonealarm_type - bitmask of states we track
|
|
struct tonealarm_type {
|
|
bool armed : 1; // false = disarmed, true = armed
|
|
bool failsafe_battery : 1; // true if battery failsafe
|
|
bool parachute_release : 1; // true if parachute is being released
|
|
} flags;
|
|
};
|