admin管理员组文章数量:1345139
Alright so I'm trying to make the MPU 6500 work with interrupt on motion. My issue is that it worked yesterday and today it stopped working. And I'm proper lost as to why. Currently it constantly triggers my interrupt, even if I set the threshold to the highest value (0xFF).
I've setup motion control according to the register map / product specification as supplied by the company that build the sensor.
My relevant code:
#define MPU6500_ADDR 0x68
void MPU6500_Init() {
// Make Sure Accel is running:
I2C1_WriteByte(MPU6500_ADDR, 0x6B, 0x20);
I2C1_WriteByte(MPU6500_ADDR, 0x6C, 0x07);
I2C1_WriteByte(MPU6500_ADDR, 0x1D, 0x01);
I2C1_WriteByte(MPU6500_ADDR, 0x38, 0x40); // Enable Motion Interrupt:
I2C1_WriteByte(MPU6500_ADDR, 0x69, 0xC0); // Enable Accel Hardware Intelligence:
// Set Motion Threshold: 0-255 mg(0 1020)
I2C1_WriteByte(MPU6500_ADDR, 0x1F, 0x20);
// Set wake-up frequency = 0.24Hz ~ 500Hz first 4 bits
I2C1_WriteByte(MPU6500_ADDR, 0x1E, 0x03);
// Enable Cycle Mode (Accel Low Power Mode):
I2C1_WriteByte(MPU6500_ADDR, 0x6B, 0x20);
}
Does anyone have experience with this specific sensor and or can point me into the right direction, becasue I'm lost?
本文标签: stm32MPU 6500 WAKEONMOTION INTERRUPT not workingStack Overflow
版权声明:本文标题:stm32 - MPU 6500 WAKE-ON-MOTION INTERRUPT not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743785235a2538566.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论