What does Core Motion error 102 mean?

感情迁移 提交于 2019-12-30 20:31:48

问题


I use Core Motion's sensor fusing to get north oriented motion updates:

[motionManager startDeviceMotionUpdatesUsingReferenceFrame:CMAttitudeReferenceFrameXTrueNorthZVertical toQueue:motionQueue withHandler:motionHandler]

In a very rare case that can be reproduced only on selected customer devices (iPhone 4S running iOS 6.0.2) I receive this error in the motionHandler:

Error Domain=CMErrorDomain Code=102 "The operation couldn’t be completed. (CMErrorDomain error 102.)

Also, it seems I don't get any valid deviceMotion updates after that. Does anybody know what this error 102 means? I can't find anything in the documentation.


回答1:


As Krishnabhadra correctly pointed out, this error code means CMErrorTrueNorthNotAvailable. The description ("True north is not available on this device. This usually indicates that the device’s location is not yet available.") unfortunately doesn't give any hint how to solve the issue so I'd like to describe my findings when this error occurs.

It occurs on a tiny (a handful out of many thousands) fraction of iOS 6.0+ devices when using CMAttitudeReferenceFrameXTrueNorthZVertical (CMAttitudeReferenceFrameXMagneticNorthZVertical is OK). Despite the error description, Core Location works correctly. On affected devices the bug is triggered in 100% of the cases and blocks Core Motion updates completely. -[CMMotionManager deviceMotion] always returns nil.

Resetting the iOS system settings fixes the problem.

I’ve logged rdar://12952327 with some more details.

Update: This error occurs if compass calibration is disabled in the privacy / location services / system services section.




回答2:


From documentation

typedef enum {
   CMErrorNULL = 100,
   CMErrorDeviceRequiresMovement,
   CMErrorTrueNorthNotAvailable
} CMError;

It seems error 102 is CMErrorTrueNorthNotAvailable, and its description is

CMErrorTrueNorthNotAvailable

It seems not much information is available regarding what causes this error. It can be any hardware issue with the device.




回答3:


Also, make sure this is enabled. After I enabled this option, I did not encounter the 102 issue anymore while using xTrueNorthZVertical.

Settings > Privacy > Location Services > System Services > Compass Calibration




回答4:


102 is CMErrorTrueNorthNotAvailable. I guess that your device has problems with determining north direction or something.




回答5:


I got this error and when i tried to find solution, apparently my location services in my device are switched off, once i switched on, it worked.



来源:https://stackoverflow.com/questions/14121145/what-does-core-motion-error-102-mean

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!