Sponsored Content
Full Discussion: Device Names on Android
Operating Systems Linux Android Device Names on Android Post 302866743 by Corona688 on Tuesday 22nd of October 2013 04:06:30 PM
Old 10-22-2013
I wonder if it has the FTDI driver built-in. Lots of things use it.
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Device Files names and location

HI there. I am studying System administration right now and am stuck on a question that I have failed to find the answer for in my book. The question is: Do device files need to be in the /dev directory and to they need to follow a naming convention? My answer (so far) is that since the... (7 Replies)
Discussion started by: Carl1976
7 Replies

2. Android

Android Scripting Environment: Shell Scripting and Android

I just upgraded to Android 2.2 from 2.1. The GPS issue that was troublesome in 2.1 seems to have been fixed. Some of web browsing seems faster, but it could just be my connection is better today ;) Flash works in some browsers but not very good and it is too slow for Flash apps designed for... (0 Replies)
Discussion started by: Neo
0 Replies

3. Red Hat

Unable To Activate Ethernet Network Device in RHEL 5.5 - e100 device eth0 does not seem to be presen

Hi All, Could anyone please help to resolve the below problem. I installed RHEL5.5 in my desktop.But when i try to activate the ethernet connection then it gives me the error. I spent 2 days for the above and go through with several suggestion found by googling. But no luck. ... (0 Replies)
Discussion started by: Tanmoy
0 Replies

4. Android

Running only the Linux kernel of an Android device

I am looking for a way to run on top of the Linux kernel of an Android device. I want to use the existing configured Linux beneath Android rather than put a new Linux distribution onto a device. The article "The Android boot process from power on" (sorry, forum won't let me paste the link)... (0 Replies)
Discussion started by: raoulney
0 Replies

5. HP-UX

Failed to open tape device /dev/rmt/0mn:Device busy (errno = 16)

Hi, Unable to make tape backup, please help. /opt/ignite/bin/make_tape_recovery -a /dev/rmt/?mn -I -v -m tar -x inc_entire=vg00 * Creating local directories for configuration files and archive. ======= 04/25/16 16:28:08 IST Started /opt/ignite/bin/make_tape_recovery. (Mon... (4 Replies)
Discussion started by: anuragr
4 Replies

6. UNIX for Beginners Questions & Answers

Android Device ID Changer shell script

this is worked "ANDROID NOUGAT" how can i use it for "ANDROID OREO" -plz help me... ------------------------------------------- echo " Ã-~-DEVICE ID CHANGINGÃ-~-" sleep 2 echo " " COUNT=1 while do ; echo "settings put secure android_id " | tr -d '\n' > X1... (4 Replies)
Discussion started by: f4is4l
4 Replies
UFTDI(4)						   BSD Kernel Interfaces Manual 						  UFTDI(4)

NAME
uftdi -- USB support for serial adapters based on the FTDI family of USB serial adapter chips. SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device usb device ucom device uftdi Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): uftdi_load="YES" DESCRIPTION
The uftdi driver provides support for various serial adapters based on the following FTDI chips: o FT8U100AX o FT8U232AM o FT8U232BM o FT232R o FT2232C o FT2232D o FT2232H o FT4232H o FT230X The device is accessed through the ucom(4) driver which makes it behave like a tty(4). Many of the supported chips provide additional functionality such as bitbang mode and the MPSSE engine for serial bus emulation. The uftdi driver provides access to that functionality with the following ioctl(2) calls, defined in <dev/usb/uftdiio.h>: UFTDIIOC_RESET_IO (int) Reset the channel to its default configuration, flush RX and TX FIFOs. UFTDIIOC_RESET_RX (int) Flush the RX FIFO. UFTDIIOC_RESET_TX (int) Flush the TX FIFO. UFTDIIOC_SET_BITMODE (struct uftdi_bitmode) Put the channel into the operating mode specified in mode, and set the pins indicated by ones in iomask to output mode. The mode must be one of the uftdi_bitmodes values. enum uftdi_bitmodes { UFTDI_BITMODE_ASYNC = 0, UFTDI_BITMODE_MPSSE = 1, UFTDI_BITMODE_SYNC = 2, UFTDI_BITMODE_CPU_EMUL = 3, UFTDI_BITMODE_FAST_SERIAL = 4, UFTDI_BITMODE_CBUS = 5, UFTDI_BITMODE_NONE = 0xff, }; struct uftdi_bitmode { uint8_t mode; uint8_t iomask; }; Manuals and application notes published by FTDI describe these modes in detail. To use most of these modes, you first put the chan- nel into the desired mode, then you read(2) and write(2) data which either reflects pin state or is interpreted as MPSSE commands and parameters, depending on the mode. UFTDIIOC_GET_BITMODE (struct uftdi_bitmode) Return the state of the bitbang pins at the time of the call in the iomask member. The mode member is unused. UFTDIIOC_SET_ERROR_CHAR (int) Set the character which is inserted into the buffer to mark the point of an error such as FIFO overflow. UFTDIIOC_SET_EVENT_CHAR (int) Set the character which causes a partial FIFO full of data to be returned immediately even if the FIFO is not full. UFTDIIOC_SET_LATENCY (int) Set the amount of time to wait for a full FIFO, in milliseconds. If more than this much time elapses without receiving a new charac- ter, any characters in the FIFO are returned. UFTDIIOC_GET_LATENCY (int) Get the current value of the latency timer. UFTDIIOC_GET_HWREV (int) Get the hardware revision number. This is the bcdDevice value from the usb_device_descriptor. HARDWARE
The uftdi driver supports the following adapters: o B&B Electronics USB->RS422/485 adapter o Elexol USB MOD1 and USB MOD3 o HP USB-Serial adapter shipped with some HP laptops o Inland UAS111 o QVS USC-1000 o Buffalo PC-OP-RS / Kurouto-shikou KURO-RS universal remote o Prologix GPIB-USB Controller SEE ALSO
tty(4), ucom(4), usb(4) HISTORY
The uftdi driver appeared in FreeBSD 4.8 from NetBSD 1.5. BSD
March 31, 2014 BSD
All times are GMT -4. The time now is 12:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy