我在Raspberry Pi 3上运行了Windows IoT核心版1017744。
我尝试使用以下代码从UWP应用程序初始化COM端口:
string aqs = SerialDevice.GetDeviceSelector();
DeviceInformationCollection devices = await DeviceInformation.FindAllAsync(aqs);
List<DeviceInformation> list = devices.ToList();
DeviceInformation di = list.First();
_serial_port = await SerialDevice.FromIdAsync(di.Id);
我有di.Id
-> \\?\ACPI#BCM2836#0#{86e0d1e0-8089-11d0-9ce4-08003e301f73}
di
变量的完整表示,如下所示:
- di {Windows.Devices.Enumeration.DeviceInformation} Windows.Devices.Enumeration.DeviceInformation
EnclosureLocation null Windows.Devices.Enumeration.EnclosureLocation
Id "\\\\?\\ACPI#BCM2836#0#{86e0d1e0-8089-11d0-9ce4-08003e301f73}" string
IsDefault false bool
IsEnabled true bool
Kind DeviceInterface Windows.Devices.Enumeration.DeviceInformationKind
Name "MINWINPC" string
- Pairing {Windows.Devices.Enumeration.DeviceInformationPairing} Windows.Devices.Enumeration.DeviceInformationPairing
CanPair false bool
+ Custom {Windows.Devices.Enumeration.DeviceInformationCustomPairing} Windows.Devices.Enumeration.DeviceInformationCustomPairing
IsPaired false bool
ProtectionLevel None Windows.Devices.Enumeration.DevicePairingProtectionLevel
Native View To inspect the native object, enable native code debugging.
+ Properties {System.__ComObject} System.Collections.Generic.IReadOnlyDictionary<string, object> {System.__ComObject}
Native View To inspect the native object, enable native code debugging.
但是在await
操作之后,我在_serial_port
中没有null。
更新
即使我将Raspberry UART接口连接到工作节点,它也是null
:
第8针作为TX到成对的RX线。
第10针作为RX到成对的TX线。
更新
清单中有DeviceCapability
:
<DeviceCapability Name="serialcommunication">
<Device Id="any">
<Function Type="name:serialPort" />
</Device>
</DeviceCapability>
答案 0 :(得分:0)
您需要在Package.appxmanifest中添加串行设备功能:
<DeviceCapability Name="serialcommunication">
<Device Id="any">
<Function Type="name:serialPort" />
</Device>
</DeviceCapability>
即使我将Raspberry UART接口连接到工作节点,它也为null: 第8引脚作为TX到成对的RX线。第10针作为RX到成对的TX线。
这对于SerialDevice.FromIdAsync()成功不是必需的。即使您没有连接这些引脚,如果代码和设置正确,SerialDevice.FromIdAsync()也可以获得有效的设备。您可以参考Serial UART Sample。