资源说明: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");
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。