{{tag>linux serie}} ====== cable usb vers ttl serie ====== Quelques notes à propos de l'utilisation du cable usb to uart serial TTL. ===== Détection du matériel ===== Connecter le cable, le noyau linux détecte un nouvel UART: $ tail /var/log/syslog Mar 5 19:52:18 yoann-VGN-AR61M kernel: [ 4019.045154] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 Mar 5 19:52:18 yoann-VGN-AR61M kernel: [ 4019.045158] usb 5-2: Product: USB-Serial Controller Mar 5 19:52:18 yoann-VGN-AR61M kernel: [ 4019.045160] usb 5-2: Manufacturer: Prolific Technology Inc. Mar 5 19:52:18 yoann-VGN-AR61M kernel: [ 4019.048149] pl2303 5-2:1.0: pl2303 converter detected Mar 5 19:52:18 yoann-VGN-AR61M mtp-probe: bus: 5, device: 3 was not an MTP device Mar 5 19:52:18 yoann-VGN-AR61M kernel: [ 4019.060218] usb 5-2: pl2303 converter now attached to ttyUSB0 Ici, un nouveau périphérique est créé: ttyUSB0. Pour afficher le paramétrage d'un périphérique série on peut utiliser la commande **stty**: $ stty -a < /dev/ttyUSB0 speed 9600 baud; rows 0; columns 0; line = 0; intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = ; eol2 = ; swtch = ; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0; -parenb -parodd cs8 hupcl -cstopb cread clocal -crtscts -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff -iuclc -ixany -imaxbel -iutf8 opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke Remarque: La commande stty peut s'utiliser sur tout terminal. Pour le noyau Linux, un terminal est l'association d'un canal série et d'une discipline de ligne. En redirigeant les entrées/sorties on peut également utiliser la commande stty pour paramétrer une cligne série dans un script bash: ===== Références ===== * http://www.unixgarden.com/index.php/gnu-linux-magazine-hs/ports-serie-sous-linux