Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
1910 - 1
#include <avr/io.h>
2
#include <avr/interrupt.h>
3
#include "eeprom.h"
2102 - 4
#include "output.h"
5
#include "flight.h"
1910 - 6
#include "attitude.h"
2104 - 7
#include "timer2.h"
1910 - 8
 
2102 - 9
// #define COARSERESOLUTION 1
1910 - 10
 
2099 - 11
#ifdef COARSERESOLUTION
12
#define NEUTRAL_PULSELENGTH 938
13
#define STABILIZATION_LOG_DIVIDER 6
14
#define SERVOLIMIT 500
15
#define SCALE_FACTOR 4
16
#define CS2 ((1<<CS21)|(1<<CS20))
1910 - 17
 
2099 - 18
#else
19
#define NEUTRAL_PULSELENGTH 3750
20
#define STABILIZATION_LOG_DIVIDER 4
21
#define SERVOLIMIT 2000
22
#define SCALE_FACTOR 16
23
#define CS2 (1<<CS21)
24
#endif
1910 - 25
 
2099 - 26
#define FRAMELEN ((NEUTRAL_PULSELENGTH + SERVOLIMIT) * staticParams.servoCount + 128)
27
#define MIN_PULSELENGTH (NEUTRAL_PULSELENGTH - SERVOLIMIT)
28
#define MAX_PULSELENGTH (NEUTRAL_PULSELENGTH + SERVOLIMIT)
29
 
30
volatile uint8_t recalculateServoTimes = 0;
31
volatile uint16_t servoValues[MAX_SERVOS];
32
volatile uint16_t previousManualValues[2];
33
 
34
#define HEF4017R_ON     PORTC |=  (1<<PORTC6)
35
#define HEF4017R_OFF    PORTC &= ~(1<<PORTC6)
36
 
2109 - 37
//#define HEF4017R_ON ;
38
//#define HEF4017R_OFF ;
39
 
1910 - 40
/*****************************************************
2099 - 41
 *              Initialize Timer 2
1910 - 42
 *****************************************************/
43
void timer2_init(void) {
2099 - 44
    uint8_t sreg = SREG;
1910 - 45
 
2099 - 46
    // disable all interrupts before reconfiguration
47
    cli();
48
 
49
    // set PD7 as output of the PWM for pitch servo
50
    DDRD |= (1 << DDD7);
51
    PORTD &= ~(1 << PORTD7); // set PD7 to low
52
 
53
    DDRC |= (1 << DDC6); // set PC6 as output (Reset for HEF4017)
2109 - 54
    HEF4017R_ON; // reset
2099 - 55
 
56
    // Timer/Counter 2 Control Register A
57
    // Timer Mode is CTC (Bits: WGM22 = 0, WGM21 = 1, WGM20 = 0)
58
    // PD7: Output OCR2 match, (Bits: COM2A1 = 1, COM2A0 = 0)
59
    // PD6: Normal port operation, OC2B disconnected, (Bits: COM2B1 = 0, COM2B0 = 0)
60
    TCCR2A &= ~((1 << COM2A0) | (1 << COM2B1) | (1 << COM2B0) | (1 << WGM20) | (1 << WGM22));
61
    TCCR2A |= (1 << COM2A1) | (1 << WGM21);
62
 
63
    // Timer/Counter 2 Control Register B
64
 
65
    // Set clock divider for timer 2 to 20MHz / 8 = 2.5 MHz
66
    // The timer increments from 0x00 to 0xFF with an update rate of 2.5 kHz or 0.4 us
67
    // hence the timer overflow interrupt frequency is 625 kHz / 256 = 9.765 kHz or 0.1024ms
68
 
69
    TCCR2B &= ~((1 << FOC2A) | (1 << FOC2B) | (1 << CS20) | (1 << CS21) | (1 << CS22));
70
    TCCR2B |= CS2;
71
 
72
    // Initialize the Timer/Counter 2 Register
73
    TCNT2 = 0;
74
 
75
    // Initialize the Output Compare Register A used for signal generation on port PD7.
76
    OCR2A = 255;
77
 
78
    // Timer/Counter 2 Interrupt Mask Register
79
    // Enable timer output compare match A Interrupt only
80
    TIMSK2 &= ~((1 << OCIE2B) | (1 << TOIE2));
81
    TIMSK2 |= (1 << OCIE2A);
82
 
83
    for (uint8_t axis=0; axis<2; axis++)
84
      previousManualValues[axis] = dynamicParams.servoManualControl[axis] * SCALE_FACTOR;
85
 
86
    SREG = sreg;
1910 - 87
}
88
 
89
/*****************************************************
2102 - 90
 * Control (camera gimbal etc.) servos
1910 - 91
 *****************************************************/
2099 - 92
int16_t calculateStabilizedServoAxis(uint8_t axis) {
93
  int32_t value = attitude[axis] >> STABILIZATION_LOG_DIVIDER; // between -500000 to 500000 extreme limits. Just about
94
  // With full blast on stabilization gain (255) we want to convert a delta of, say, 125000 to 2000.
95
  // That is a divisor of about 1<<14. Same conclusion as H&I.
96
  value *= staticParams.servoConfigurations[axis].stabilizationFactor;
97
  value = value >> 8;
98
  if (staticParams.servoConfigurations[axis].flags & SERVO_STABILIZATION_REVERSE)
99
    return -value;
100
  return value;
101
}
102
 
