MPU6050 driver?

I can see mpu9x50driver: https://github.com/RIOT-OS/RIOT/blob/master/drivers/mpu9x50/mpu9x50.c Does this include support for the popular MPU6050 accelerometer module? Thanks.

Judging from the Register Maps, see MPU-9250 Register Map and MPU-6000 Register Map, the answer is no.

You may be able to reuse a lot of code though and maybe even create a common code-base both drivers can use. (A lot seems to be quite similar)

So, this may be a good opportunity to learn a little more about driver development for RIOT. :wink:

haha, okay thanks for the prompt response.