TTL接口的输入输出

The Ins and Outs of the TTL Interface
串行通信可在相当长的距离内传输数据,通常与 TTL 标准有关。数据通过串行通信传输,串行通信通过单线传输比特位。数据通过双方--发送方和接收方--以二进制脉冲的形式使用各种串行数字二进制技术进行交换。
RS232 是最早的串行通信协议形式之一,至今仍被串行端口广泛用于连接计算机和设备。它逐位发送数据,非常类似于微控制器的串行信号。这一标准源自 TTL。晶体管-晶体管逻辑(或 TTL)是一种串行通信类型,现代微控制器经常使用这种类型的串行通信,它采用所谓的 UART(或称为通用异步接收器/发送器传输技术)。
Serial communication allows for data transmission over considerable distances and is commonly associated with the TTL standard. Data is transferred through serial communication, which transmits bits at a time over a single wire. Data is exchanged using two parties—the transmitter and receiver—by using various serial digital binary technologies in the form of binary pulses.
One of the first forms of serial communication protocol, RS232, is still widely used today by serial ports to connect computers to devices. It sends data bit by bit, much like serial signals from a microcontroller. This standard derived TTL. Transistor-Transistor Logic, or TTL, is a type of serial communication that is frequently used in modern microcontrollers using what is called the UART, or universally asynchronous receiver/transmitter transmission technique.
RS232 由于年代久远,应用广泛,价格便宜,以数据传输可靠而著称。简单的布线和标准化的方法使相关硬件具有广泛的兼容性,并易于采购。同样,TTL 由于设计简单、可用性高,成本更低。由于 TTL 与微控制器高度兼容,而且非常容易使用,因此它在大多数项目中无处不在并成为行业首选也就不足为奇了。
每个 TTL 芯片通常有数百个晶体管。通常情况下,一个封装就包含了从逻辑门到 CPU 的所有功能。逻辑系列由 BJT(双极结晶体管)组成。顾名思义,晶体管有两种用途:逻辑和放大。TTL 逻辑由多个晶体管组成,每个晶体管都有多个发射极和输入端。TTL 的设计形式多种多样,可用于各种用途,例如用于太空应用的抗辐射 TTL 封装,以及在速度和低功耗之间取得良好平衡的低功耗肖特基二极管。
RS232, due to its age and widespread adoption, is cheaply available and is known for its reliability in data transmission. The simple wiring and standardized methodology make associated hardware widely compatible and easily sourced. TTL similarly has an even lower cost due to its simple design and high availability. It is no surprise then that it is omnipresent and an industry preference for most projects as it is highly compatible with microcontrollers and is really easy to use.
Each TTL chip typically has hundreds of transistors. Typically, a single package will contain everything from logic gates to a CPU. The logic family is composed of BJTs (bipolar junction transistors). As its name suggests, the transistor serves two purposes: logic and amplification. TTL logic consists of a number of transistors, each of which has a number of emitters and inputs. TTL comes in a variety of forms that are designed for various uses, such as radiation hardened TTL packages for space applications and Low power Schottky diodes that offer a great balance between speed and low power consumption.
就功耗而言,TTL 器件的功耗通常高于 CMOS 器件,尽管 CMOS 器件的功耗并不随时钟速度的增加而增加。晶体管-晶体管逻辑比当代的 ECL 电路慢得多,但功耗却低得多,设计原理也更简单。TTL 的主要优点是与其他电路的连接简单,而且由于特定的电压电平和良好的噪声裕量,可以提供复杂的逻辑功能。扇入(Fan-in),即输入端可接受的 i/p 信号数量,也是 TTL 的强项之一。TTL 的低电平为 0 至 0.2 伏,高电平为 5 伏,扇出 10 个门,即最多可支持 10 个门。
TTL 接口是一种多功能、低成本和广泛兼容的接口,以其可靠性和可用性而著称。TTL 芯片包含许多晶体管,用于逻辑和放大,是一种简单而巧妙的设计。
When it comes to power consumption, TTL devices typically consume more power than CMOS devices, although CMOS device power utilization does not increase with clock speed. Transistor-transistor logic is substantially slower than contemporary ECL circuits, but it uses significantly less power and has simpler design principles. The key advantage of TTL is that it is simple to link with other circuits and that it can provide complex logic functions due to particular voltage levels and good noise margins. Fan-in, or the number of i/p signals that may be accepted through an input, is also one of TTL’s strong points. TTL operates at a low level of between 0 and 0.2 volts and at a high level of 5V, and it has a fan out of 10 gates, which means that it can support up to 10 gates.
The TTL interface is a versatile, low-cost, and widely compatible one that is best regarded for its reliability and availability. A TTL chip contains many transistors which serve the purposes of logic and amplification, a simple yet ingenious design. 
参考:
1,Focus LCDS
The Ins and Outs of the TTL Interface - Focus LCDs

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/805760.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jquery按回车切换下一个文本框

