I used to be able to open a serial port using
com = CreateFile (
"COM1", GENERIC_WRITE|GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL);Now "COM1" is not accepted. How do I obtain a handle to COM1 using Visual Studio 2005
I used to be able to open a serial port using
com = CreateFile (
"COM1", GENERIC_WRITE|GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL);Now "COM1" is not accepted. How do I obtain a handle to COM1 using Visual Studio 2005
serial port
ICIPeep