本帖最后由 鱿鱼丝 于 2022-11-22 22:06 编辑
STM32 MPU6050 使用DMP遇到的问题-提示Product ID read as 0 indicates device is either incomp
STM32 MPU6050 使用DMP遇到的问题
如题,在移植了原子的DMP库后,遇到了死在"Product ID read as 0 indicates device is either incompatible or an MPU3050."的问题,但是却可以读出6050的地址0x68(AD0接地
出问题的地方在:
if (i2c_read(st.hw->addr, st.reg->prod_id, 1, data))
return -1;
rev = data[0] & 0x0F;
if (!rev) {
log_e("Product ID read as 0 indicates device is either "
"incompatible or an MPU3050.\n");
return -1;
|