gpt4 book ai didi

c# - Windows 手机崩溃 device.Sensors.ni.dll

转载 作者:行者123 更新时间:2023-12-02 17:47:20 29 4
gpt4 key购买 nike

我的应用程序遇到了一些崩溃(有点类似于指南针应用程序)。 Windows 崩溃报告告诉我这一点:

frame 0: 
Microsoft.Devices.Sensors.ni.dll; Microsoft.Devices.Sensors.Accelerometer.Start; 0x0000006c
frame 1:
PivotApp1.ni.DLL; PivotApp1.MainPage+_start_d__0.MoveNext; 0x000001d4
frame 2:
mscorlib.ni.dll; System.Runtime.CompilerServices.AsyncMethodBuilderCore._ThrowAsync_b__3; 0x00000036

我无法理解这到底意味着什么。根据我从中得到的信息,这可能是由于加速度计的原因。

这是我当前的代码,似乎错误是从这里的某个地方生成的:

private async void start()
{
//Check for the user agreement in use his position. If not, method returns.
if ((bool)IsolatedStorageSettings.ApplicationSettings["LocationConsent"] != true)
{
// The user has opted out of Location.

MessageBox.Show(AppResources.main_cantuse);

Application.Current.Terminate();
}

else
{
//KOMPASS
if (compass == null)
{
// Instantiate the compass.
compass = new Compass();

// Specify the desired time between updates. The sensor accepts
// intervals in multiples of 20 ms.
compass.TimeBetweenUpdates = TimeSpan.FromMilliseconds(20);

compass.CurrentValueChanged +=
new EventHandler<SensorReadingEventArgs<CompassReading>>(compass_CurrentValueChanged);
compass.Calibrate +=
new EventHandler<CalibrationEventArgs>(compass_Calibrate);
}

try
{
compass.Start();
timer.Start();

accelerometer = new Accelerometer();
accelerometer.CurrentValueChanged +=
new EventHandler<SensorReadingEventArgs<AccelerometerReading>>(accelerometer_CurrentValueChanged);
accelerometer.Start();
}
catch (InvalidOperationException)
{
MessageBox.Show(AppResources.main_unabletostart);
}

我想问,我是否必须检查加速度计是否准备好(或空检查或其他)?

感谢您的帮助或指导。

最佳答案

这些崩溃可能是由于没有指南针的设备造成的(是的,有这样的设备)。

您应该使用 Compass.IsSupported 检查指南针,并且仅在返回 true 时使用它。

关于c# - Windows 手机崩溃 device.Sensors.ni.dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29697142/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com