Further 2khz Stability Enhancements

This commit is contained in:
borisbstyle 2015-12-24 02:35:01 +01:00
parent a3fe45d774
commit 6d679b72e1
5 changed files with 38 additions and 23 deletions

View File

@ -5,6 +5,8 @@
* Author: borisb * Author: borisb
*/ */
#define INTERRUPT_WAIT_TIME 10
extern uint32_t targetLooptime; extern uint32_t targetLooptime;
bool gyroSyncCheckUpdate(void); bool gyroSyncCheckUpdate(void);

View File

@ -94,7 +94,7 @@ static void pidLuxFloat(pidProfile_t *pidProfile, controlRateConfig_t *controlRa
float ITerm,PTerm,DTerm; float ITerm,PTerm,DTerm;
int32_t stickPosAil, stickPosEle, mostDeflectedPos; int32_t stickPosAil, stickPosEle, mostDeflectedPos;
static float lastError[3]; static float lastError[3];
static float delta1[3], delta2[3]; static float delta1[3], delta2[3], delta3[3], delta4[3], delta5[3];
float delta, deltaSum; float delta, deltaSum;
int axis; int axis;
float horizonLevelStrength = 1; float horizonLevelStrength = 1;
@ -194,8 +194,17 @@ static void pidLuxFloat(pidProfile_t *pidProfile, controlRateConfig_t *controlRa
delta *= (1.0f / dT); delta *= (1.0f / dT);
if (!pidProfile->dterm_cut_hz) { if (!pidProfile->dterm_cut_hz) {
// add moving average here to reduce noise // add moving average here to reduce noise. More averaging needed for 2khz mode
deltaSum = (delta1[axis] + delta2[axis] + delta) / 3; deltaSum = delta1[axis] + delta2[axis] + delta;
if (targetLooptime < 1000) {
deltaSum += delta3[axis] + delta4[axis] + delta5[axis];
delta5[axis] = delta4[axis];
delta4[axis] = delta3[axis];
delta3[axis] = delta2[axis];
deltaSum /= 6;
} else {
deltaSum /= 3;
}
delta2[axis] = delta1[axis]; delta2[axis] = delta1[axis];
delta1[axis] = delta; delta1[axis] = delta;
} else { } else {
@ -234,7 +243,7 @@ static void pidRewrite(pidProfile_t *pidProfile, controlRateConfig_t *controlRat
int32_t errorAngle; int32_t errorAngle;
int axis; int axis;
int32_t delta, deltaSum; int32_t delta, deltaSum;
static int32_t delta1[3], delta2[3]; static int32_t delta1[3], delta2[3], delta3[3], delta4[3], delta5[3];;
int32_t PTerm, ITerm, DTerm; int32_t PTerm, ITerm, DTerm;
static int32_t lastError[3] = { 0, 0, 0 }; static int32_t lastError[3] = { 0, 0, 0 };
static int32_t previousErrorGyroI[3] = { 0, 0, 0 }; static int32_t previousErrorGyroI[3] = { 0, 0, 0 };
@ -337,8 +346,15 @@ static void pidRewrite(pidProfile_t *pidProfile, controlRateConfig_t *controlRat
delta = (delta * ((uint16_t) 0xFFFF / ((uint16_t)targetLooptime >> 4))) >> 6; delta = (delta * ((uint16_t) 0xFFFF / ((uint16_t)targetLooptime >> 4))) >> 6;
if (!pidProfile->dterm_cut_hz) { if (!pidProfile->dterm_cut_hz) {
// add moving average here to reduce noise // add moving average here to reduce noise (More moving average required for 2khz mode)
deltaSum = delta1[axis] + delta2[axis] + delta; deltaSum = delta1[axis] + delta2[axis] + delta;
if (targetLooptime < 1000) {
deltaSum += delta3[axis] + delta4[axis] + delta5[axis];
delta5[axis] = delta4[axis];
delta4[axis] = delta3[axis];
delta3[axis] = delta2[axis];
deltaSum /= 2; // Get same scaling
}
delta2[axis] = delta1[axis]; delta2[axis] = delta1[axis];
delta1[axis] = delta; delta1[axis] = delta;
} else { } else {

View File

@ -541,7 +541,7 @@ int main(void) {
init(); init();
/* Setup scheduler */ /* Setup scheduler */
rescheduleTask(TASK_GYROPID, targetLooptime); rescheduleTask(TASK_GYROPID, targetLooptime - INTERRUPT_WAIT_TIME);
setTaskEnabled(TASK_GYROPID, true); setTaskEnabled(TASK_GYROPID, true);
setTaskEnabled(TASK_ACCEL, sensors(SENSOR_ACC)); setTaskEnabled(TASK_ACCEL, sensors(SENSOR_ACC));

View File

@ -91,7 +91,7 @@ enum {
ALIGN_MAG = 2 ALIGN_MAG = 2
}; };
#define JITTER_DEBUG 0 // Specify debug value for jitter debug //#define JITTER_DEBUG 0 // Specify debug value for jitter debug
/* VBAT monitoring interval (in microseconds) - 1s*/ /* VBAT monitoring interval (in microseconds) - 1s*/
#define VBATINTERVAL (6 * 3500) #define VBATINTERVAL (6 * 3500)
@ -644,17 +644,6 @@ void processRx(void)
static bool haveProcessedAnnexCodeOnce = false; static bool haveProcessedAnnexCodeOnce = false;
#endif #endif
// Function for loop trigger
bool taskMainPidLoopCheck(uint32_t currentDeltaTime) {
bool loopTrigger = false;
if (gyroSyncCheckUpdate() || (currentDeltaTime >= (targetLooptime + GYRO_WATCHDOG_DELAY))) {
loopTrigger = true;
}
return loopTrigger;
}
void taskMainPidLoop(void) void taskMainPidLoop(void)
{ {
cycleTime = getTaskDeltaTime(TASK_SELF); cycleTime = getTaskDeltaTime(TASK_SELF);
@ -748,6 +737,16 @@ void taskMainPidLoop(void)
#endif #endif
} }
// Function for loop trigger
void taskMainPidLoopCheck(void) {
while (1) {
if (gyroSyncCheckUpdate() || (getTaskDeltaTime(TASK_SELF) >= (targetLooptime + GYRO_WATCHDOG_DELAY))) {
taskMainPidLoop();
break;
}
}
}
void taskUpdateAccelerometer(void) void taskUpdateAccelerometer(void)
{ {
imuUpdateAccelerometer(&currentProfile->accelerometerTrims); imuUpdateAccelerometer(&currentProfile->accelerometerTrims);

View File

@ -27,7 +27,7 @@
#include "drivers/system.h" #include "drivers/system.h"
#define SCHEDULER_DEBUG //#define SCHEDULER_DEBUG
cfTaskId_e currentTaskId = TASK_NONE; cfTaskId_e currentTaskId = TASK_NONE;
@ -62,8 +62,7 @@ typedef struct {
#endif #endif
} cfTask_t; } cfTask_t;
bool taskMainPidLoopCheck(uint32_t currentDeltaTime); void taskMainPidLoopCheck(void);
void taskMainPidLoop(void);
void taskUpdateAccelerometer(void); void taskUpdateAccelerometer(void);
void taskHandleSerial(void); void taskHandleSerial(void);
void taskUpdateBeeper(void); void taskUpdateBeeper(void);
@ -91,8 +90,7 @@ static cfTask_t cfTasks[TASK_COUNT] = {
[TASK_GYROPID] = { [TASK_GYROPID] = {
.taskName = "GYRO/PID", .taskName = "GYRO/PID",
.checkFunc = taskMainPidLoopCheck, .taskFunc = taskMainPidLoopCheck,
.taskFunc = taskMainPidLoop,
.desiredPeriod = 1000, .desiredPeriod = 1000,
.staticPriority = TASK_PRIORITY_REALTIME, .staticPriority = TASK_PRIORITY_REALTIME,
}, },