Subversion Repositories FlightCtrl

Rev

Rev 2003 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2003 - 1
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
 // + Copyright (c) Holger Buss, Ingo Busker
3
 // + Thanks to Marcel Haller (Lion) for the nice idea and first implementation
4
 // + Nur für den privaten Gebrauch
5
 // + www.MikroKopter.com
6
 // + porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
7
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8
 // + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
9
 // + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
10
 // + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
11
 // + bzgl. der Nutzungsbedingungen aufzunehmen.
12
 // + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
13
 // + Verkauf von Luftbildaufnahmen, usw.
14
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
 // + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
16
 // + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
17
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
18
 // + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
19
 // + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
20
 // + eindeutig als Ursprung verlinkt werden
21
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
22
 // + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
23
 // + Benutzung auf eigene Gefahr
24
 // + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
25
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
26
 // + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
27
 // + mit unserer Zustimmung zulässig
28
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
29
 // + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
30
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
 // + Redistributions of source code (with or without modifications) must retain the above copyright notice,
32
 // + this list of conditions and the following disclaimer.
33
 // +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
34
 // +     from this software without specific prior written permission.
35
 // +   * The use of this project (hardware, software, binary files, sources and documentation) is only permittet
36
 // +     for non-commercial use (directly or indirectly)
37
 // +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
38
 // +     with our written permission
39
 // +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
40
 // +     clearly linked as origin
41
 // +   * porting to systems other than hardware from www.mikrokopter.de is not allowed
42
 // +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
43
 // +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44
 // +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45
 // +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
46
 // +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
47
 // +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
48
 // +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
49
 // +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50
 // +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
51
 // +  POSSIBILITY OF SUCH DAMAGE.
52
 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
53
#include "capacity.h"
54
#include "twimaster.h"
55
#include "main.h"
56
#include "timer0.h"
57
#include "analog.h"
58
 
59
#define CAPACITY_UPDATE_INTERVAL 10 // 10 ms
60
#define FC_OFFSET_CURRENT 5  // calculate with a current of 0.5A
61
#define BL_OFFSET_CURRENT 2  // calculate with a current of 0.2A
62
 
63
// global varialbles
64
unsigned short update_timer =  0;
65
Capacity_t Capacity;
66
 
67
// initialize capacity calculation
2005 - 68
 
2003 - 69
void Capacity_Init(void)
70
{
2005 - 71
 Capacity.ActualCurrent = 0;
72
 Capacity.UsedCapacity = 0;
73
 Capacity.ActualPower = 0;
74
 Capacity.MinOfMaxPWM = 0;
75
 #ifdef WITH_REMAINCAPACITY // only include functions if DEBUG is defined in main.h
76
                        #warning : "### with REMAIN CAPACITY ###"
77
 Capacity.RemainCapacity = (EE_Parameter.UserParam1*100);
78
 #endif
79
 update_timer = SetDelay(CAPACITY_UPDATE_INTERVAL);
2003 - 80
}
81
 
82
 
83
// called in main loop at a regular interval
84
void Capacity_Update(void)
85
{
86
        unsigned short Current, SetSum; // max value will be 255 * 12 = 3060
87
        static unsigned short SubCounter = 0;
88
        static unsigned short CurrentOffset = 0;
89
        static unsigned long SumCurrentOffset = 0;
90
        unsigned char i, NumOfMotors, MinOfMaxPWM;
91
 
92
        if(CheckDelay(update_timer))
93
        {
94
                update_timer += CAPACITY_UPDATE_INTERVAL; // do not use SetDelay to avoid timing leaks
95
                // determine sum of all present BL currents and setpoints
96
                Current = 0;
97
                SetSum = 0;
98
                NumOfMotors = 0;
99
                MinOfMaxPWM = 255;
100
                for(i = 0; i < MAX_MOTORS; i++)
101
                {
102
                        if(Motor[i].State & MOTOR_STATE_PRESENT_MASK)
103
                        {
104
                                NumOfMotors++;
105
                                Current += (unsigned int)(Motor[i].Current);
106
                                SetSum +=  (unsigned int)(Motor[i].SetPoint);
107
                                if(Motor[i].MaxPWM < MinOfMaxPWM) MinOfMaxPWM = Motor[i].MaxPWM;
108
                        }
109
                }
110
                Capacity.MinOfMaxPWM = MinOfMaxPWM;
111
 
112
                if(SetSum == 0) // if all setpoints are 0
113
                { // determine offsets of motor currents
114
                        #define CURRENT_AVERAGE 8  // 8bit = 256 * 10 ms = 2.56s average time
115
                        CurrentOffset = (unsigned int)(SumCurrentOffset>>CURRENT_AVERAGE);
116
                        SumCurrentOffset -= CurrentOffset;
117
                        SumCurrentOffset += Current;
118
                        // after averaging set current to static offset
119
                        Current = FC_OFFSET_CURRENT;
120
                }
121
                else // some motors are running, includes also motor test condition, where "MotorRunning" is false
122
                {   // subtract offset
123
                        if(Current > CurrentOffset) Current -= CurrentOffset;
124
                        else Current = 0;
125
                        // add the FC and BL Offsets
126
                        Current += FC_OFFSET_CURRENT + NumOfMotors * BL_OFFSET_CURRENT;
127
                }
128
 
129
                // update actual Current
130
                Capacity.ActualCurrent = Current;
131
                // update actual Power
132
                if(Current < 255)       Capacity.ActualPower = (UBat * Current) / 100; // in W higher resolution
133
                else                            Capacity.ActualPower = (UBat * (Current/4)) / 25; // in W
134
 
135
                // update used capacity
136
                SubCounter += Current;
137
 
138
                // 100mA * 1ms * CAPACITY_UPDATE_INTERVAL = 1 mA * 100 ms * CAPACITY_UPDATE_INTERVAL
139
                // = 1mA * 0.1s * CAPACITY_UPDATE_INTERVAL = 1mA * 1min / (600 / CAPACITY_UPDATE_INTERVAL)
140
                // = 1mAh / (36000 / CAPACITY_UPDATE_INTERVAL)
141
                #define SUB_COUNTER_LIMIT (36000 / CAPACITY_UPDATE_INTERVAL)
142
                if(SubCounter > SUB_COUNTER_LIMIT)
143
                {
144
                        Capacity.UsedCapacity++;                        // we have one mAh more
145
                        SubCounter -= SUB_COUNTER_LIMIT;        // keep the remaining sub part
146
                #ifdef WITH_REMAINCAPACITY      // only include functions if DEBUG is defined in main.h
147
 
148
                        #warning : "### with REMAIN CAPACITY ###"
149
                        Capacity.RemainCapacity=(EE_Parameter.UserParam1*100)-Capacity.UsedCapacity; //Added by metro
150
                        if((Capacity.RemainCapacity<=0)&&(Capacity.RemainCapacity%10==0)&&(EE_Parameter.UserParam1!=0)) beeptime = 1000;
151
                        if((Capacity.RemainCapacity<=500)&&(Capacity.RemainCapacity%100==0)&&(EE_Parameter.UserParam1!=0)) beeptime = 10000;
152
                #endif
153
 
154
                }
155
 
156
 
157
        } // EOF check delay update timer
158
}