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 数字通讯设备,一般指调制解调器



  • 相关阅读:
    微信报警提示
    使用pygal图表显示网站API接口数据
    读写文本文件,乱码解决方案
    MD5加密
    将DataTable导入到SQL数据库表中
    NPOI组件操作Excel导入、导出
    二叉树由先序和中序建树
    用两个栈模拟队列
    math type白嫖教程
    IDEA常用快捷键
  • 原文地址:https://www.cnblogs.com/hkingsp/p/15602428.html
Copyright © 2011-2022 走看看