2013-11-28 00:28:14 -04:00
|
|
|
/*
|
|
|
|
Buzzer 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/>.
|
|
|
|
*/
|
|
|
|
#ifndef __BUZZER_H__
|
|
|
|
#define __BUZZER_H__
|
|
|
|
|
2015-11-03 09:46:29 -04:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN
|
2014-05-30 17:58:34 -03:00
|
|
|
# define BUZZER_PIN 32
|
2013-11-30 10:27:58 -04:00
|
|
|
#else
|
|
|
|
# define BUZZER_PIN 0 // pin undefined on other boards
|
2013-11-28 00:28:14 -04:00
|
|
|
#endif
|
|
|
|
|
2014-07-25 01:05:45 -03:00
|
|
|
#define BUZZER_ARMING_BUZZ_MS 3000 // arming buzz length in milliseconds (i.e. 3 seconds)
|
|
|
|
|
2014-11-14 10:14:40 -04:00
|
|
|
#include "NotifyDevice.h"
|
|
|
|
|
|
|
|
class Buzzer: public NotifyDevice
|
2013-11-28 00:28:14 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Constructor
|
2014-07-25 01:05:45 -03:00
|
|
|
Buzzer() :
|
|
|
|
_counter(0),
|
|
|
|
_pattern(NONE),
|
|
|
|
_pattern_counter(0),
|
|
|
|
_arming_buzz_start_ms(0)
|
|
|
|
{}
|
2013-11-28 00:28:14 -04:00
|
|
|
|
|
|
|
/// init - initialise the buzzer
|
2014-11-14 10:14:40 -04:00
|
|
|
bool init(void);
|
2013-11-28 00:28:14 -04:00
|
|
|
|
|
|
|
/// update - updates buzzer according to timed_updated. Should be called at 50Hz
|
|
|
|
void update();
|
|
|
|
|
|
|
|
/// on - turns the buzzer on or off
|
|
|
|
void on(bool on_off);
|
|
|
|
|
|
|
|
enum BuzzerPattern {
|
|
|
|
NONE = 0,
|
|
|
|
SINGLE_BUZZ = 1,
|
|
|
|
DOUBLE_BUZZ = 2,
|
2015-03-12 23:02:36 -03:00
|
|
|
GPS_GLITCH = 3, // not used
|
2014-07-28 09:28:34 -03:00
|
|
|
ARMING_BUZZ = 4,
|
|
|
|
BARO_GLITCH = 5,
|
|
|
|
EKF_BAD = 6
|
2013-11-28 00:28:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/// play_pattern - plays the defined buzzer pattern
|
|
|
|
void play_pattern(BuzzerPattern pattern_id);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/// buzzer_flag_type - bitmask of current state and ap_notify states we track
|
|
|
|
struct buzzer_flag_type {
|
|
|
|
uint8_t on : 1; // 1 if the buzzer is currently on
|
|
|
|
uint8_t arming : 1; // 1 if we are beginning the arming process
|
|
|
|
uint8_t armed : 1; // 0 = disarmed, 1 = armed
|
|
|
|
uint8_t failsafe_battery : 1; // 1 if battery failsafe has triggered
|
2014-07-28 09:28:34 -03:00
|
|
|
uint8_t ekf_bad : 1; // 1 if ekf position has gone bad
|
2013-11-28 00:28:14 -04:00
|
|
|
} _flags;
|
|
|
|
|
|
|
|
uint8_t _counter; // reduces 50hz update down to 10hz for internal processing
|
|
|
|
BuzzerPattern _pattern; // current pattern
|
|
|
|
uint8_t _pattern_counter; // used to time on/off of current patter
|
2014-07-25 01:05:45 -03:00
|
|
|
uint32_t _arming_buzz_start_ms; // arming_buzz start time in milliseconds
|
2013-11-28 00:28:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __BUZZER_H__
|