You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
221 B
18 lines
221 B
|
3 weeks ago
|
syntax = "proto3";
|
||
|
|
|
||
|
|
|
||
|
|
message SP_BSP_MPU6050{
|
||
|
|
|
||
|
|
int32 MPU_Pitch=1;//10
|
||
|
|
int32 MPU_Roll=2;
|
||
|
|
|
||
|
|
int32 MPU_Gro_X=3;
|
||
|
|
int32 MPU_Gro_Y=4;
|
||
|
|
int32 MPU_Gro_Z=5;
|
||
|
|
|
||
|
|
int32 MPU_Acc_X=6;
|
||
|
|
int32 MPU_Acc_Y=7;
|
||
|
|
int32 MPU_Acc_Z=8;
|
||
|
|
};
|
||
|
|
|