zoukankan      html  css  js  c++  java
  • UART hardware flow control: RTS/CTS

    1. profile

    UART hardware is configured as DTE device:
    the RTS(Request-to-Send) signal as an output
    the CTS(Clear-to-Send) signal is an input

    2. one transimit
    The active-low RTS and CTS signals work together to control transmission flow.
    Hardware flow is typically controlled by the DTE device, which could be considered a ‘master’ device. In the case of a DTE-to-DTE configuration, either device can act as a master.
    发送方DTE1,通过自己的RTS引脚,发出发送请求给DTE2:
    When one DTE device wishes to transmit data, the DTE device pulls the RTS line low, which signals the slave device, through its CTS input, to begin to monitor its RX input.
    接收方RTE2拉低自己的RTS引脚,同意接收数据,于是发送方DTE1开始发送数据给DTE2:
    When the slave device is ready to accept the data, it pulls its RTS line low, informing the master, through its CTS line, to begin sending data.
    Once the transaction has completed, the master device pulls the RTS line high.

    plus:
    姑且这么理解:
    DTE 数字终端设备,一般指电脑
    DCE 数字通讯设备,一般指调制解调器



  • 相关阅读:
    C 字符串
    C 函数指针、回调函数
    C 指针
    C 数组、枚举类型enum
    C 函数声明、函数参数
    C 内置函数
    C 流程控制
    C 储存类与运算符
    C变量和常量
    名词解释
  • 原文地址:https://www.cnblogs.com/hkingsp/p/15602428.html
Copyright © 2011-2022 走看看