Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
electrical.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010-2013 The Paparazzi Team
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
28 #ifndef SUBSYSTEMS_ELECTRICAL_H
29 #define SUBSYSTEMS_ELECTRICAL_H
30 
31 #include "std.h"
32 #include "generated/airframe.h"
33 
35 #ifndef LOW_BAT_LEVEL
36 #define LOW_BAT_LEVEL 10.5
37 #endif
38 
40 #ifndef CRITIC_BAT_LEVEL
41 #define CRITIC_BAT_LEVEL 9.8
42 #endif
43 
44 struct Electrical {
45  float vsupply;
46  float current;
47  float charge;
48  float energy;
49  bool bat_low;
50  bool bat_critical;
51 };
52 
53 extern struct Electrical electrical;
54 
55 extern void electrical_init(void);
56 extern void electrical_periodic(void);
57 
58 #endif /* SUBSYSTEMS_ELECTRICAL_H */
Electrical
Definition: electrical.h:44
Electrical::vsupply
float vsupply
supply voltage in V
Definition: electrical.h:45
std.h
Electrical::charge
float charge
consumed electric charge in Ah
Definition: electrical.h:47
Electrical::bat_low
bool bat_low
battery low status
Definition: electrical.h:49
electrical
struct Electrical electrical
Definition: electrical.c:66
Electrical::bat_critical
bool bat_critical
battery critical status
Definition: electrical.h:50
Electrical::energy
float energy
consumed energy in Wh
Definition: electrical.h:48
electrical_periodic
void electrical_periodic(void)
Definition: electrical.c:123
Electrical::current
float current
current in A
Definition: electrical.h:46
electrical_init
void electrical_init(void)
Definition: electrical.c:100