Hi,

is there a way to send an integer array with WriteFile to RS232? Seems like I have a data type conversion problem.

I would like to do something like this:

unsigned int buf[3]={1,16,3};
DWORD written= 0;
  if(isOpen())
  {
    WriteFile(m_hPort, buf, sizeof(buf), &written, NULL);
  }

Thanks in advance!

Post the error message the compiler gives you.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.