Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1171 hbuss 1
/*#######################################################################################
2
Decodieren eines RC Summen Signals oder Spektrum Empfänger-Satellit
3
#######################################################################################*/
4
 
1426 ingob 5
#include "Spektrum.h"
1171 hbuss 6
#include "main.h"
1680 holgerb 7
// Achtung: RECEIVER_SPEKTRUM_EXP wird in der Main.h gesetzt
1506 holgerb 8
 
1320 hbuss 9
unsigned char SpektrumTimer = 0;
1171 hbuss 10
 
1749 - 11
#ifdef RECEIVER_SPEKTRUM_EXP //#endif
1680 holgerb 12
unsigned char s_excnt = 0;                   // Counter for Spektrum-Expander
13
unsigned char s_exparity = 0;                // Parity Bit for Spektrum-Expander
14
signed char s_exdata[11];         // Data for Spektrum-Expander
1749 - 15
//#endif
1213 ingob 16
//--------------------------------------------------------------//
17
//--------------------------------------------------------------//
18
void SpektrumBinding(void)
19
{
20
  unsigned int timerTimeout = SetDelay(10000);  // Timeout 10 sec.
21
  unsigned char connected = 0;
22
  unsigned int delaycounter;
1391 killagreg 23
 
1213 ingob 24
  UCSR1B &= ~(1 << RXCIE1);  // disable rx-interrupt
25
  UCSR1B &= ~(1<<RXEN1);     // disable Uart-Rx
26
  PORTD &= ~(1 << PORTD2);   // disable pull-up
1391 killagreg 27
 
1213 ingob 28
  printf("\n\rPlease connect Spektrum receiver for binding NOW...");
1391 killagreg 29
 
1213 ingob 30
  while(!CheckDelay(timerTimeout))
31
  {
32
    if (PIND & (1 << PORTD2)) { timerTimeout = SetDelay(90); connected = 1; break; }
33
  }
1391 killagreg 34
 
35
  if (connected)
36
  {
37
 
38
    printf("ok.\n\r");
1213 ingob 39
    DDRD |= (1 << DDD2);     // Rx as output
40
 
1680 holgerb 41
        while(!CheckDelay(timerTimeout));  // delay after startup of RX
42
        for (delaycounter = 0; delaycounter < 100; delaycounter++) PORTD |= (1 << PORTD2);
43
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD &= ~(1 << PORTD2);
1391 killagreg 44
 
1680 holgerb 45
        for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD |= (1 << PORTD2);
1213 ingob 46
    for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD &= ~(1 << PORTD2);
1680 holgerb 47
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD |= (1 << PORTD2);
48
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD &= ~(1 << PORTD2);
1391 killagreg 49
 
1680 holgerb 50
        for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD |= (1 << PORTD2);
1213 ingob 51
    for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD &= ~(1 << PORTD2);
1680 holgerb 52
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD |= (1 << PORTD2);
53
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD &= ~(1 << PORTD2);
1213 ingob 54
 
1680 holgerb 55
        for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD |= (1 << PORTD2);
1213 ingob 56
    for (delaycounter = 0; delaycounter < 10; delaycounter++) PORTD &= ~(1 << PORTD2);
1680 holgerb 57
        for (delaycounter = 0; delaycounter < 400; delaycounter++) PORTD |= (1 << PORTD2);
1391 killagreg 58
 
1213 ingob 59
  }
1391 killagreg 60
   else
61
  { printf("Timeout.\n\r");
62
 
63
 
1213 ingob 64
  }
1391 killagreg 65
 
1213 ingob 66
  DDRD &= ~(1 << DDD2);      // RX as input
1391 killagreg 67
  PORTD &= ~(1 << PORTD2);
1213 ingob 68
 
1424 ingob 69
  SpektrumUartInit();    // init Uart again
1213 ingob 70
}
1749 - 71
#endif
1171 hbuss 72
//############################################################################
73
// USART1 initialisation from killagreg
1424 ingob 74
void SpektrumUartInit(void)
1171 hbuss 75
//############################################################################
76
    {
1749 - 77
    #ifdef RECEIVER_SPEKTRUM_EXP //#endif
78
 
79
    // -- Start of USART1 initialisation for Spekturm seriell-mode
1680 holgerb 80
        // USART1 Control and Status Register A, B, C and baud rate register
81
        uint8_t sreg = SREG;
82
 
83
        uint16_t ubrr = (uint16_t) ((uint32_t) SYSCLK/(8 * 115200) - 1);
84
 
85
        // disable all interrupts before reconfiguration
86
        cli();
87
        // disable RX-Interrupt
88
        UCSR1B &= ~(1 << RXCIE1);
89
        // disable TX-Interrupt
90
        UCSR1B &= ~(1 << TXCIE1);
91
        // disable DRE-Interrupt
92
        UCSR1B &= ~(1 << UDRIE1);
93
        // set direction of RXD1 and TXD1 pins
94
        // set RXD1 (PD2) as an input pin
95
        PORTD |= (1 << PORTD2);
96
        DDRD &= ~(1 << DDD2);
1431 ingob 97
 
1680 holgerb 98
        // set TXD1 (PD3) as an output pin
99
        PORTD |= (1 << PORTD3);
100
        DDRD  |= (1 << DDD3);
101
 
102
        // USART0 Baud Rate Register
103
        // set clock divider
104
        UBRR1H = (uint8_t)(ubrr>>8);
105
        UBRR1L = (uint8_t)ubrr;
106
        // enable double speed operation
107
        UCSR1A |= (1 << U2X1);
108
        // enable receiver and transmitter
109
        //UCSR1B = (1<<RXEN1)|(1<<TXEN1);
1391 killagreg 110
 
1680 holgerb 111
        UCSR1B = (1<<RXEN1);
112
        // set asynchronous mode
113
        UCSR1C &= ~(1 << UMSEL11);
114
        UCSR1C &= ~(1 << UMSEL10);
115
        // no parity
116
        UCSR1C &= ~(1 << UPM11);
117
        UCSR1C &= ~(1 << UPM10);
118
        // 1 stop bit
119
        UCSR1C &= ~(1 << USBS1);
120
        // 8-bit
121
        UCSR1B &= ~(1 << UCSZ12);
122
        UCSR1C |=  (1 << UCSZ11);
123
        UCSR1C |=  (1 << UCSZ10);
124
        // flush receive buffer explicit
125
        while(UCSR1A & (1<<RXC1)) UDR1;
126
        // enable RX-interrupts at the end
127
        UCSR1B |= (1 << RXCIE1);
128
        // -- End of USART1 initialisation
129
        // restore global interrupt flags
1431 ingob 130
 
1680 holgerb 131
        SREG = sreg;
1171 hbuss 132
  return;
1749 - 133
  #endif
1171 hbuss 134
 }
