Hi,
I want to read MPU9250 Accelerometer data and I am initializing it as following but I am program hangs in Mpu9250_init().
Board_initGeneral();
retParams = SensorI2C_open();
retParams = SensorMpu9250_init();
SensorMpu9250_enable(0x0F); //Acc+Gyro+Mag+WoM+-2g
retParams = SensorMpu9250_accRead((uint16_t *)sensorData);
Can someone tell me what am I doing wrong here?