使用SerialDevice时冻结UWP的Unity3d应用

时间:2018-11-01 16:48:06

标签: unity3d uwp serial-port il2cpp

我有一段要与Unity 2018.2.14.f1一起使用的代码。

#if UNITY_WSA && !UNITY_EDITOR

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.Devices.Enumeration;
using Windows.Devices.SerialCommunication;

namespace SerialForUWP
{
    public class SerialComHelper
    {
        public async static Task<string[]> GetPorts()
        {
            var serials = SerialDevice.GetDeviceSelector();
            var coms = await DeviceInformation.FindAllAsync(serials);

            List<string> results = new List<string>();
            foreach (var device in coms)
            {
                using (var serialDevice = await SerialDevice.FromIdAsync(device.Id))
                {


                    if (serialDevice != null)
                    {
                        var port = serialDevice.PortName;
                        results.Add(port.ToString());
                    }
                }
            }

            return results.ToArray();
        }
    }
}

#endif

我使用IL2CPP为UWP进行编译:

enter image description here

我还已经更新了cpp projet的清单:

<DeviceCapability Name="serialcommunication">
  <Device Id="any">
    <Function Type="name:serialPort" />
  </Device>
</DeviceCapability>

一旦我尝试使用GetPorts()函数,我的应用程序就会冻结。

    void Update()
    {
        text.text = Time.time.ToString();
        if (Input.GetKeyUp(KeyCode.Space))
        {
            try
            {
#if UNITY_WSA && !UNITY_EDITOR
                foreach (var com in SerialForUWP.SerialComHelper.GetPorts().Result)
                {
                    text.text = com;
                }
#endif
            }
            catch (Exception ex)
            {
                text.text = ex.ToString();
            }

        }
    }

我没有错误,也没有例外。

任何人都可以帮忙吗?

2 个答案:

答案 0 :(得分:0)

要获取例外,请使用:

Debug.Log(ex.ToString())而不是Text.text = ex.ToString()

答案 1 :(得分:0)

根据this answer,我不能使用.Result