Hi everyone,
I got a problem when I collect accelerometer and gyroscope data in real-time. I found that the totoal number of accelerometer data and gyroscope data are not the same.
For example,
"let acc = new Accelerometer({ frequency: 6, batch: 6});"
"let gyro = new Gyroscope({ frequency: 6, batch: 6 });"
I set the frequency is 6, but the accelerometer data will be more than gyroscope data. I dont know why.
Could you help me?
Answered! Go to the Best Answer.
Sometimes, "msg queue full" error occurs and some data would be lost. Why is this happening?
Best Answer"msg queue full" probably means that your app is too CPU-intensive and isn't returning control to the operating system as much as it should.
Best Answer