05-18-2020 07:09 AM
I use BMI270 to connect(SPI) NRF52
this is my code to read out gyro_x axis.
bmi2_get_sensor_data(&BMI270_sensor_gyro_data, 1, &BMI270_sensor);
int16_t BMI270_gyro_x = 0;
BMI270_gyro_x = BMI270_sensor_gyro_data.sens_data.gyr.x;
//clear
and then result.
Do I have to Data post-processing for extract real value??
or
Above(in graph) value is real value??
thank you
-yonghun
Solved! Go to Solution.
05-18-2020 11:02 PM
I can see clearly of the unit in the plotter, is it about 400 dps when sensor is not moving? if it is the case, the output is wrong.
You are using all our API of BMI270 on the NRF platform, right?
did you call bmi270_init in the beginning of your code?
10-24-2023 10:31 AM