현재 사용하고 있는 USB to Serial converter 제품은 KW-825이다

Linux에서 특별히 드라이버를 설치하지 않아도 장치를 인식해서 사용할 수 있다.

$ dmesg | grep tty
[    0.001154] console [tty0] enabled
[    1.054132] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.054434] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[  476.751366] usb 1-4.3: FTDI USB Serial Device converter now attached to ttyUSB0

FTDI USB Serial Device로 인식하고 ttyUSB0로 Serial 포트를 사용할 수 있다.

minicom -s 명령으로 configuration - Serial port setup 선택 - Serial Device를 위에서 인식한 /dev/ttyUSB0 로 설정


    +-----------------------------------------------------------------------+
    | A -    Serial Device      : /dev/ttyUSB0                              |
    | B - Lockfile Location     : /var/lock                                 |
    | C -   Callin Program      :                                           |
    | D -  Callout Program      :                                           |
    | E -    Bps/Par/Bits       : 115200 8N1                                |
    | F - Hardware Flow Control : 아니오                                     |
    | G - Software Flow Control : No                                        |
    |                                                                       |
    |    Change which setting?                                              |
    +-----------------------------------------------------------------------+
            | Screen and keyboard      |
            | Save setup as dfl        |
            | Save setup as..          |
            | Exit                     |
            | Exit from Minicom        |
            +--------------------------+



+ Recent posts