Re: 8ms Timer for serial port access

From: Jens Schumacher (jens.schumache_at_gmx.net)
Date: 10/31/03


Date: Thu, 30 Oct 2003 22:38:38 -0500

Am 30/10/03 19:38 Uhr schrieb "Floyd Davidson" unter <floyd@barrow.com> in
87brry1bss.fld@barrow.com:

> There are some very good examples of how that should be done
> available on the Internet, but there are even more really bad
> examples. The Linux Serial-Programming-HOWTO is one of the less
> than quality examples...

OK here comes my code...thought it is a good one because it is recommended a
lot.

int serial_open(char *portName)
{
  int fd = 0; // file descriptor

  /* Close file if already open */
  if (fd > 0) {
    close(fd);
  }
  
  /* open the specified serial port in for read and write O_RDWR */
  /* NO_CTTY makes it a non-controlling TTY. */
  fd = open(portName, O_RDWR | O_NOCTTY );
  
  if (fd < 0) {
    perror(portName);
    return -1;
  }

  /* Get current port configuration */
  tcgetattr(fd, &(oldtio));
  
  cfsetispeed(&newtio, B38400);
  cfsetospeed(&newtio, B38400);
   

  /* We've got baudrate. Add other options. */
  newtio.c_cflag |= CS8 | CLOCAL | CREAD;
  newtio.c_iflag = IGNPAR;
  newtio.c_oflag = 0;
 
  newtio.c_cc[VTIME] = 0;
  newtio.c_cc[VMIN] = 10;

  /* try and configure the port appropriately... */
  tcflush(fd, TCIFLUSH);
  tcsetattr(fd, TCSANOW, &newtio);

  serial_flush (fd);
  
  return fd;
}

Thanks, Jens



Relevant Pages

  • Re: VOIP Booster?
    ... What you're looking for isn't VOIP specific. ... To preserve that quality, at one time, telcos did not allow the ... maintain standards such as Bell System to their lines. ... Voice over the internet, which has very little to do with telephones ...
    (alt.home.repair)
  • Re: BBC Audio under James Cridland could be the best!!!
    ... His & the BBC interests are DAB not internet radio,why cant he be ... improve the audio quality of the Internet radio streams after he first ... TV streams, so I think he basically has the opposite point of view to ...
    (alt.radio.digital)
  • Re: Which high speed internet access?
    ... It actually surprises me that Adelphia internet has been as good as it ... Their Cable TV is TERRIBLE in our neighborhood. ... The point here is that the quality of an ANALOG TV signal doses NOT ... having both CABLE and SATELLITE has advantages. ...
    (rec.scuba)
  • Re: A not so responsive vendor
    ... And many times a customer will pay a slightly higher price if they know the company they are buying from and the quality of service they will be getting. ... The internet has allowed companies to sell world wide, thus creating a larger potential customer base, of which they figure few will ever voice their discontent, and if they do "so what" there are more where they came from. ...
    (rec.crafts.woodturning)
  • Re: Pirate Bay blocked by Virgin
    ... Internet destroyed that too. ... What I am saying is that the Internet and the cassette tape have ... destroyed quality popular music. ... happens live, in clubs, pays peanuts and occasionally throws up someone ...
    (uk.telecom.broadband)