Rev 189 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 189 | Rev 191 | ||
---|---|---|---|
1 | /*####################################################################################### |
1 | /*####################################################################################### |
2 | Decodieren eines RC Summen Signals |
2 | Decodieren eines RC Summen Signals |
3 | #######################################################################################*/ |
3 | #######################################################################################*/ |
4 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
4 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
5 | // + Copyright (c) 04.2007 Holger Buss |
5 | // + Copyright (c) 04.2007 Holger Buss |
6 | // + only for non-profit use |
6 | // + only for non-profit use |
7 | // + www.MikroKopter.com |
7 | // + www.MikroKopter.com |
8 | // + see the File "License.txt" for further Informations |
8 | // + see the File "License.txt" for further Informations |
9 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
9 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
10 | 10 | ||
11 | #include "rc.h" |
11 | #include "rc.h" |
12 | #include "main.h" |
12 | #include "main.h" |
13 | 13 | ||
14 | volatile int PPM_in[11]; |
14 | volatile int PPM_in[11]; |
15 | volatile int PPM_diff[11]; // das diffenzierte Stick-Signal |
15 | volatile int PPM_diff[11]; // das diffenzierte Stick-Signal |
16 | volatile unsigned char NewPpmData = 1; |
16 | volatile unsigned char NewPpmData = 1; |
17 | 17 | ||
18 | //############################################################################ |
18 | //############################################################################ |
19 | //zum decodieren des PPM-Signals wird Timer1 mit seiner Input |
19 | //zum decodieren des PPM-Signals wird Timer1 mit seiner Input |
20 | //Capture Funktion benutzt: |
20 | //Capture Funktion benutzt: |
21 | void rc_sum_init (void) |
21 | void rc_sum_init (void) |
22 | //############################################################################ |
22 | //############################################################################ |
23 | { |
23 | { |
24 | TCCR1B=(1<<CS11)|(1<<CS10)|(1<<ICES1)|(1<<ICNC1);//|(1 << WGM12); //timer1 prescale 64 |
24 | TCCR1B=(1<<CS11)|(1<<CS10)|(1<<ICES1)|(1<<ICNC1);//|(1 << WGM12); //timer1 prescale 64 |
25 | 25 | ||
26 | // PWM |
26 | // PWM |
27 | //TCCR1A = (1 << COM1B1) | (1 << WGM11) | (1 << WGM10); |
27 | //TCCR1A = (1 << COM1B1) | (1 << WGM11) | (1 << WGM10); |
28 | //TCCR1B |= (1 << WGM12); |
28 | //TCCR1B |= (1 << WGM12); |
29 | //OCR1B = 55; |
29 | //OCR1B = 55; |
30 | 30 | ||
31 | TIMSK1 |= _BV(ICIE1); |
31 | TIMSK1 |= _BV(ICIE1); |
32 | AdNeutralGier = 0; |
32 | AdNeutralGier = 0; |
33 | AdNeutralRoll = 0; |
33 | AdNeutralRoll = 0; |
34 | AdNeutralNick = 0; |
34 | AdNeutralNick = 0; |
35 | return; |
35 | return; |
36 | } |
36 | } |
37 | 37 | ||
38 | //############################################################################ |
38 | //############################################################################ |
39 | //Diese Routine startet und inizialisiert den Timer für RC |
39 | //Diese Routine startet und inizialisiert den Timer für RC |
40 | SIGNAL(SIG_INPUT_CAPTURE1) |
40 | SIGNAL(SIG_INPUT_CAPTURE1) |
41 | //############################################################################ |
41 | //############################################################################ |
42 | 42 | ||
43 | { |
43 | { |
44 | static unsigned int AltICR=0; |
44 | static unsigned int AltICR=0; |
45 | signed int signal = 0,tmp; |
45 | signed int signal = 0,tmp; |
46 | static int index; |
46 | static int index; |
47 | 47 | ||
48 | signal = (unsigned int) ICR1 - AltICR; |
48 | signal = (unsigned int) ICR1 - AltICR; |
49 | AltICR = ICR1; |
49 | AltICR = ICR1; |
50 | 50 | ||
51 | //Syncronisationspause? |
51 | //Syncronisationspause? |
52 | if ((signal > 1500) && (signal < 8000)) |
52 | if ((signal > 1500) && (signal < 8000)) |
53 | { |
53 | { |
54 | index = 1; |
54 | index = 1; |
55 | NewPpmData = 0; // Null bedeutet: Neue Daten |
55 | NewPpmData = 0; // Null bedeutet: Neue Daten |
56 | // OCR2A = Poti2/2 + 80; |
56 | // OCR2A = Poti2/2 + 80; |
57 | 57 | ||
58 | } |
58 | } |
59 | else |
59 | else |
60 | { |
60 | { |
61 | if(index < 10) |
61 | if(index < 10) |
62 | { |
62 | { |
63 | if((signal > 250) && (signal < 687)) |
63 | if((signal > 250) && (signal < 687)) |
64 | { |
64 | { |
65 | signal -= 466; |
65 | // signal -= 466; |
- | 66 | signal -= 526; // Anpassung fuer Simprop SAM FM 30.09.07 Steff |
|
66 | // Stabiles Signal |
67 | // Stabiles Signal |
67 | if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10;} |
68 | if(abs(signal - PPM_in[index]) < 6) { if(SenderOkay < 200) SenderOkay += 10;} |
68 | tmp = (3 * (PPM_in[index]) + signal) / 4; |
69 | tmp = (3 * (PPM_in[index]) + signal) / 4; |
69 | // if(tmp > signal+1) tmp--; else |
70 | // if(tmp > signal+1) tmp--; else |
70 | // if(tmp < signal-1) tmp++; |
71 | // if(tmp < signal-1) tmp++; |
71 | PPM_diff[index] = tmp - PPM_in[index]; |
72 | PPM_diff[index] = tmp - PPM_in[index]; |
72 | PPM_in[index] = tmp; |
73 | PPM_in[index] = tmp; |
73 | } |
74 | } |
74 | index++; |
75 | index++; |
75 | if(index == 5) PORTD |= 0x20; else PORTD &= ~0x20; // Servosignal an J3 anlegen |
76 | if(index == 5) PORTD |= 0x20; else PORTD &= ~0x20; // Servosignal an J3 anlegen |
76 | if(index == 6) PORTD |= 0x10; else PORTD &= ~0x10; // Servosignal an J4 anlegen |
77 | if(index == 6) PORTD |= 0x10; else PORTD &= ~0x10; // Servosignal an J4 anlegen |
77 | if(index == 7) PORTD |= 0x08; else PORTD &= ~0x08; // Servosignal an J5 anlegen |
78 | if(index == 7) PORTD |= 0x08; else PORTD &= ~0x08; // Servosignal an J5 anlegen |
78 | } |
79 | } |
79 | } |
80 | } |
80 | } |
81 | } |
81 | 82 | ||
82 | 83 | ||
83 | 84 | ||
84 | 85 | ||
85 | 86 | ||
86 | 87 |