Paparazzi UAS  v5.12_stable-4-g9b43e9b
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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 
39 
41 #ifndef CRITIC_BAT_LEVEL
42 #define CRITIC_BAT_LEVEL 9.8
43 #endif
44 
45 
46 struct Electrical {
47 
51  float energy;
52  bool bat_low;
53  bool bat_critical;
54 
55 };
56 
57 extern struct Electrical electrical;
58 
59 extern void electrical_init(void);
60 extern void electrical_periodic(void);
61 
62 #endif /* SUBSYSTEMS_ELECTRICAL_H */
int32_t current
current in milliamps
Definition: electrical.h:49
unsigned short uint16_t
Definition: types.h:16
void electrical_periodic(void)
Definition: electrical.c:121
bool bat_critical
battery critical status
Definition: electrical.h:53
bool bat_low
battery low status
Definition: electrical.h:52
struct Electrical electrical
Definition: electrical.c:65
signed long int32_t
Definition: types.h:19
uint16_t vsupply
supply voltage in decivolts
Definition: electrical.h:48
int32_t consumed
consumption in mAh
Definition: electrical.h:50
float energy
consumed energy in mAh
Definition: electrical.h:51
void electrical_init(void)
Definition: electrical.c:99