103
// With constant-speed limitation.
104
uint16_t calculateManualServoAxis(uint8_t axis, uint16_t manualValue) {
105
  int16_t diff = manualValue - previousManualValues[axis];
106
  uint8_t maxSpeed = staticParams.servoManualMaxSpeed;
107
  if (diff > maxSpeed) diff = maxSpeed;
108
  else if (diff < -maxSpeed) diff = -maxSpeed;
109
  manualValue = previousManualValues[axis] + diff;
110
  previousManualValues[axis] = manualValue;
111
  return manualValue;
112
}
113
 
114
// add stabilization and manual, apply soft position limits.
115
// All in a [0..255*SCALE_FACTOR] space (despite signed types used internally)
116
int16_t featuredServoValue(uint8_t axis) {
117
  int16_t value = calculateManualServoAxis(axis, dynamicParams.servoManualControl[axis] * SCALE_FACTOR);
118
  value += calculateStabilizedServoAxis(axis);
119
  int16_t limit = staticParams.servoConfigurations[axis].minValue * SCALE_FACTOR;
120
  if (value < limit) value = limit;
121
  limit = staticParams.servoConfigurations[axis].maxValue * SCALE_FACTOR;
122
  if (value > limit) value = limit;
123
  value -= (128 * SCALE_FACTOR);
124
  if (value < -SERVOLIMIT) value = -SERVOLIMIT;
125
  else if (value > SERVOLIMIT) value = SERVOLIMIT;
126
  // Shift into the [NEUTRAL_PULSELENGTH-SERVOLIMIT..NEUTRAL_PULSELENGTH+SERVOLIMIT] space.
127
  return value + NEUTRAL_PULSELENGTH;
128
}
129
 
2102 - 130
void calculateControlServoValues(void) {
131
  int16_t value;
2103 - 132
  for (uint8_t axis=0; axis<4; axis++) {
2102 - 133
        value = controlServos[axis];
2103 - 134
        value *= 2;
2102 - 135
        servoValues[axis] = value + NEUTRAL_PULSELENGTH;
136
  }
2103 - 137
  debugOut.analog[24] = servoValues[0];
138
  debugOut.analog[25] = servoValues[1];
139
  debugOut.analog[26] = servoValues[2];
140
  debugOut.analog[27] = servoValues[3];
2102 - 141
}
142
 
143
void calculateFeaturedServoValues(void) {
144
  int16_t value;
145
  uint8_t axis;
146
 
147
  // Save the computation cost of computing a new value before the old one is used.
2099 - 148
  if (!recalculateServoTimes) return;
2102 - 149
 
2104 - 150
  for (axis= MAX_CONTROL_SERVOS; axis<MAX_CONTROL_SERVOS+2; axis++) {
151
        value = featuredServoValue(axis-MAX_CONTROL_SERVOS);
152
        servoValues[axis] = value;
2099 - 153
  }
2104 - 154
  for (axis=MAX_CONTROL_SERVOS+2; axis<MAX_SERVOS; axis++) {
2102 - 155
        value = 128 * SCALE_FACTOR;
2104 - 156
        servoValues[axis] = value;
2102 - 157
  }
158
 
2099 - 159
  recalculateServoTimes = 0;
160
}
161
 
1910 - 162
ISR(TIMER2_COMPA_vect) {
2099 - 163
  static uint16_t remainingPulseTime;
1910 - 164
  static uint8_t servoIndex = 0;
165
  static uint16_t sumOfPulseTimes = 0;
166
 
167
  if (!remainingPulseTime) {
168
    // Pulse is over, and the next pulse has already just started. Calculate length of next pulse.
2099 - 169
    if (servoIndex < staticParams.servoCount) {
1910 - 170
      // There are more signals to output.
2099 - 171
      sumOfPulseTimes += (remainingPulseTime = servoValues[servoIndex]);
1910 - 172
      servoIndex++;
173
    } else {
174
      // There are no more signals. Reset the counter and make this pulse cover the missing frame time.
175
      remainingPulseTime = FRAMELEN - sumOfPulseTimes;
176
      sumOfPulseTimes = servoIndex = 0;
2099 - 177
      recalculateServoTimes = 1;
178
      HEF4017R_ON;
1910 - 179
    }
180
  }
181
 
182
  // Schedule the next OCR2A event. The counter is already reset at this time.
2099 - 183
  if (remainingPulseTime > 256+128) {
184
    // Set output to reset to zero at next OCR match. It does not really matter when the output is set low again,
1910 - 185
    // as long as it happens once per pulse. This will, because all pulses are > 255+128 long.
2099 - 186
    OCR2A = 255;
1910 - 187
    TCCR2A &= ~(1<<COM2A0);
2099 - 188
    remainingPulseTime-=256;
189
  } else if (remainingPulseTime > 256) {
190
    // Remaining pulse lengths in the range [256..256+128] might cause trouble if handled the standard
191
    // way, which is in chunks of 256. The remainder would be very small, possibly causing an interrupt on interrupt
1910 - 192
    // condition. Instead we now make a chunk of 128. The remaining chunk will then be in [128..255] which is OK.
2099 - 193
    remainingPulseTime-=128;
194
    OCR2A=127;
1910 - 195
  } else {
196
    // Set output to high at next OCR match. This is when the 4017 counter will advance by one. Also set reset low
197
    TCCR2A |= (1<<COM2A0);
2099 - 198
    OCR2A = remainingPulseTime-1;
199
    remainingPulseTime=0;
200
    HEF4017R_OFF; // implement servo-disable here, by only removing the reset signal if ServoEnabled!=0.
1910 - 201
  }
202
}