Sponsored Content
Operating Systems Solaris how to set the variales for serial port Post 302260908 by incredible on Saturday 22nd of November 2008 07:27:21 AM
Old 11-22-2008
can't you use the eeprom?
#eeprom output-device=/dev/term/a
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

serial port configuration

I am having trouble with a device connected through a serial port on my sun workstation ( I am running solaris 7). The seriel device works on an identical workstation running the same o/s version but when I move it to the initial workstation it doesn't work. I am using an rs232 serial cable and... (1 Reply)
Discussion started by: Henrik
1 Replies

2. 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

3. UNIX for Dummies Questions & Answers

Serial port redirector

I need make serial data from virtual serial ports available on a TCP/IP network. For communications with hardware COM ports to send and receive serial data over a local network or the Internet. Example: POSIX machine (/dev/ttyS0) <--- TCP/IP ---> Windows machine COM1 Please help! I try use... (0 Replies)
Discussion started by: steel98
0 Replies

4. Programming

Programming serial port

Hello! Can someone advice me which method I will use if I want to communicate with device via RS232 serial port with this requirements: 1. Serial port is opened in non-canonical mode. 2. All the time I need to check is there something to read. 3. If I have to write something I need to write it... (6 Replies)
Discussion started by: jvrlic
6 Replies

5. AIX

Serial port in AIX

Hi, How can i configure my modem in AIX thru serial port (sa0-->tty0) I have two port serial card configured as sa0 I created tty1 which port is tty0 and which port is tty1 how can i know?? (1 Reply)
Discussion started by: pchangba
1 Replies

6. Shell Programming and Scripting

Need help with serial port

Hi, I have a external board connected to my serial port. I need to execute "shutdown -r now" command when system boot up. When system boots up it requires a username ans password. Then I need to run my command. I can use rc script but that is rebooting system before it asks for username and... (0 Replies)
Discussion started by: charlie.arya
0 Replies

7. Solaris

How to enable Serial port on ILOM, when Network Port is enabled in parallel

Hi Everyone, In my environment, I have few T5220. On the iLOM Management Card, I have both Network and Serial port are cabled, I don't have any issues while I try to connect using Network Management port, but when I try to connect the serial port for the same server which is actually connected... (3 Replies)
Discussion started by: bobby320
3 Replies

8. Solaris

Using PC serial port from ReflectionX

I am using ReflectionX on a windows PC to run an application on a Solaris box. The application uses the serial port and expects a definition like: /dev/ttyb Is there a way to use the PC serial port through ReflectionX? PC is running Windows-XP Solaris Box is: Sun Microsystems sun4u... (1 Reply)
Discussion started by: deanjennings
1 Replies

9. 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

10. Solaris

Cabling and adapters to communicate to service processor serial port from Windows PC with USB port.

Hello, I have an unloaded T5140 machine and want to access the ILOM for the first time and subsequently the network port after that., and then load Solaris 10 the final January 2011 build. The first part is what confuses me -the cabling. I am coming from a Windows machine (w/appropriate... (5 Replies)
Discussion started by: joboy
5 Replies
FTDI-EEPROM(1)						      General Commands Manual						    FTDI-EEPROM(1)

NAME
ftdi_eeprom - Tool for reading/erasing/flashing FTDI USB chip eeproms SYNOPSIS
ftdi_eeprom [commands] config-file DESCRIPTION
ftdi_eeprom is a small tool for reading/erasing/flashing FTDI USB chip eeproms. It uses libftdi to access the chip, so you will need to have the required permissions on the device. The ftdi_sio module should not be loaded. You can prevent it to be automatically loaded by adding it to /etc/modprobe.d/blacklist. You have to unplug and replug your device to get the new values to be read. Otherwise, you will still get the old values. COMMANDS
--read-eeprom Read eeprom and write to -filename- from config-file. --erase-eeprom Erase eeprom. --flash-eeprom Flash eeprom. CONFIGURATION FILE
The configuration file contains a list of key-value pairs which will be used to flash an FTDI USB chip eeprom. Comments start with #. The beginning of such a file might look like the following: vendor_id=0x0403 # Vendor ID product_id=0x6001 # Product ID max_power=0 # Max. power consumption: value * 2 mA. Use 0 if self_powered = true. ########### # Strings # ########### manufacturer="ACME Inc" # Manufacturer product="USB Serial Converter" # Product serial="08-15" # Serial The example configuration file that could be found in /usr/share/doc/ftdi-eeprom/examples is quite well commented so you should be able to use it as a basis. The following keys are supported: vendor_id Set the vendor ID of the device. This value could be entered in decimal or hexadecimal form, and should be in the range 0-65535 or 0x0000-0xffff, respectively. product_id Set the product ID of the device. This value could be entered in decimal or hexadecimal form, and should be in the range 0-65535 or 0x0000-0xffff, respectively. max_power Set the maximum current the device will use, in 2 mA unit. Use 0 if self_powered = true. manufacturer Set the manufacturer string which normally holds the name of the manufacturer. product Set the product string which normally holds the name of the product. serial Set the serial string which normally holds the serial number of the product. self_powered Specify if the device is self-powered or not. The value should be true or false. remote_wakeup Specify if the device supports remote wake-ups. The value should be true or false. use_serial If this value is set to true, the serial string will be used. Otherwise the default serial string will be used. BM_type_chip This value have to be set to true if you are using a BM chip. in_is_isochronous If set to true this option specify that the input endpoint is in isochronous mode. out_is_isochronous If set to true this option specify that the output endpoint is in isochronous mode. suspend_pull_downs If this value is set to true the pull downs are enabled during suspend for lower power consumption. change_usb_version This value has to be set to true if you want to force the USB version using the usb_version key. Otherwise the default USB version will be used. usb_version Set the USB version of the device. The change_usb_version value has to be set to true. filename Specify a filename if you want to dump the content of the eeprom into it. AUTHOR
ftdi_eeprom was written by Intra2net AG <opensource@intra2net.com>. This manual page was written by Aurelien Jarno <aurel32@debian.org> for the Debian GNU/Linux system (but may be used by others). March 31, 2004 FTDI-EEPROM(1)
All times are GMT -4. The time now is 05:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy