Subversion Repositories FlightCtrl

Rev

Rev 1506 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1486 killagreg 1
#ifndef _CAPACITY_H
2
#define _CAPACITY_H
3
 
4
typedef struct
5
{
6
        unsigned short ActualCurrent; // in 0.1A Steps
7
        unsigned short UsedCapacity;    // in mAh
8
} __attribute__((packed)) Capacity_t;
9
 
10
extern Capacity_t Capacity;
11
 
12
void Capacity_Init(void);
13
void Capacity_Update(void);
14
 
15
 
16
#endif //_CAPACITY_H
17