ardupilot/libraries/AP_Notify/AP_Notify.h

101 lines
4.3 KiB
C
Raw Normal View History

2013-09-19 03:27:31 -03:00
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
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 __AP_NOTIFY_H__
#define __AP_NOTIFY_H__
#include <AP_Common.h>
#include <AP_BoardLED.h>
#include <ToshibaLED.h>
#include <ToshibaLED_I2C.h>
#include <ToshibaLED_PX4.h>
#include <ToneAlarm_PX4.h>
#include <ToneAlarm_Linux.h>
#include <NavioLED_I2C.h>
2013-11-28 00:00:02 -04:00
#include <ExternalLED.h>
2014-03-31 05:52:16 -03:00
#include <Buzzer.h>
2013-09-19 03:27:31 -03:00
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
#define CONFIG_NOTIFY_DEVICES_COUNT 3
#elif CONFIG_HAL_BOARD == HAL_BOARD_APM1 || CONFIG_HAL_BOARD == HAL_BOARD_APM2
#define CONFIG_NOTIFY_DEVICES_COUNT 3
#elif CONFIG_HAL_BOARD == HAL_BOARD_VRBRAIN
#define CONFIG_NOTIFY_DEVICES_COUNT 4
#elif CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#if CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_NAVIO
#define CONFIG_NOTIFY_DEVICES_COUNT 2
#else
#define CONFIG_NOTIFY_DEVICES_COUNT 3
#endif
#else
#define CONFIG_NOTIFY_DEVICES_COUNT 2
#endif
2013-09-19 03:27:31 -03:00
class AP_Notify
{
public:
/// notify_type - bitmask of notification types
struct notify_type {
uint16_t initialising : 1; // 1 if initialising and copter should not be moved
uint16_t gps_status : 3; // 0 = no gps, 1 = no lock, 2 = 2d lock, 3 = 3d lock, 4 = dgps lock, 5 = rtk lock
2013-09-22 10:18:34 -03:00
uint16_t gps_glitching : 1; // 1 if gps position is not good
2014-07-28 05:33:58 -03:00
uint16_t baro_glitching : 1; // 1 if baro altitude is not good
2013-09-19 03:27:31 -03:00
uint16_t armed : 1; // 0 = disarmed, 1 = armed
uint16_t pre_arm_check : 1; // 0 = failing checks, 1 = passed
2014-12-14 23:20:04 -04:00
uint16_t arming_failed : 1; // 1 if copter failed to arm after user input
2013-09-19 03:27:31 -03:00
uint16_t save_trim : 1; // 1 if gathering trim data
uint16_t esc_calibration : 1; // 1 if calibrating escs
uint16_t failsafe_radio : 1; // 1 if radio failsafe
uint16_t failsafe_battery : 1; // 1 if battery failsafe
uint16_t failsafe_gps : 1; // 1 if gps failsafe
2014-04-15 03:51:26 -03:00
uint16_t parachute_release : 1; // 1 if parachute is being released
2014-07-21 07:12:53 -03:00
uint16_t ekf_bad : 1; // 1 if ekf is reporting problems
// additional flags
2014-03-31 05:52:16 -03:00
uint16_t external_leds : 1; // 1 if external LEDs are enabled (normally only used for copter)
2013-09-19 03:27:31 -03:00
};
2014-12-14 23:20:04 -04:00
/// notify_events_type - bitmask of active events.
// Notify library is responsible for setting back to zero after notification has been completed
struct notify_events_type {
2014-12-14 23:20:04 -04:00
uint8_t user_mode_change : 1; // 1 if user has initiated a flight mode change
uint8_t autotune_complete : 1; // 1 when autotune has successfully completed
uint8_t autotune_failed : 1; // 1 when autotune has failed
uint8_t autotune_next_axis : 1; // 1 when autotune has completed one axis and is moving onto the next
uint8_t mission_complete : 1; // 1 when the mission has completed successfully
uint8_t waypoint_complete : 1; // 1 as vehicle completes a waypoint
uint8_t user_mode_change_failed : 1; // 1 when user initiated flight mode change fails
uint8_t failsafe_action_taken : 1; // unused
};
2013-09-19 03:27:31 -03:00
// the notify flags are static to allow direct class access
// without declaring the object
static struct notify_type flags;
static struct notify_events_type events;
2013-09-19 03:27:31 -03:00
// initialisation
void init(bool enable_external_leds);
2013-09-19 03:27:31 -03:00
/// update - allow updates of leds that cannot be updated during a timed interrupt
void update(void);
private:
static NotifyDevice* _devices[CONFIG_NOTIFY_DEVICES_COUNT];
2013-09-19 03:27:31 -03:00
};
#endif // __AP_NOTIFY_H__