TTL接口的输入输出

2024-04-11 02:20
文章标签 接口 输入输出 ttl

本文主要是介绍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

这篇关于TTL接口的输入输出的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/892823

相关文章

Java 后端接口入参 - 联合前端VUE 使用AES完成入参出参加密解密

加密效果: 解密后的数据就是正常数据: 后端:使用的是spring-cloud框架,在gateway模块进行操作 <dependency><groupId>com.google.guava</groupId><artifactId>guava</artifactId><version>30.0-jre</version></dependency> 编写一个AES加密

java线程深度解析(一)——java new 接口?匿名内部类给你答案

http://blog.csdn.net/daybreak1209/article/details/51305477 一、内部类 1、内部类初识 一般,一个类里主要包含类的方法和属性,但在Java中还提出在类中继续定义类(内部类)的概念。 内部类的定义:类的内部定义类 先来看一个实例 [html]  view plain copy pu

模拟实现vector中的常见接口

insert void insert(iterator pos, const T& x){if (_finish == _endofstorage){int n = pos - _start;size_t newcapacity = capacity() == 0 ? 2 : capacity() * 2;reserve(newcapacity);pos = _start + n;//防止迭代

京东物流查询|开发者调用API接口实现

快递聚合查询的优势 1、高效整合多种快递信息。2、实时动态更新。3、自动化管理流程。 聚合国内外1500家快递公司的物流信息查询服务,使用API接口查询京东物流的便捷步骤,首先选择专业的数据平台的快递API接口:物流快递查询API接口-单号查询API - 探数数据 以下示例是参考的示例代码: import requestsurl = "http://api.tanshuapi.com/a

SOMEIP_ETS_095: SD_Check_subscribe_eventgroup_ttl_expired

测试目的: 验证DUT(Device Under Test)能够检测到测试器(Tester)的订阅已过期(ttl = 3秒),并且在TTL过期后不响应测试器触发的事件。 描述 本测试用例旨在确保DUT能够识别测试器的订阅已过期,并在订阅过期后不响应测试器通过TriggerEventUint8方法触发的事件。 测试拓扑: 具体步骤: TESTER:发送订阅事件组消息,用于事件组0x0

股票数据接口-陈科肇

陈科肇 新浪财经 sz-深圳sh-上海历史分价表:http://market.finance.sina.com.cn/pricehis.php?symbol=sz000506&startdate=2016-12-27&enddate=2016-12-27历史成交明细(当日成交明细):http://vip.stock.finance.sina.com.cn/quotes_service/v

实例demo理解面向接口思想

浅显的理解面向接口编程 Android开发的语言是java,至少目前是,所以理解面向接口的思想是有必要的。下面通过一个简单的例子来理解。具体的概括我也不知道怎么说。 例子: 现在我们要开发一个应用,模拟移动存储设备的读写,即计算机与U盘、MP3、移动硬盘等设备进行数据交换。已知要实现U盘、MP3播放器、移动硬盘三种移动存储设备,要求计算机能同这三种设备进行数据交换,并且以后可能会有新的第三方的

对接话费充值API接口的开发步骤以及各种优势

对接话费充值API接口通常涉及以下步骤: 1.选择API提供商: 研究并选择一个可靠的话费充值API提供商。考虑因素包括覆盖范围、费率、交易限额、客户支持和用户评价。 2.注册和获取API密钥: 在选定的API提供商平台上注册账户,并获取API密钥或访问令牌,这是调用API时进行身份验证的必要信息。 3.阅读API文档: 仔细阅读API文档,了解如何构建请求、需要哪些参数、API的

java类中定义接口的有哪些好处

第一步:首先是是定义一个类,同时里面定义接口 public class Util { public interface Worker { void work(int a); } } 第二步:定义一个类去实现第一步类中定义的接口 public class Demo implements Worker { @Override public void work(int a) { System

[苍穹外卖]-04菜品管理接口开发

效果预览 新增菜品 需求分析 查看产品原型分析需求, 包括用到哪些接口, 业务的限制规则 业务规则 菜品名称必须是唯一的菜品必须属于某个分类下, 不能单独存在新增菜品时可以根据情况选择菜品的口味每个菜品必须对应一张图片 接口设计 根据类型查询分类接口 文件上传接口 新增菜品接口 数据表设计 设计dish菜品表 和 dish_fl