Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am reading binary data from a serial port on Phidget sbc using Linux to get a command from an application running on a PC. I wrote a test program in VB to read the data into a byte array and convert it to decimal to use it but can’t figure out how to do it in c. I am unable to come up with anything with the research I have done on the internet.

Command sent from PC is 0x0F.

To check if I am getting correct data I read the data and send it back. Here is what I get back. Returned data has a carriage return added to it.

Hex Display 0F00 0000 0D

‘\’ Display \0F\00\00\00\r

Normal display just display a strange character.

This tells me that the data is there that I can use, but can’t figure out to extract the value 0F or 15.

How can I convert the incoming data to use it?

I tried converting the received data using strtol, but it returns 0. I also tried setting the port to raw but it did not make any difference.

unsigned char buffer1[1];
int ReadPort1()
{
int result;

result = read(file1, &buffer1,1);

if(result > 0)
{
    WritePort1(buffer1);
    sprintf(tempstr, "Port1 data %s %d", buffer1, result);
    DisplayText(2,tempstr);
}
return result;
}

Port Open/Setup

void OpenPort1()
{
//file1 = open("/dev/ttyUSB1", O_RDWR | O_NOCTTY | O_NONBLOCK);
     file1 = open("/dev/ttyUSB1", O_RDWR | O_NOCTTY | O_NODELAY);

if(file1 < 0)
    printf("Error opening serial port1.\n");
else
{
    SetPort(file1, 115200, 8, 1, 0, 1);
    port1open = 1;
}
}


void SetPort(int fd, int Baud_Rate, int Data_Bits, int Stop_Bits, int Parity, int raw)
{
    long BAUD;                      // derived baud rate from command line
    long DATABITS;
    long STOPBITS;
    long PARITYON;
    long PARITY;

struct termios newtio;

  switch (Baud_Rate)
  {
    case 115200:
        BAUD = B115200;
        break;
     case 38400:
        BAUD = B38400;
        break;
     case 19200:
        BAUD  = B19200;
        break;
     case 9600:
        BAUD  = B9600;
        break;
  }  //end of switch baud_rate
  switch (Data_Bits)
  {
     case 8:
     default:
        DATABITS = CS8;
        break;
     case 7:
        DATABITS = CS7;
        break;
     case 6:
        DATABITS = CS6;
        break;
     case 5:
        DATABITS = CS5;
        break;
  }  //end of switch data_bits
  switch (Stop_Bits)
  {
     case 1:
     default:
        STOPBITS = 0;
        break;
     case 2:
        STOPBITS = CSTOPB;
        break;
  }  //end of switch stop bits
  switch (Parity)
  {
     case 0:
     default:                       //none
        PARITYON = 0;
        PARITY = 0;
        break;
     case 1:                        //odd
        PARITYON = PARENB;
        PARITY = PARODD;
        break;
     case 2:                        //even
        PARITYON = PARENB;
        PARITY = 0;
        break;
  }  //end of switch parity

  newtio.c_cflag = BAUD | DATABITS | STOPBITS | PARITYON | PARITY | CLOCAL | CREAD;   
  newtio.c_iflag = IGNPAR;

  if(raw == 1)
  {
        newtio.c_oflag &= ~OPOST;
        newtio.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); 
  }
  else
  {
        newtio.c_lflag = 0;       //ICANON;
        newtio.c_oflag = 0;
  }

  newtio.c_cc[VMIN]=1;
  newtio.c_cc[VTIME]=0;
  tcflush(fd, TCIFLUSH);
  tcsetattr(fd,TCSANOW,&newtio);
}
share|improve this question
2  
Isn't it read(file1, buffer1, sizeof(buffer1))? – Flávio Toribio Sep 18 '12 at 15:06
@FlávioToribio yes, it is. – Alnitak Sep 18 '12 at 15:09
I get same result with read(file1, buffer1, sizeof(buffer1)) – user1680393 Sep 18 '12 at 15:59
Do not use %sto display a character. %sis made to display a zero-terminated character array (string). To display the one character you read() into buffer1[0] use %x as proposed by count0. – alk Sep 18 '12 at 16:05

1 Answer

Are you looking for a hex representation of your data ?

  sprintf(tempstr, "Port1 data %s %x", buffer1, buffer1[0]);
share|improve this answer
That prints the address of the buffer in hex, not the content. – Ben Voigt Sep 18 '12 at 15:28
Interpreting the content of buffer1 as a zero-terminated string (by using %s) is still dangerous, as it is not guaranteed it is such a string. So if sprintf() does not find a 0 it might go and read memory addresses it's not allowed to and finally lead to a segmentation violation (to not say crash). – alk Sep 18 '12 at 15:57
The whole point of this answer is hex representation, no need to clinically dissect every little mistake. – count0 Sep 18 '12 at 15:59
Your right, absolutely. That's why it's even more difficult to understand why you propose to use %s (which is explicitly designed to be used with zero-terminated strings) to display the data. – alk Sep 18 '12 at 16:03
sprintf(tempstr, "Port1 data %x", buffer1[0]); worked. thank you – user1680393 Sep 18 '12 at 16:23
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.