Hi
Has anyone else found that they cant access the serial port on the raspberry Pi3 using the IOT core version 10.0.17134.1.
I have used a previous version (didn't keep a record!) and all worked ok.
Now , although I can obtain a list of serial ports using :-
string aqs = SerialDevice.GetDeviceSelector();
var dis = await DeviceInformation.FindAllAsync(aqs);
// status.Text = "Select a device and connect";
for (int i = 0; i < dis.Count; i++)
{
listOfDevices.Add(dis);
} :
Trying to create an instance of a serial port using this:-
SerialDevice serialPort = null;
serialPort = await SerialDevice.FromIdAsync(listOfDevices[0].Id );
returns a null serial port.
Unfortunately I do not have the previous version and I cant find the previous versions on the web site either!
I have contacted Microsoft and am awaiting a call with them soon.
So two questions if I may:-
1 Has anyone else experienced the same problem.
2. Does anyone else know where I can get previous versions from.
I will keep you up to date with the progress from Microsoft.
Thanks for your help
Regards
Mark