1391 killagreg 135
 
1171 hbuss 136
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
137
// + Copyright (c) Rainer Walther
138
// + RC-routines from original MK rc.c (c) H&I
139
// + Useful infos from Walter: http://www.rcgroups.com/forums/showthread.php?t=714299&page=2
140
// + only for non-profit use
141
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
142
//
143
// 20080808 rw Modified for Spektrum AR6100 (PPM)
144
// 20080823 rw Add Spektrum satellite receiver on USART1 (644P only)
145
// 20081213 rw Add support for Spektrum DS9 Air-Tx-Module (9 channels)
146
//             Replace AR6100-coding with original composit-signal routines
147
//
148
// ---
149
// Entweder Summensignal ODER Spektrum-Receiver anschließen. Nicht beides gleichzeitig betreiben!
150
// Binding is not implemented. Bind with external Receiver.
151
// Servo output J3, J4, J5 not serviced
152
//
153
// Anschuß Spektrum Receiver
1680 holgerb 154
//              Orange:         3V von der FC (keinesfalls an 5V anschließen!)
155
//              Schwarz:        GND
156
//              Grau:           RXD1 (Pin 3) auf 10-Pol FC-Stecker
1171 hbuss 157
//
158
// ---
159
// Satellite-Reciever connected on USART1:
160
//
161
// DX7/DX6i: One data-frame at 115200 baud every 22ms.
162
// DX7se:    One data-frame at 115200 baud every 11ms.
1680 holgerb 163
//              byte1:  unknown
164
//      byte2:  unknown
165
//      byte3:  and byte4:  channel data        (FLT-Mode)
166
//      byte5:  and byte6:  channel data        (Roll)
167
//      byte7:  and byte8:  channel data        (Nick)
168
//      byte9:  and byte10: channel data        (Gier)
169
//      byte11: and byte12: channel data        (Gear Switch)
170
//      byte13: and byte14: channel data        (Gas)
171
//      byte15: and byte16: channel data        (AUX2)
1171 hbuss 172
//
173
// DS9 (9 Channel): One data-frame at 115200 baud every 11ms, alternating frame 1/2 for CH1-7 / CH8-9
174
//  1st Frame:
1680 holgerb 175
//              byte1:  unknown
176
//      byte2:  unknown
177
//              byte3:  and byte4:  channel data
178
//      byte5:  and byte6:  channel data
179
//      byte7:  and byte8:  channel data
180
//      byte9:  and byte10: channel data
181
//      byte11: and byte12: channel data
182
//      byte13: and byte14: channel data
183
//      byte15: and byte16: channel data
1171 hbuss 184
//  2nd Frame:
1680 holgerb 185
//              byte1:  unknown
186
//      byte2:  unknown
187
//              byte3:  and byte4:  channel data
188
//      byte5:  and byte6:  channel data
189
//      byte7:  and byte8:  0xffff
190
//      byte9:  and byte10: 0xffff
191
//      byte11: and byte12: 0xffff
192
//      byte13: and byte14: 0xffff
193
//      byte15: and byte16: 0xffff
1171 hbuss 194
//
195
// Each channel data (16 bit= 2byte, first msb, second lsb) is arranged as:
196
//
197
// Bits: F 0 C3 C2 C1 C0 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
198
//
199
// 0 means a '0' bit
200
// F: 1 = indicates beginning of 2nd frame for CH8-9 (DS9 only)
201
// C3 to C0 is the channel number. 0 to 9 (4 bit, as assigned in the transmitter)
202
// D9 to D0 is the channel data (10 bit) 0xaa..0x200..0x356 for 100% transmitter-travel
203
//
204
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
205
 
