Subversion Repositories Projects

Rev

Rev 430 | Rev 436 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
426 killagreg 1
#include <avr/boot.h>
2
 
3
#include <avr/io.h>
4
#include <avr/interrupt.h>
5
 
6
#include "main.h"
7
#include "timer0.h"
8
#include "uart0.h"
9
#include "uart1.h"
10
#include "fat16.h"
11
#include "led.h"
12
#include "menu.h"
13
#include "printf_P.h"
14
#include "analog.h"
15
#include "gps.h"
16
#include "button.h"
17
#include "logging.h"
18
#include "settings.h"
19
 
20
#define FOLLOWME_INTERVAL 1000 // 1 second update
21
#define CELLUNDERVOLTAGE 32 // lowest allowed voltage/cell; 32 = 3.2V
22
 
23
#ifdef USE_FOLLOWME
24
int16_t UBat = 120;
25
int16_t Zellenzahl = 0;
26
int16_t PowerOn = 0;
27
int16_t i = 0;
28
int16_t delay = 0;
29
#endif
30
 
31
uint16_t Error = 0;
32
SysState_t SysState = STATE_UNDEFINED;
33
 
34
int main (void)
35
{
36
        static uint16_t FollowMe_Timer = 0;
37
 
38
        // disable interrupts global
434 killagreg 39
        //cli();
426 killagreg 40
 
41
        // disable watchdog
42
    MCUSR &=~(1<<WDRF);
43
    WDTCSR |= (1<<WDCE)|(1<<WDE);
44
    WDTCSR = 0;
45
 
46
        // initalize modules
47
        LED_Init();
48
        LEDRED_ON;
49
    TIMER0_Init();
50
        USART0_Init();
51
        UBX_Init();
52
        USART1_Init();
53
        ADC_Init();
54
        Button_Init();
55
        // enable interrupts global
56
        sei();
57
 
58
        // try to initialize the FAT 16 filesystem on the SD-Card
59
        Fat16_Init();
60
        // initialize the settings
61
        Settings_Init();
62
        // initialize logging (needs settings)
63
        Logging_Init();
64
 
434 killagreg 65
        LEDRED_OFF;
66
        LEDGRN_ON;
67
 
426 killagreg 68
        #ifdef USE_SDLOGGER
69
        printf("\r\n\r\nHW: SD-Logger");
70
        #endif
71
        #ifdef USE_FOLLOWME
72
        printf("\r\n\r\nHW: Follow-Me");
73
        #endif
74
        printf("\r\nFollow Me\n\rSoftware:V%d.%d%c ",VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH + 'a');
75
        printf("\r\n------------------------------");
76
        printf("\r\n");
77
 
78
 
79
        //BeepTime = 2000;
80
 
81
    LCD_Clear();
82
 
83
        FollowMe_Timer = SetDelay(FOLLOWME_INTERVAL);
84
 
85
        while (1)
86
        {
87
                // get gps data to update the follow me position
88
                GPS_Update();
89
 
90
                // update logging
91
                Logging_Update();
92
 
93
                // check for button action and change state resectively
94
                if(GetButton())
95
                {
96
                        BeepTime = 200;
97
 
98
                        switch(SysState)
99
                        {
100
                                case STATE_IDLE:
101
                                        if(!Error) SysState = STATE_SEND_FOLLOWME; // activate followme only of no error has occured
102
                                        break;
103
 
104
                                case STATE_SEND_FOLLOWME:
105
                                        SysState = STATE_IDLE;
106
                                        break;
107
 
108
                                default:
109
                                        SysState = STATE_IDLE;
110
                                        break;
111
                        }
112
 
113
                }
114
 
115
                // state machine
116
                switch(SysState)
117
                {
118
                        case STATE_SEND_FOLLOWME:
119
                                if(CheckDelay(FollowMe_Timer)) // time for next message?
120
                                {
121
                                        if(FollowMe.Position.Status == NEWDATA)        // if new
122
                                        {   // update remaining data
123
                                                FollowMe_Timer = SetDelay(FOLLOWME_INTERVAL);  // reset timer
124
                                                FollowMe.Heading = -1;                  // invalid heading
125
                                                FollowMe.ToleranceRadius = 1;   // 1 meter
126
                                                FollowMe.HoldTime = 60;         // go home after 60s without any update
127
                                                FollowMe.Event_Flag = 0;        // no event
128
                                                FollowMe.reserve[0] = 0;                // reserve
129
                                                FollowMe.reserve[1] = 0;                // reserve
130
                                                FollowMe.reserve[2] = 0;                // reserve
131
                                                FollowMe.reserve[3] = 0;                // reserve
132
                                                Request_SendFollowMe = 1;       // triggers serial tranmission
133
 
134
                                        }
135
                                        else // now new position avalable (maybe bad gps signal condition)
136
                                        {
137
                                                FollowMe_Timer = SetDelay(FOLLOWME_INTERVAL/4);  // reset timer on higer frequency
138
                                        }
139
                                        LEDGRN_TOGGLE;                                          // indication of active follow me
140
                                }
141
                                break;
142
 
143
                        case STATE_IDLE:
144
                                // do nothing
145
                                LEDGRN_ON;
146
                                break;
147
 
148
                        default:
149
                                // triger to idle state
150
                                SysState = STATE_IDLE;
151
                                break;
152
 
153
                }
154
 
155
 
156
                // restart ADConversion if ready
157
                if(ADReady)
158
                {
159
                        DebugOut.Analog[0] = Adc0;
160
                        DebugOut.Analog[1] = Adc1;
161
                        DebugOut.Analog[2] = Adc2;
162
                        DebugOut.Analog[3] = Adc3;
163
                        DebugOut.Analog[4] = Adc4;
164
                        DebugOut.Analog[5] = Adc5;
165
                        DebugOut.Analog[6] = Adc6;
166
                        DebugOut.Analog[7] = Adc7;
167
 
168
                        #ifdef USE_FOLLOWME
169
                        // AVcc = 5V --> 5V = 1024 counts
170
                        // the voltage at the voltage divider reference point is 0.8V less that the UBat
171
                        // because of the silicon diode inbetween.
172
                        // voltage divider R2=10K, R3=3K9
173
                        // UAdc4 = R3/(R3+R2)*UBat= 3.9/(3.9+10)*UBat = UBat/3.564
174
                        UBat = (3 * UBat + (64 * Adc4) / 368) / 4;
175
                        DebugOut.Analog[8] = UBat;
176
 
177
                        // check for zellenzahl
178
                        if(PowerOn < 100)
179
                        {
180
                                if(UBat<=84) Zellenzahl = 2;
181
                                else Zellenzahl = 3;
182
                                PowerOn++;
183
                        }
184
                        DebugOut.Analog[16] = Zellenzahl;
185
                        DebugOut.Analog[17] = PowerOn;
186
 
187
                        //show recognised Zellenzahl to user
188
                        if(i < Zellenzahl && PowerOn >= 100 && BeepTime == 0 && delay > 1000)
189
                        {
190
                                BeepTime = 100;
191
                                i++;
192
                                delay = 0;
193
                        }
194
                        if(delay < 1500) delay++;
195
 
196
                        // monitor battery undervoltage [...||(UBat<74) as temporary workaround to protect 2s lipo packs]
197
                        if(((UBat < Zellenzahl * CELLUNDERVOLTAGE)||(UBat < 74)) && (PowerOn >= 100))
198
                        {   // sound for low battery
199
                                BeepModulation = 0x0300;
200
                                if(!BeepTime)
201
                                {
430 killagreg 202
                                        BeepTime = 6000; // 0.6 seconds
426 killagreg 203
                                }
204
                                Error |= ERROR_LOW_BAT;
205
                        }
206
                        else
207
                        {
208
                                Error &= ~ERROR_LOW_BAT;
209
                        }
210
                        #endif
211
                        ADReady = 0;
212
                        ADC_Enable(); // restart ad conversion sequence
213
                }
214
 
215
                // serial communication
216
                USART0_ProcessRxData();
217
                USART0_TransmitTxData();
218
 
219
                // indicate error, blinking code tbd.
220
                if(Error)       LEDRED_ON;
221
                else            LEDRED_OFF;
222
 
223
    }
224
        return (1);
225
}
226