kriswiner/MPU9250

FIFO_R_W

Beldian opened this issue · 4 comments

Hey!

When you read from the FIFO_R_W register 12 bites, you actually read EXT_SENS registers? If I understand correcty, there is a connection between them.

So in MPU9250.h headerfile at line 498 there is this:

"readBytes(MPU9250_ADDRESS, FIFO_R_W, 12, &data[0]);"

What is this? It says you read 12 bites from FIFO_R_W register. I would like to ask, what that makes sense.
I know that, for example when you read 6 bites from ACCEL_XOUT_H, this is auto increment and you'll get all the ACCEL data.
But FIFO_R_W is not auto increment. So I am in doubt, why did you do that. Could you answer?

I think I understood that. Thank you so much!