Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dio_tcsetattr(3) [php man page]

DIO_TCSETATTR(3)							 1							  DIO_TCSETATTR(3)

dio_tcsetattr - Sets terminal attributes and baud rate for a serial port

SYNOPSIS
bool dio_tcsetattr (resource $fd, array $options) DESCRIPTION
dio_tcsetattr(3) sets the terminal attributes and baud rate of the open $fd. PARAMETERS
o $fd - The file descriptor returned by dio_open(3). o $options - The currently available options are: o 'baud' - baud rate of the port - can be 38400,19200,9600,4800,2400,1800, 1200,600,300,200,150,134,110,75 or 50, default value is 9600. o 'bits' - data bits - can be 8,7,6 or 5. Default value is 8. o 'stop' - stop bits - can be 1 or 2. Default value is 1. o 'parity' - can be 0,1 or 2. Default value is 0. RETURN VALUES
No value is returned. EXAMPLES
Example #1 Setting the baud rate on a serial port <?php $fd = dio_open('/dev/ttyS0', O_RDWR | O_NOCTTY | O_NONBLOCK); dio_fcntl($fd, F_SETFL, O_SYNC); dio_tcsetattr($fd, array( 'baud' => 9600, 'bits' => 8, 'stop' => 1, 'parity' => 0 )); while (1) { $data = dio_read($fd, 256); if ($data) { echo $data; } } ?> NOTES
Note This function is not implemented on Windows platforms. PHP Documentation Group DIO_TCSETATTR(3)

Check Out this Related Man Page

TTYSRV(8)						      System Manager's Manual							 TTYSRV(8)

NAME
ttysrv - connect to a serial port and log output SYNOPSIS
ttysrv [-o option] [-s sock] [-l log] -t tty [-b baud] [-p parity] [-w wordsize] [-i pidfile] DESCRIPTION
ttysrv is the backend for rconsole. It connects to the serial port, handles the log file and waits for connections from rconsole to view what's happening on the serial console. OPTIONS
-t tty Specify which device to connect to. -s sock The name of the socket to listen for connections from rconsole on. -o option Specify any ttyios options to open the port with. Currently only nolocal is supported. -l log The logfile to write to. If not set then no log is kept. -b baud Set the baud rate to talk to the port at. Defaults to 9600. -p parity Set the parity for the serial port. Defaults to none. -w wordsize Set the word size for the serial port. Defaults to 8 bits. -i pidfile The file to write the pid of ttysrv to. If not specified no such file is written. SEE ALSO
rconsole(1), remote-tty(1). AUTHOR
rtty was written by Paul Vixie <vixie@isc.org>. This manual page was written by Jonathan McDowell <noodles@earth.li> for the Debian project (but may be used by others). May 23, 2006 TTYSRV(8)
Man Page

12 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to set baude rate of Serial port using setserial or other command

Hello, I am encountering problems when I use termios structure to set my baud rate of serial port. Pls give me a way by which I can set the same using a different command (1 Reply)
Discussion started by: zaheer031
1 Replies

2. Solaris

connecting 280r via serial port

I'm stuck here trying to connect to a 280R via serial port A to a laptop. I set hyperterminal up for 9600, 8, N, 1, but when I hit enter, nothing comes up in hyperterminal. There is no keyboard or mouse attached to the 280R, and it doesnt have a video card, so thats not an option. I'm stumped.... (4 Replies)
Discussion started by: dangral
4 Replies

3. UNIX for Advanced & Expert Users

Command equivalent to DOS mode for SCO 5.0.6

I need to set the serial port attributes to 9600,7,E,1 in order to read and write data to it from within a Foxpro program. Unfortunately there is no function in Foxpro to set the line attributes, only open. close read and write. Stty only works on the stdout and stdin in this release, and the... (3 Replies)
Discussion started by: jgt
3 Replies

4. UNIX for Advanced & Expert Users

Communicating with Serial Port

I am using system running on red hat linux 4. I had connected health measuring machine to the serial port and configured it stty -F /dev/ttyS0 9600 -parenb cs8 -cstopb this machine requires a command to be passed to it for giving output. I am unable to pass command hexa format(0x68) to the... (4 Replies)
Discussion started by: netsavant
4 Replies

5. Programming

Serial port programming

I am developing an application in c with Linux OS, where a radio modem working at baud rate 9600 will be attached to PC on serial port. More than four such units will be communicating at one time, so there may be jamming or data corruption. Each module will be transmitting Data packets less than... (2 Replies)
Discussion started by: raj8109
2 Replies

6. AIX

HELP!windows hyperlink to 9600 baud 8N1

We are trying to use the Windows hyperlink as a console to our AIX box. We are using 9600 baud 8N1. (1 Reply)
Discussion started by: vbagwell
1 Replies

7. Programming

How to tell if a string to serial port has been sent

I have a need to determine when a string has been completely sent via a serial port from a standard 'C' application. The code is as follows: SerialPort_Send = open (pPortString, O_WRONLY | O_NOCTTY | O_NONBLOCK); write (SerialPort_Send, pCommandString, strlen (pCommandString)); ... (2 Replies)
Discussion started by: ExDes
2 Replies

8. SCO

stty: tcgetattr failed

I was using i/o8+ serial (with baud 9600,4800 & 1200)without any problem after uninstalling the above card I installed ultraport8i serial card of the same Oem I am getting the error message stty: tcgetattr failed: inappropriate I/O control operation (error 25) please help::confused: (0 Replies)
Discussion started by: aak
0 Replies

9. Programming

POSIX method for setting arbitrary (nonstandard) baud rate?

I have a USB serial adapter that supports arbitrary baud rates. To set a nonstandard rate in code, I'd been using the TIOCGSERIAL like so: struct serial_struct ser_info; ioctl(ser_dev, TIOCGSERIAL, &ser_info); ser_info.flags = ASYNC_SPD_CUST | ASYNC_LOW_LATENCY; ser_info.custom_divisor... (1 Reply)
Discussion started by: cmb
1 Replies

10. Web Development

Setup Serial Port

I need to set a serial port to 9600 7E1. How do I accomplish this? I've tried every combination, with no luck. (6 Replies)
Discussion started by: Meow613
6 Replies

11. Red Hat

Serial Port Setting Automatically changes

I am trying to change the setting of serial port baud rate in Red Hat Linux 5.9 by the following command. >> stty 9600 cs8 -parenb -ixon -cstopb -echo -F /dev/ttyS0 The serial port will be used by our custom application in 2 separate servers which are the replica of one another. The port setting... (2 Replies)
Discussion started by: Anjan Ganguly
2 Replies

12. Linux

Connect from USB to serial port of switch

I have someone wanting to connect to the serial management port of a switch from a PC running CentOS6. The management port on the switch is apparently baud 9600, 8 data bits, 1 stop bit & no parity They have plugged in a cable to connect and the output from lsusb is:-Bus 001 Device 001: ID... (7 Replies)
Discussion started by: rbatte1
7 Replies