我正在开发可与HID设备一起使用的UWP应用程序。该应用程序几乎一直都能正常工作。但是当我关闭或折叠/恢复时,它经常崩溃。我遇到异常访问冲突读取位置:
Exception thrown at 0x5FC8A31C (Windows.Devices.HumanInterfaceDevice.dll) in MyApp.exe: 0xC0000005: Access violation reading location 0x0000001E.
并且此异常始终出现在CreateOutputReport方法上。
我如何检查创建输出报告的可能性? 或者如何在UWP中处理此异常?
感谢您提前提出建议。
UPD:这是一个代码示例
HidDevice device = await HidDevice.FromIdAsync(id, FileAccessMode.ReadWrite);
if(device != null)
{
var outReport = device.CreateOutputReport(); // Crashes here only on collapsing/closing
byte[] buffer = new byte[(int)outReport.Data.Capacity];
outReport.Data = buffer.AsBuffer();
await device.SendOutputReportAsync(outReport);
}
UPD 2:从头开始测试。使用以下代码创建了UWP应用:
public async void StartSending()
{
var devices = await DeviceInformation.FindAllAsync(HidDevice.GetDeviceSelector(usagePage, usageId, vid, pid));
if (devices.Any())
{
var device = devices.FirstOrDefault();
HidDevice hidDevice = await HidDevice.FromIdAsync(device.Id, FileAccessMode.ReadWrite);
if (hidDevice != null)
{
while(true)
{
var outReport = hidDevice.CreateOutputReport();
byte[] buffer = new byte[(int)outReport.Data.Capacity];
// fill data
outReport.Data = buffer.AsBuffer();
await hidDevice.SendOutputReportAsync(outReport);
await Task.Delay(500);
}
}
}
}
一切正常,直到我关闭应用程序。还原后应用程序失败。但这仅显示在已安装的应用程序上。从VS可以正常工作。
答案 0 :(得分:0)
感谢所有回复。 @ XavierXie-MSFT是正确的,我没有任何暂停/继续的逻辑。现在可以使用了。
这是代码:
Application.Current.Suspending += OnSuspending;
Application.Current.Resuming += OnResuming;
private void OnResuming(object sender, object e)
{
// Reinitialize all watchers for HID
// Subscribe to all necessary events
}
private void OnSuspending(object sender, SuspendingEventArgs e)
{
// Remove all watchers for HID
// Unsubscribe from all events
// Dispose all active HID devices
}