Skip to content

Commit

Permalink
added heading and magnetometer
Browse files Browse the repository at this point in the history
  • Loading branch information
aokholm committed Nov 24, 2024
1 parent b4fff7c commit 70b9941
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions schema.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ message Wrapper {
DEVICEINFO = 36;
TURBINESTATS = 37;
IMU6 = 38;
HEADING = 39;
MAGNETOMETER = 40;
}

DataType type = 1;
Expand Down Expand Up @@ -467,4 +469,14 @@ message Imu6 {
int64 time = 1;
Vector3 acc = 2; // m/ss
Vector3 gyro = 3; // rad/s
}

message Heading {
uint64 time = 1;
float heading = 2;
}

message Magnetometer {
uint64 time = 1;
Vector3 mag = 2;
}

0 comments on commit 70b9941

Please sign in to comment.