PX4 Firmware
PX4 Autopilot Software http://px4.io
status_display.h
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2017-2018 PX4 Development Team. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  * 3. Neither the name PX4 nor the names of its contributors may be
16  * used to endorse or promote products derived from this software
17  * without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  ****************************************************************************/
33 
34 /**
35  * @file status_display.h
36  * Status Display decouples LED and tunes from commander
37  *
38  * @author Simone Guscetti <simone@px4.io>
39  */
40 
41 #pragma once
42 
43 #include "subscriber_handler.h"
44 
45 #include <drivers/drv_hrt.h>
46 
49 #include <uORB/topics/cpuload.h>
53 
54 namespace events
55 {
56 namespace status
57 {
58 
60 {
61 public:
62 
63  StatusDisplay(const events::SubscriberHandler &subscriber_handler);
64 
65  /** regularily called to handle state updates */
66  void process();
67 
68 protected:
69  /**
70  * check for topic updates
71  * @return true if one or more topics got updated
72  */
73  bool check_for_updates();
74 
75  /**
76  * handle LED logic changes & call publish()
77  */
78  void set_leds();
79 
80  /** publish LED control */
81  void publish();
82 
83  // TODO: review if there is a better variant that allocates this in the memory
85  struct cpuload_s _cpu_load = {};
89 
91 
92 private:
93  bool _old_gps_lock_valid = false;
95  bool _low_battery = false;
96  bool _critical_battery = false;
97  int _old_nav_state = -1;
99 
101 
103 };
104 
105 } /* namespace status */
106 } /* namespace events */
struct vehicle_status_s _vehicle_status
void publish()
publish LED control
static struct vehicle_status_s status
Definition: Commander.cpp:138
Contains a list of uORB subscriptions and maintains their update state.
static led_control_s led_control
struct vehicle_attitude_s _vehicle_attitude
High-resolution timer with callouts and timekeeping.
struct battery_status_s _battery_status
StatusDisplay(const events::SubscriberHandler &subscriber_handler)
#define ORB_ID(_name)
Generates a pointer to the uORB metadata structure for a given topic.
Definition: uORB.h:87
void set_leds()
handle LED logic changes & call publish()
Definition: set_leds.cpp:48
uORB::PublicationQueued< led_control_s > _led_control_pub
bool check_for_updates()
check for topic updates
const events::SubscriberHandler & _subscriber_handler
struct vehicle_status_flags_s _vehicle_status_flags
void process()
regularily called to handle state updates
struct led_control_s _led_control