You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In windows, open serial device fail. The function CreateFile accept LPCWSTR type, in code pass device name (self->interfaceName) is a char* data type. serial_port_win32.c
In windows, open serial device fail. The function CreateFile accept LPCWSTR type, in code pass device name (self->interfaceName) is a char* data type. serial_port_win32.c
self->comPort = CreateFile(self->interfaceName, GENERIC_READ | GENERIC_WRITE,
0, NULL, OPEN_EXISTING, 0, NULL);
The text was updated successfully, but these errors were encountered: