Hello!
I have connected a n6310 to the COM2 through the phone's serial cable and write this code in C++:
-----
...
void* hPort;
hPort=CreateFile("COM2:",GENERIC_READ|GENERIC_WRITE,0, NULL,OPEN_EXISTING,0,NULL);
AnsiString Message;
DWORD dwNumBytesWritten...