Ian Hua / Quadcopter-mbedRTOS

RTOS-Threads/src/Task4.cpp

Committer:
pHysiX
Date:
2014-05-08
Revision:
24:54a8cdf17378
Parent:
22:ef8aa9728013
Child:
25:a7cfe421cb4a

File content as of revision 24:54a8cdf17378:

/* File:        Task4.h
 * Author:      Trung Tin Ian HUA
 * Date:        May 2014
 * Purpose:     Thread4: ESC pulsewidth update. Note this is INDEPENDENT of the pulse frequency.
 * Settings:    200Hz
 * 200Hz <= PWM frequency <= 400Hz
 * Refer to setup.h to change PWM frequency 
 */ 

#include "tasks.h"
#include "setup.h"

int ESCpower[4] = {0, 0, 0, 0};
int stallESC = 0;

bool armed = false;
bool ESC_check = false;
bool calibration_mode = false;

void Task4(void const *argurment)
{
    if (armed) {
        if (calibration_mode) {
            for (int i = 0; i < 4; i++)
                ESC[i].pulsewidth_us(RCCommand[3]);
        } else if (RCCommand[3] > 1150) {
            if (counterESC) {             
                for (int i = 0; i < 3; i++)
                    adjust[i] /= 2.0;
                
                ESCpower[0] = constrainESC((RCCommand[3]*9/10) + (adjust[1]) + (adjust[2]) - adjust[0]);
                ESCpower[1] = constrainESC((RCCommand[3]*9/10) + (adjust[1]) - (adjust[2]) + adjust[0]);
                ESCpower[2] = constrainESC((RCCommand[3]*9/10) - (adjust[1]) - (adjust[2]) - adjust[0]);
                ESCpower[3] = constrainESC((RCCommand[3]*9/10) - (adjust[1]) + (adjust[2]) + adjust[0]);

                for (int i = 0; i < 4; i++)
                    ESC[i].pulsewidth_us(ESCpower[i]);

                counterESC = false;
            } else {
                stallESC++;

                if (stallESC > 1) {
                    imu.debugSerial.printf("ESC NOT UPDATED FAST ENOUGH!\n");
                    stallESC = 0;
                }
            }
        } else {
            for (int i = 0; i < 4; i++) {
                ESCpower[i] = 980;
                ESC[i].pulsewidth_us(ESCpower[i]);
                //pitchPIDstable.reset();
                //rollPIDstable.reset();
                //yawPIDrate.reset();
                //pitchPIDrate.reset();
                //rollPIDrate.reset();
            }
        }
    } else {
        if (ESC_check) {
            BT.printf("Need to ARM to check ESC output!\n");
            ESC_check = false;
        }

        for (int i = 0; i < 4; i++) {
            ESCpower[i] = 980;
            ESC[i].pulsewidth_us(ESCpower[i]);
        }
    }

    if (ESC_check)
        BT.printf("%4d %4d %4d %4d\n", ESCpower[0], ESCpower[1], ESCpower[2], ESCpower[3]);
}

int constrainESC(float input)
{
    if (input < 1150.0)
        return 1150;
    else if (input > 2000.0)
        return 2000;
    else
        return (int) input;
}