Ian Hua / Quadcopter-mbedRTOS
Committer:
pHysiX
Date:
Sat May 03 00:57:48 2014 +0000
Revision:
15:10edc6b12122
Parent:
12:953d25061417
Child:
16:9072cd6fa8d1
Next major change: Handling FIFO overflow

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pHysiX 12:953d25061417 1 /* YPR (100Hz) */
pHysiX 2:ab967d7b4346 2
pHysiX 1:43f8ac7ca6d7 3 #include "Task1.h"
pHysiX 1:43f8ac7ca6d7 4 #include "setup.h"
pHysiX 1:43f8ac7ca6d7 5
pHysiX 2:ab967d7b4346 6 /* MPU6050 control/status variables: */
pHysiX 2:ab967d7b4346 7 uint8_t mpuIntStatus; // holds actual interrupt status byte from MPU
pHysiX 2:ab967d7b4346 8 uint16_t fifoCount; // count of all bytes currently in FIFO
pHysiX 2:ab967d7b4346 9 uint8_t fifoBuffer[64]; // FIFO storage buffer
pHysiX 1:43f8ac7ca6d7 10
pHysiX 2:ab967d7b4346 11 /* Orientation/motion variables: */
pHysiX 2:ab967d7b4346 12 Quaternion q; // [w, x, y, z] quaternion container
pHysiX 2:ab967d7b4346 13 VectorFloat gravity; // [x, y, z] gravity vector
pHysiX 2:ab967d7b4346 14 float ypr[3]; // [yaw, pitch, roll] yaw/pitch/roll container and gravity vector
pHysiX 15:10edc6b12122 15 volatile float ypr_use[3];
pHysiX 12:953d25061417 16
pHysiX 12:953d25061417 17 #ifdef ENABLE_COMPASS
pHysiX 12:953d25061417 18 //int compassX, compassY, compassZ;
pHysiX 12:953d25061417 19 double heading = 0;
pHysiX 12:953d25061417 20 #endif
pHysiX 12:953d25061417 21
pHysiX 12:953d25061417 22 float altitude, temperature;
pHysiX 10:ef5fe86f67fe 23
pHysiX 10:ef5fe86f67fe 24 int counterTask1 = 0;
pHysiX 1:43f8ac7ca6d7 25
pHysiX 1:43f8ac7ca6d7 26 #ifndef M_PI
pHysiX 1:43f8ac7ca6d7 27 #define M_PI 3.1415
pHysiX 1:43f8ac7ca6d7 28 #endif
pHysiX 1:43f8ac7ca6d7 29
pHysiX 1:43f8ac7ca6d7 30 // ================================================================
pHysiX 12:953d25061417 31 // === YPR ROUTINE ===
pHysiX 2:ab967d7b4346 32 // ================================================================
pHysiX 1:43f8ac7ca6d7 33 void Task1(void const *argument)
pHysiX 1:43f8ac7ca6d7 34 {
pHysiX 1:43f8ac7ca6d7 35 // reset interrupt flag and get INT_STATUS byte
pHysiX 1:43f8ac7ca6d7 36 mpuIntStatus = imu.getIntStatus();
pHysiX 1:43f8ac7ca6d7 37
pHysiX 1:43f8ac7ca6d7 38 // get current FIFO count
pHysiX 1:43f8ac7ca6d7 39 fifoCount = imu.getFIFOCount();
pHysiX 1:43f8ac7ca6d7 40
pHysiX 1:43f8ac7ca6d7 41 // check for overflow (this should never happen unless our code is too inefficient)
pHysiX 10:ef5fe86f67fe 42 if ((mpuIntStatus & 0x10) || fifoCount > 1023) {
pHysiX 1:43f8ac7ca6d7 43 // reset so we can continue cleanly
pHysiX 1:43f8ac7ca6d7 44 imu.resetFIFO();
pHysiX 1:43f8ac7ca6d7 45 imu.debugSerial.printf("FIFO overflow!");
pHysiX 1:43f8ac7ca6d7 46
pHysiX 1:43f8ac7ca6d7 47 // otherwise, check for DMP data ready interrupt (this should happen frequently)
pHysiX 1:43f8ac7ca6d7 48 } else if (mpuIntStatus & 0x02) {
pHysiX 1:43f8ac7ca6d7 49 // wait for correct available data length, should be a VERY short wait
pHysiX 1:43f8ac7ca6d7 50 while (fifoCount < packetSize) fifoCount = imu.getFIFOCount();
pHysiX 1:43f8ac7ca6d7 51
pHysiX 1:43f8ac7ca6d7 52 // read a packet from FIFO
pHysiX 1:43f8ac7ca6d7 53 imu.getFIFOBytes(fifoBuffer, packetSize);
pHysiX 1:43f8ac7ca6d7 54
pHysiX 1:43f8ac7ca6d7 55 // track FIFO count here in case there is > 1 packet available
pHysiX 1:43f8ac7ca6d7 56 // (this lets us immediately read more without waiting for an interrupt)
pHysiX 15:10edc6b12122 57 //fifoCount -= packetSize;
pHysiX 1:43f8ac7ca6d7 58
pHysiX 1:43f8ac7ca6d7 59 // display YPR angles in degrees
pHysiX 1:43f8ac7ca6d7 60 imu.dmpGetQuaternion(&q, fifoBuffer);
pHysiX 1:43f8ac7ca6d7 61 imu.dmpGetGravity(&gravity, &q);
pHysiX 1:43f8ac7ca6d7 62 imu.dmpGetYawPitchRoll(ypr, &q, &gravity);
pHysiX 15:10edc6b12122 63 ypr_use[0] = ypr[0] * 180/M_PI;
pHysiX 15:10edc6b12122 64 ypr_use[1] = ypr[1] * 180/M_PI;
pHysiX 15:10edc6b12122 65 ypr_use[2] = ypr[2] * 180/M_PI;
pHysiX 12:953d25061417 66
pHysiX 12:953d25061417 67 /*
pHysiX 12:953d25061417 68 if (compass.getDataReady()) {
pHysiX 12:953d25061417 69 // compass.getValues(&compass_x, &compass_y, &compass_z);
pHysiX 12:953d25061417 70 heading = compass.getHeadingXY() * 180/M_PI;
pHysiX 12:953d25061417 71 }
pHysiX 12:953d25061417 72
pHysiX 12:953d25061417 73 ypr[0] *= 0.98;
pHysiX 12:953d25061417 74 ypr[0] += 0.02*heading;
pHysiX 12:953d25061417 75 */
pHysiX 10:ef5fe86f67fe 76
pHysiX 3:605fbcb54e75 77 if (box_demo)
pHysiX 15:10edc6b12122 78 BT.printf("\nY%3.2f\nP%3.2f\nR%3.2f\n", ypr_use[0] - ypr_offset[0],
pHysiX 15:10edc6b12122 79 ypr_use[1] - ypr_offset[1], ypr_use[2] - ypr_offset[2]);
pHysiX 1:43f8ac7ca6d7 80 }
pHysiX 1:43f8ac7ca6d7 81
pHysiX 2:ab967d7b4346 82 //LED[1] = !LED[1];
pHysiX 2:ab967d7b4346 83 }