1322 hbuss 206
#define MIN_FRAMEGAP 68  // 7ms
207
#define MAX_BYTEGAP  3   // 310us
1320 hbuss 208
 
1419 ingob 209
 
1171 hbuss 210
//############################################################################
1481 holgerb 211
// Wird im UART-Interrupt aufgerufen
1171 hbuss 212
//############################################################################
1419 ingob 213
void SpektrumParser(unsigned char c)
1171 hbuss 214
{
1749 - 215
#ifdef RECEIVER_SPEKTRUM_EXP //#endif
216
 
1320 hbuss 217
    static unsigned char Sync=0, FrameCnt=0, ByteHigh=0, ReSync=1, Frame2=0;
1680 holgerb 218
        unsigned int Channel, index = 0;
219
        signed int signal = 0, tmp;
220
        int bCheckDelay;
221
//      c = UDR1; // get data byte
222
        if(ReSync == 1)
223
            {
224
                // wait for beginning of new frame
225
                ReSync = 0;
226
                SpektrumTimer = MIN_FRAMEGAP;
227
                FrameCnt = 0;
228
                Sync = 0;
229
                ByteHigh = 0;
230
                }
1171 hbuss 231
  else
1391 killagreg 232
  {
1680 holgerb 233
        if(!SpektrumTimer) bCheckDelay = 1; else bCheckDelay = 0;//CheckDelay(FrameTimer);
234
        if ( Sync == 0 )
235
            {
236
                if(bCheckDelay)
237
                    {
238
                        // nach einer Pause von mind. 7ms erstes Sync-Character gefunden
239
                        // Zeichen ignorieren, da Bedeutung unbekannt
240
                        Sync = 1;
241
                        FrameCnt ++;
242
                    SpektrumTimer = MAX_BYTEGAP;
243
                        }
244
                else
245
                        {
246
                        // Zeichen kam vor Ablauf der 7ms Sync-Pause
247
                        // warten auf erstes Sync-Zeichen
248
                        SpektrumTimer = MIN_FRAMEGAP;
249
                    FrameCnt = 0;
250
                    Sync = 0;
251
                    ByteHigh = 0;
252
                        }
253
                }
254
        else if((Sync == 1) && !bCheckDelay)
255
            {
256
                // zweites Sync-Character ignorieren, Bedeutung unbekannt
257
                Sync = 2;
258
                FrameCnt ++;
259
                SpektrumTimer = MAX_BYTEGAP;
260
                }
261
        else if((Sync == 2) && !bCheckDelay)
262
            {
263
                SpektrumTimer = MAX_BYTEGAP;
264
                // Datenbyte high
265
                ByteHigh = c;
266
                if (FrameCnt == 2)
267
                    {
268
                    // is 1st Byte of Channel-data
269
                        // Frame 1 with Channel 1-7 comming next
270
                        Frame2 = 0;
271
                        if(ByteHigh & 0x80)
272
                            {
273
                                // DS9: Frame 2 with Channel 8-9 comming next
274
                                Frame2 = 1;
275
                                }
276
                        }
277
                Sync = 3;
278
                FrameCnt ++;
279
                }
280
        else if((Sync == 3) && !bCheckDelay)
281
            {
282
                // Datenbyte low
283
                // High-Byte for next channel comes next
284
                SpektrumTimer = MAX_BYTEGAP;
285
                Sync = 2;
286
                FrameCnt ++;
287
                Channel = ((unsigned int)ByteHigh << 8) | c;
288
                if(EE_Parameter.Receiver == RECEIVER_SPEKTRUM)
289
                {
290
                        signal = Channel & 0x3ff;
291
                        signal -= 0x200;                // Offset, range 0x000..0x3ff?
292
                        signal = signal/3;              // scaling to fit PPM resolution
293
                        index = (ByteHigh >> 2) & 0x0f;
294
                }
295
                else  
296
                if(EE_Parameter.Receiver == RECEIVER_SPEKTRUM_HI_RES)
297
                {
298
                        signal = Channel & 0x7ff;
299
                        signal -= 0x400;                // Offset, range 0x000..0x7ff?
300
                        signal = signal/6;              // scaling to fit PPM resolution
301
                        index = (ByteHigh >> 3) & 0x0f;
302
                }      
303
                else  
304
                //if(EE_Parameter.Receiver == RECEIVER_SPEKTRUM_LOW_RES)
305
                {
306
                        signal = Channel & 0x3ff;
307
                        signal -= 360;          // Offset, range 0x000..0x3ff?
308
                        signal = signal/2;              // scaling to fit PPM resolution
309
                        index = (ByteHigh >> 2) & 0x0f;
310
                }
1391 killagreg 311
 
1680 holgerb 312
                index++;
313
                if(index < 13)
314
                {
315
                // Stabiles Signal
1506 holgerb 316
#ifdef RECEIVER_SPEKTRUM_EXP
1680 holgerb 317
                                        if (index == 2) index = 4;                                                      // Analog channel reassigment (2 <-> 4) for logical numbering (1,2,3,4)
318
                                        else if (index == 4) index = 2;
1506 holgerb 319
#endif
1680 holgerb 320
                                        if(abs(signal - PPM_in[index]) < 6)
321
                                        {
322
                                                if(SenderOkay < 200) SenderOkay += 10;
323
                                        else
324
                                        {
325
                                                SenderOkay = 200;
326
                                                TIMSK1 &= ~_BV(ICIE1); // disable PPM-Input
327
                                        }
328
                                }
329
                                tmp = (3 * (PPM_in[index]) + signal) / 4;
330
                                if(tmp > signal+1) tmp--; else
331
                                if(tmp < signal-1) tmp++;
332
 
1506 holgerb 333
#ifdef RECEIVER_SPEKTRUM_EXP
1680 holgerb 334
                                if(index == 6)                                                                                                  // FLIGHT-MODE - The channel used for our data uplink
1506 holgerb 335
                                {
1680 holgerb 336
                                        if (signal > 100)                                                                                       // SYNC received
1506 holgerb 337
                                        {
1680 holgerb 338
                                                if (s_exdata[s_excnt] == 125) s_exparity = ~s_exparity; // Bit = 1 -> Re-Invert parity bit
339
                                                if ((s_excnt == 6 && ((s_exparity != 0 && s_exdata[s_excnt] == -125) || (s_exparity == 0 && s_exdata[s_excnt] == 125))) || (s_excnt == 9 && ((s_exparity == 0 && s_exdata[s_excnt] == -125) || (s_exparity != 0 && s_exdata[s_excnt] == 125)))) // Parity check
340
                                                {
341
                                                        if (s_exdata[1] == 125 && s_exdata[2] == -125) PPM_in[5] = -125;                // Reconstruct tripole Flight-Mode value (CH5)
342
                                                        else if (s_exdata[1] == -125 && s_exdata[2] == -125) PPM_in[5] = 0;     // Reconstruct tripole Flight-Mode value (CH5)
343
                                                        else if (s_exdata[1] == -125 && s_exdata[2] == 125) PPM_in[5] = 125;    // Reconstruct tripole Flight-Mode value (CH5)
344
                                                        PPM_in[6] = s_exdata[3];                                                        // Elevator (CH6)
345
                                                        PPM_in[11] = s_exdata[4];                                                       // Aileron (CH11)
346
                                                        PPM_in[12] = s_exdata[5];                                                       // Rudder (CH12)
347
 
348
                                                        if (s_excnt == 9)                                                                       // New Mode (12 Channels)
349
                                                        {
350
                                                                if (s_exdata[7] == 125) PPM_in[8] += 5;                 // Hover Pitch UP (CH8)
351
                                                                if (s_exdata[8] == 125) PPM_in[8] -= 5;                 // Hover Pitch DN (CH8)
352
                                                                if (PPM_in[8] < -125) PPM_in[8] = -125;         // Range-Limit
353
                                                                else if (PPM_in[8] > 125) PPM_in[8] = 125;      // Range-Limit
354
                                                                PPM_in[10] = s_exdata[6];                                               // AUX2 (CH10)
355
                                                        }
356
                                                }
357
 
358
                                                s_excnt = 0;                                                                                            // Reset bitcounter
359
                                                s_exparity = 0;                                                                                 // Reset parity bit
1506 holgerb 360
                                        }
361
 
1680 holgerb 362
                                        if (signal < 10) s_exdata[++s_excnt] = -125;                                    // Bit = 0 -> value = -125 (min)
363
                                        if (s_excnt == 10) s_excnt = 0;                                                         // Overflow protection
1506 holgerb 364
                                        if (signal < -100)
365
                                        {
1680 holgerb 366
                                                s_exdata[s_excnt] = 125;                                                                        // Bit = 1 -> value = 125 (max)
367
                                                s_exparity = ~s_exparity;                                                                       // Bit = 1 -> Invert parity bit
1506 holgerb 368
                                        }
1680 holgerb 369
 
1506 holgerb 370
                                }
371
#endif
372
                                if(SenderOkay >= 180) PPM_diff[index] = ((tmp - PPM_in[index]) / 3) * 3;
1680 holgerb 373
                                else PPM_diff[index] = 0;
1506 holgerb 374
 
375
#ifdef RECEIVER_SPEKTRUM_EXP
1680 holgerb 376
                                if (index < 5 ) PPM_in[index] = tmp;                                                    // Update normal potis (CH1-4)
377
                                else if (index == 5) PPM_in[7] = signal;                                                // Gear (CH7)
378
                                else if (index == 7) PPM_in[9] = signal;                                                // Hover Throttle (CH9)
1506 holgerb 379
#else
380
                                PPM_in[index] = tmp;
381
#endif
1171 hbuss 382
                        }
1506 holgerb 383
        else if(index > 17) ReSync = 1; // hier stimmt was nicht: neu synchronisieren
1680 holgerb 384
                }
385
        else
386
                {
387
                // hier stimmt was nicht: neu synchronisieren
388
                ReSync = 1;
389
                FrameCnt = 0;
390
                Frame2 = 0;
391
                // new frame next, nach fruehestens 7ms erwartet
392
                SpektrumTimer = MIN_FRAMEGAP;
393
                }
1391 killagreg 394
 
1680 holgerb 395
        // 16 Bytes eingetroffen -> Komplett
396
        if(FrameCnt >= 16)
397
            {
398
                // Frame complete
399
                if(Frame2 == 0)
400
                        {
401
                        // Null bedeutet: Neue Daten
402
                        // nur beim ersten Frame (CH 0-7) setzen
403
                        if(!ReSync) NewPpmData = 0;
404
                        }
405
                FrameCnt = 0;
406
                Frame2 = 0;
407
                Sync = 0;
408
                SpektrumTimer = MIN_FRAMEGAP;
409
                }
1171 hbuss 410
   }
1749 - 411
   #endif
1391 killagreg 412
}