Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ucom(4) [netbsd man page]

UCOM(4) 						   BSD Kernel Interfaces Manual 						   UCOM(4)

NAME
ucom -- USB tty support SYNOPSIS
ucom* at ubsa? ucom* at uchcom? ucom* at uftdi? ucom* at ugensa? ucom* at uhmodem? ucom* at uipaq? ucom* at ukyopon? ucom* at umct? ucom* at umodem? ucom* at uplcom? ucom* at uslsa? ucom* at uvisor? portno ? ucom* at uvscom? DESCRIPTION
The ucom driver attaches to USB modems, serial ports, and other devices that need to look like a tty. The ucom driver shows a behaviour like a tty(4). This means that normal programs such as tip(1) or pppd(8) can be used to access the device. The portno locator can be used to decide which port to use for device that have multiple external ports. FILES
/dev/dtyU? /dev/ttyU? SEE ALSO
tty(4), ubsa(4), uchcom(4), uftdi(4), ugensa(4), uhmodem(4), uipaq(4), ukyopon(4), umct(4), umodem(4), uplcom(4), usb(4), uslsa(4), uvisor(4), uvscom(4) HISTORY
The ucom driver appeared in NetBSD 1.5. BSD
December 16, 2009 BSD

Check Out this Related Man Page

UKYOPON(4)						   BSD Kernel Interfaces Manual 						UKYOPON(4)

NAME
ukyopon -- Kyocera AIR-EDGE PHONE support SYNOPSIS
ukyopon* at uhub? ucom* at ukyopon? portno ? #include <dev/usb/ukyopon.h> DESCRIPTION
The ukyopon driver provides support for Kyocera AIR-EDGE PHONE AH-K3001V. Two units of this driver attach to an AIR-EDGE PHONE: the modem port and the data transfer port. The modem port is compatible to umodem(4), and can be used for dialup connections. The data transfer port is for reading and writing internal storage of AIR-EDGE PHONE. Both devices are accessed through the ucom(4) driver which makes them behave like a tty(4). The manipulation of the internal storage is through external programs, for example, the pkgsrc/comms/kyopon package. IOCTLS
The following ioctl(2) calls apply to the ukyopon device: UKYOPON_IDENTIFY struct ukyopon_identify Read, from the kernel, the identification information of the device, useful to assure that the opened device node is a modem or a data transfer port of ukyopon device. struct ukyopon_identify { char ui_name[16]; /* driver name */ int ui_busno; /* usb bus number */ uint8_t ui_address; /* device address */ enum ukyopon_model { UKYOPON_MODEL_UNKNOWN } ui_model; /* possibly future use */ enum ukyopon_port { UKYOPON_PORT_UNKNOWN, UKYOPON_PORT_MODEM, /* modem port */ UKYOPON_PORT_DATA /* data transfer port */ } ui_porttype; /* port type */ int ui_rsvd1, ui_rsvd2; }; #define UKYOPON_NAME "ukyopon" The ui_name field contains the driver signature, and has the string UKYOPON_NAME. The ui_busno field contains the usb(4) bus number to which the device is connected; the ui_address field contains the address of the device in the bus. These fields are useful to identify the physical device from the file descriptor. The ui_porttype field contains the type of device: UKYOPON_PORT_MODEM means the device is associated to the modem port, and UKYOPON_PORT_DATA means the device is associated to the data transfer port. Other fields are reserved for future extension and cleared to zeros. In addition, ukyopon devices accept all ioctl(2) calls that umodem(4) accepts. SEE ALSO
tty(4), ucom(4), umodem(4), usb(4), pkgsrc/comms/kyopon HISTORY
The ukyopon driver appeared in NetBSD 3.0. NOTES
``Kyopon'' is a widely-used nickname of Kyocera AIR-EDGE PHONE. BSD
May 18, 2005 BSD
Man Page