Subversion Repositories FlightCtrl

Rev

Rev 1506 | Rev 1526 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1506 Rev 1510
Line 1... Line 1...
1
#ifndef _CAPACITY_H
1
#ifndef _CAPACITY_H
2
#define _CAPACITY_H
2
#define _CAPACITY_H
Line 3... Line -...
3
 
-
 
4
#define STATIC_CURRENT 4  // always calculate with a Current of 0,xA
-
 
5
extern unsigned char OwnConsumptionCurrent;  // always calculate with a Current of 0,xA
-
 
6
 
3
 
7
typedef struct
4
typedef struct
8
{
5
{
9
        unsigned short ActualCurrent; // in 0.1A Steps
6
        unsigned short ActualCurrent; // in 0.1A Steps
10
        unsigned short UsedCapacity;    // in mAh
7
        unsigned short UsedCapacity;  // in mAh
Line 11... Line 8...
11
} __attribute__((packed)) Capacity_t;
8
} __attribute__((packed)) Capacity_t;
Line 12... Line 9...
12
 
9