/** *按回车切换下一个文本框 *param field *param event *returns Boolean *οnkeypress"return handleEnter(this,event)" */ function handleEnter(field,event){ var keyCode event.keyCode ? event.keyCode : event.which ? event.which :event.ch…

Sql缺失索引查询,自动创建执行语句

试图查询确实的索引 CREATE VIEW [dbo].[vw_Index_MissingIndex] ASSELECT [ d.name ] as DBName,[dbo].[fn_Index_CreateIndexName](mid.equality_columns,mid.Inequality_columns,mid.index_handlE) AS ID,REPLACE(mid.equality_columns,,, ASC,) AS equality_columns,REP…

Redis面试题1

Redis基础概念 1.请简述Redis是什么? 答:Redis是一个开源的使用ANSI C语言编写的、遵守BSD协议、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。它通常被称为数据结构服务器,因为值&#xff0…

《C++程序设计》阅读笔记【7-堆和拷贝构造函数】

🌈个人主页:godspeed_lucip 🔥 系列专栏:《C程序设计》阅读笔记 本文对应的PDF源文件请关注微信公众号程序员刘同学,回复C程序设计获取下载链接。 1 堆与拷贝构造函数1.1 概述1.2 分配堆对象1.3 拷贝构造函数1.3.1 默…

301永久重定向与302临时重定向的正确运用

我们前不久有Hostease的客户的网站进行了域名更改。客户想了解域名更改后会有哪些后果和影响。一般网站域名更换后会遇到旧页面失效问题。为了优化用户体验和维护搜索引擎优化(SEO),我们需要正确地使用301永久重定向和302临时重定向。这两种重定向方式各有其特点和适…

本地linux怎样先亚马逊云服务器上传文件

使用亚马逊云服务器的密钥&#xff0c;并通过srp命令&#xff0c; 连接上传&#xff1a; scp -i <密钥文件路径> <本地文件路径> <远程主机用户名><远程主机地址>:<目标路径> scp -i assig2.pem data.txt ubuntuec2-xx-xxx-xx-xx1.compute-x.…

用c++做到将数字转换为中文模式

主要功能就是将数字的123&#xff0c;个位&#xff0c;十位&#xff0c;百位知道亿都用中文给显示出来 具体代码如下&#xff1a; #include <iostream> #include <string> using namespace std; // 定义数字对应的中文字符 const string zw[] { "零"…

面向对象编程:在Python中的面向对象编程奥秘

面向对象编程在Python中的奥秘 在编程的世界里&#xff0c;面向对象编程&#xff08;Object-Oriented Programming&#xff0c;简称OOP&#xff09;是一种非常重要的编程范式。它改变了我们思考问题和设计代码的方式。Python作为一种支持面向对象的语言&#xff0c;为我们提供…

langchain 使用本地通义千问

langchian 使用已经下载到本地的模型&#xff0c;我们使用通义千问 显存&#xff1a;24G 模型&#xff1a;qwen1.5-7B-Chat&#xff0c;qwen-7B-Chat 先使用 qwen-7B-Chat&#xff0c;会报错用不了&#xff1a; 看了下是不支持这中模型&#xff0c;但看列表中有一个 Qwen 字样…

谷歌(Google)技术面试——在线评估问题(二)

谷歌&#xff08;Google&#xff09;面试过程的第一步&#xff0c;你可能会收到一个在线评估链接。 评估有效期为 7 天&#xff0c;包含两个编码问题&#xff0c;需要在一小时内完成。 以下是一些供你练习的在线评估问题。 在本章结尾处&#xff0c;还提供了有关 Google 面试不…

【Linux】初识Linux,虚拟机安装Linux系统,配置网卡

前言 VMware软件&#xff1a;首先&#xff0c;确保您已经下载了VMware Workstation软件并安装在电脑上。VMware Workstation是一款功能强大的虚拟化软件&#xff0c;它允许在单一物理机上运行多个操作系统。 Linux镜像文件&#xff1a;需要准备一个Linux操作系统的镜像文件。…

win64平台用cmake编译lvgl

一、编译步骤 1&#xff0c;配置 mkdir build cd build 配置release&#xff0c;动态库 cmake .. -G"Visual Studio 17 2022" -DCMAKE_BUILD_TYPERelease -DCMAKE_INSTALL_PREFIXinstall -DBUILD_SHARED_LIBSON -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLSON -DLV_CO…

python使用uiautomator2操作雷电模拟器9找图

接上篇文章python使用uiautomator2操作雷电模拟器9并遇到解决adb 连接emulator-5554 unauthorized问题-CSDN博客 搭建好uiautomator2后&#xff0c;主要就是使用了。 本文就利用uiautomator2的截屏、模拟点击和aircv的找图功能&#xff0c;实现对指定寻找的图片的位置的点击。…

java程序生成exe文件启动时,在没有java环境计算机运行

1.idea项目配置工件 2. 开始构建java程序成jar包 3. 生成exe启动程序

【图像分类】MMPretrain训练ImageNet格式自定义数据集

1. 安装环境 1.1. Conda虚拟环境 conda create --name mmpretrain python3.8 -y conda activate mmpretrain 1.2. 安装PyTorch pip install torch1.13.1cu117 torchvision0.14.1cu117 torchaudio0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117 1.3. 安…

结构型模式--3.组合模式【草帽大船团】

1. 好大一棵树 路飞在德雷斯罗萨打败多弗朗明哥之后&#xff0c;一些被路飞解救的海贼团自愿加入路飞麾下&#xff0c;自此组成了草帽大船团&#xff0c;旗下有7为船长&#xff0c;分别是&#xff1a; 俊美海贼团75人 巴托俱乐部56人 八宝水军1000人 艾迪欧海贼团4人 咚塔塔海…

交换机的基本原理与配置_实验案例一:交换机的初始配置

1、实验环境 实验用具包括一台Cisco交换机&#xff0c;一台PC&#xff0c;一根Console 线缆。 2、需求描述 如图5.17所示&#xff0c;实验案例一的配置需求如下。 通过PC连接并配置一台Cisco交换机。在交换机的各个配置模式之间切换。将交换机主机的名称改为BDON 3、推荐步…

滴滴春招内幕揭秘:2024最全Spring JPA面试题大全,含详解与实战示例!百分之九十九的Java后端开发者都在收藏!

在2024年的技术招聘市场中&#xff0c;滴滴出行作为领先的移动出行平台&#xff0c;对后端开发人员的需求依然强劲。随着Spring框架在企业级Java应用开发中的广泛应用&#xff0c;Spring Data JPA作为数据访问层的关键技术&#xff0c;成为了滴滴面试中的重要考察点之一。Sprin…

【滑动窗口】

滑动窗口算法是解决一类特定问题的有效方法&#xff0c;尤其适用于涉及数组/字符串的连续元素问题。这里有一些常见的应用题型&#xff0c;可以用C实现滑动窗口算法来解决&#xff1a; 最小覆盖子串&#xff1a;给定一个字符串S和一个字符串T&#xff0c;在S中找到最小的子串&a…

知网参考文献引用格式转latex中BibTex-Python操作

处理思路 参考 处理步骤&#xff1a; &#xff08;单条处理&#xff1a;&#xff09; 1、选知网NoteExpress格式的2-7行复制信息 2、新建一个文本文件&#xff0c;命名为cite.txt&#xff0c;把知网所复制信息粘贴进来 &#xff08;txt文件保存编码ANSI可行&#xff09; 3、…