Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
716 Nick666 1
/*#######################################################################################
2
Decodieren eines RC Summen Signals
3
#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 04.2007 Holger Buss
6
// + only for non-profit use
7
// + www.MikroKopter.com
8
// + see the File "License.txt" for further Informations
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
 
11
#include "rc.h"
12
#include "main.h"
13
 
14
volatile int PPM_in[11];
15
volatile int PPM_diff[11];  // das diffenzierte Stick-Signal
16
volatile unsigned char NewPpmData = 1;
17
 
18
//############################################################################
19
//zum decodieren des PPM-Signals wird Timer1 mit seiner Input
20
//Capture Funktion benutzt:
21
void rc_sum_init (void)
22
//############################################################################
23
{
753 Nick666 24
        TCCR1B=(1<<CS11)|(1<<CS10)|(1<<ICES1)|(1<<ICNC1);               //timer1 prescale 64
716 Nick666 25
 
26
    TIMSK1 |= _BV(ICIE1);
27
    AdNeutralGier = 0;
28
    AdNeutralRoll = 0;
29
    AdNeutralNick = 0;
30
    return;
31
}
32
 
33
//############################################################################
34
//Diese Routine startet und inizialisiert den Timer für RC
35
SIGNAL(SIG_INPUT_CAPTURE1)
36
//############################################################################
37
 
38
{
39
        static unsigned int AltICR=0;
40
    signed int signal = 0,tmp;
41
        static int index;              
42
 
43
        signal = (unsigned int) ICR1 - AltICR;         
44
        AltICR = ICR1; 
45
 
753 Nick666 46
    //Syncronisationspause?      
716 Nick666 47
        if((signal > 1100) && (signal < 8000))   
48
        {
49
        if(index >= 4)  NewPpmData = 0;  // Null bedeutet: Neue Daten
50
        index = 1;             
51
        }
52
        else
53
        {
54
        if(index < 10)
55
            {
56
            if((signal > 250) && (signal < 687))
57
                {
58
                signal -= 466;
59
 
60
                                // Stabiles Signal
61
                if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10;}
62
                tmp = (3 * (PPM_in[index]) + signal) / 4;  
63
                if(tmp > signal+1) tmp--; else
64
                if(tmp < signal-1) tmp++;
65
                if(SenderOkay >= 195)  PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
66
                else PPM_diff[index] = 0;
67
                PPM_in[index] = tmp;
68
                }
69
            index++;  
753 Nick666 70
         //if(index == 5) PORTD |= 0x20; else PORTD &= ~0x20;  // Servosignal an J3 anlegen
71
         //if(index == 6) PORTD |= 0x10; else PORTD &= ~0x10;  // Servosignal an J4 anlegen
72
         //if(index == 7) PORTD |= 0x08; else PORTD &= ~0x08;  // Servosignal an J5 anlegen 
716 Nick666 73
        }
74
        }
75
}
76
 
77
 
78
 
79
 
80