Skip to content

Commit

Permalink
Remove unused rotateDate function (for Use FLU as the main coordinate…
Browse files Browse the repository at this point in the history
… system commit)
  • Loading branch information
okalachev committed Oct 23, 2024
1 parent 12327c8 commit 7ed1cf3
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions flix/imu.ino
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,3 @@ void printIMUCal() {
Serial.printf("accel bias: %f %f %f\n", accBias.x, accBias.y, accBias.z);
Serial.printf("accel scale: %f %f %f\n", accScale.x, accScale.y, accScale.z);
}

void rotateData(Vector& data) {
// FLU to FRD
data = Vector(data.x, -data.y, -data.z);
}

0 comments on commit 7ed1cf3

Please sign in to comment.