FTDI USB Devices

Finding Connected FTDI Devices


int Count;
int CharPosn;
int CheckEachPortCount;
String ^RegistryMainFolder;
String ^SerialNumber;
String ^Port;
array<String^> ^FoundCommPorts = gcnew array<String^>(0);
array<String^> ^FoundSerialNumbers = gcnew array<String^>(0);

 (more...)

Serial Port


using namespace System::IO::Ports;

To Discover Available Comm Ports On The PC

(more…)