Paparazzi UAS  v7.0_unstable
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 ELECTRICAL_H
29 #define 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 vboard;
47  float current;
48  float charge;
49  float energy;
50  bool bat_low;
51  bool bat_critical;
52 
55 };
56 
57 extern struct Electrical electrical;
58 
59 extern void electrical_init(void);
60 extern void electrical_periodic(void);
61 extern void electrical_avg_reset(float var);
62 
63 #endif /* ELECTRICAL_H */
void electrical_avg_reset(float var)
Definition: electrical.c:274
uint32_t avg_power
average power sum
Definition: electrical.h:53
float energy
consumed energy in Wh
Definition: electrical.h:49
float current
current in A
Definition: electrical.h:47
uint32_t avg_cnt
average power counter
Definition: electrical.h:54
bool bat_low
battery low status
Definition: electrical.h:50
struct Electrical electrical
Definition: electrical.c:92
float charge
consumed electric charge in Ah
Definition: electrical.h:48
void electrical_init(void)
Definition: electrical.c:128
float vboard
board voltage in V
Definition: electrical.h:46
float vsupply
supply voltage in V
Definition: electrical.h:45
bool bat_critical
battery critical status
Definition: electrical.h:51
void electrical_periodic(void)
Definition: electrical.c:166
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78