stm32F103通过IIC读取MPU9250用DMP融合得到欧拉角
//显示Pitch
printf("Pitch:");
temp = (Pitch);
printf("%f",temp);
printf("度 ");
//显示Roll
printf("Roll:");
temp = (Roll);
printf("%f",temp);
printf("度 ");
//显示Yaw
printf("Yaw:");
temp = (Yaw);
printf("%f",temp);
printf("度 ");
printf("\r\n");
1