zoukankan      html  css  js  c++  java
  • 串口设置-stty--设置终端线

    stty - chang and print terminal line settings

    SYNOPSIS
    stty [-F DEVICE | --file=DEVICE] [SETTING]...
    stty [-F DEVICE | --file=DEVICE] [-a|--all]
    stty [-F DEVICE | --file=DEVICE] [-g|--save]

    DESCRIPTION
    Print or change terminal characteristics.

    -a, --all
    print all current settings in human-readable form

    -g, --save
    print all current settings in a stty-readable form

    -F, --file=DEVICE
    open and use the specified DEVICE instead of stdin

    --help display this help and exit

    --version
    output version information and exit

    Optional - before SETTING indicates negation. An * marks non-POS
    IX settings. The underlying system defines which settings are available.

    可用stty设置波特率,设置串口回现等。

    ~$sudo stty -F /dev/tty0 -a
    speed 38400 baud; rows 37; columns 100; line = 0;
    intr = ^C; quit = ^; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
    eol2 = <undef>; swtch = <undef>; 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

    ~$sudo stty -F /dev/tty0 echo

  • 相关阅读:
    Python中Pickle模块的dump()方法和load()方法
    python的@classmethod和@staticmethod的区别和使用
    Python 正则表达式
    Python 函数
    Python time和datetime
    python 文件操作
    Python 集合的交差并补操作及方法
    python 字典相关函数和操作方法
    python 列表(list)操作及函数
    python 深浅拷贝
  • 原文地址:https://www.cnblogs.com/embedded-linux/p/6227851.html
Copyright © 2011-2022 走看看