8250 serial communications manager (QNX Neutrino)
devc-ser8250 [[options] [port[^shift][,intr]]]... &
QNX Neutrino
Hardware with an 8250-compatible UART
In addition to the devc-ser* options, this driver supports the following options:
…
The default shift is 0.
The devc-ser8250 manager is a small serial device manager for the QNX Neutrino RTOS. It can support any number of serial ports using 8250s, 14450s or 16550s. Each device can be assigned its own interrupt, or share an interrupt if the hardware supports interrupt sharing. If you don't specify any I/O ports for devices on an x86 system, devc-ser8250 assumes you want to use the standard PC ports of COM1 (3f8,4) and COM2 (2f8,3).
The serial driver's priority floats to the priority of the client. All internal events are processed at priority 24 (inherited from the internal pulse). The event handling priority is hard coded and isn't configurable by any of the options listed. (The driver's main.c program would need modification in order to change the priority).
When the driver talks to a client application, it's running at the priority of the client. All other processing takes place either at priority 24r or at interrupt time.
Each device is given a name in the pathname space of /dev/sern, where n starts at 1 (unless changed via the -u option) and increases. If you use the default PC serial ports, this results in:
Device | Port | Interrupt |
---|---|---|
/dev/ser1 | 3f8 | 4 |
/dev/ser2 | 2f8 | 3 |
[type=link] /dev/console = /dev/ser1
All devices are fully interrupt driven and by default support standard hardware flow control on input and output (RTS/CTS). You can disable this by using the -F option.
A read request by default returns when at least 1 character is available. To increase efficiency, you can control three parameters to control when a read is satisfied:
You can set these parameters using library routines (see tcgetattr(), tcsetattr(), readcond() and TimerTimeout() in the C Library Reference).
The devc-ser8250 manager supports both raw and edited modes, making it a real tty device.
The following fields and flags are supported in the termios structure:
Field | Supported flags |
---|---|
c_cc | All characters |
c_iflag | BRKINT ICRNL IGNBRK IXON |
c_oflag | OPOST |
c_cflag | CLOCAL CSIZE CSTOPB PARENB PARODD |
c_lflag | ECHO ECHOE ECHOK ECHONL ICANON IEXTEN ISIG NOFLSH |
Start devc-ser8250, defaulting for COM1 and COM2:
devc-ser8250 &
Start devc-ser8250, defaulting for COM1 and COM2, but change baud rate to 38400 from 57600 default:
devc-ser8250 -b 38400 &
Start devc-ser8250 with five ports (the last four preset to 38400 baud):
devc-ser8250 3f8,4 -b 38400 280,3 288,3 290,3 298,3 &
You can specify multiple -F and -f options; they're position-dependent, and affect the next serial port:
devc-ser8250 -F 3f8,4 -f 2f8,3 &