Subversion Repositories FlightCtrl

Rev

Rev 408 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 408 Rev 409
Line 48... Line 48...
48
 
48
 
49
                if (!cntKompass--)              // Aufruf mit 10 Hz
49
                if (!cntKompass--)              // Aufruf mit 10 Hz
50
                {
50
                {
51
                        int heading;
51
                        int heading;
52
                        heading = heading_MM3();
52
                        heading = heading_MM3();
53
                        KompassValue = (KompassValue * 7 + heading) / 8;                // Filtern
53
                        KompassValue = (KompassValue * 3 + heading) / 4;                // Filtern
54
                        KompassRichtung = ((540 + KompassValue - KompassStartwert) % 360) - 180;
54
                        KompassRichtung = ((540 + KompassValue - KompassStartwert) % 360) - 180;
55
                        cntKompass = 980;
55
                        cntKompass = 980;
56
                }
56
                }
57
        }
57
        }