c++实现串口通讯踩坑(argument of type “char *“ is incompatible with parameter of type “LPCWSTR“)
在C下,可以使用outportb和inportb进行串口通讯,C++没有这两个函数,那就使用createfile吧通过网上搜到读取打开串口的例子,如下:#includeintmain(){HANDLEhCom=CreateFile("COM1",GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,0,NULL);}发现报错:argumentoftype“