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

相关文章

SpringBoot+Redis防止接口重复提交问题

《SpringBoot+Redis防止接口重复提交问题》:本文主要介绍SpringBoot+Redis防止接口重复提交问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录前言实现思路代码示例测试总结前言在项目的使用使用过程中,经常会出现某些操作在短时间内频繁提交。例

springboot下载接口限速功能实现

《springboot下载接口限速功能实现》通过Redis统计并发数动态调整每个用户带宽,核心逻辑为每秒读取并发送限定数据量,防止单用户占用过多资源,确保整体下载均衡且高效,本文给大家介绍spring... 目录 一、整体目标 二、涉及的主要类/方法✅ 三、核心流程图解(简化) 四、关键代码详解1️⃣ 设置

spring中的ImportSelector接口示例详解

《spring中的ImportSelector接口示例详解》Spring的ImportSelector接口用于动态选择配置类,实现条件化和模块化配置,关键方法selectImports根据注解信息返回... 目录一、核心作用二、关键方法三、扩展功能四、使用示例五、工作原理六、应用场景七、自定义实现Impor

MybatisPlus service接口功能介绍

《MybatisPlusservice接口功能介绍》:本文主要介绍MybatisPlusservice接口功能介绍,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友... 目录Service接口基本用法进阶用法总结:Lambda方法Service接口基本用法MyBATisP

Java中的Closeable接口及常见问题

《Java中的Closeable接口及常见问题》Closeable是Java中的一个标记接口,用于表示可以被关闭的对象,它定义了一个标准的方法来释放对象占用的系统资源,下面给大家介绍Java中的Clo... 目录1. Closeable接口概述2. 主要用途3. 实现类4. 使用方法5. 实现自定义Clos

java对接第三方接口的三种实现方式

《java对接第三方接口的三种实现方式》:本文主要介绍java对接第三方接口的三种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录HttpURLConnection调用方法CloseableHttpClient调用RestTemplate调用总结在日常工作

Java 的 Condition 接口与等待通知机制详解

《Java的Condition接口与等待通知机制详解》在Java并发编程里,实现线程间的协作与同步是极为关键的任务,本文将深入探究Condition接口及其背后的等待通知机制,感兴趣的朋友一起看... 目录一、引言二、Condition 接口概述2.1 基本概念2.2 与 Object 类等待通知方法的区别

SpringBoot实现接口数据加解密的三种实战方案

《SpringBoot实现接口数据加解密的三种实战方案》在金融支付、用户隐私信息传输等场景中,接口数据若以明文传输,极易被中间人攻击窃取,SpringBoot提供了多种优雅的加解密实现方案,本文将从原... 目录一、为什么需要接口数据加解密?二、核心加解密算法选择1. 对称加密(AES)2. 非对称加密(R

Java对接Dify API接口的完整流程

《Java对接DifyAPI接口的完整流程》Dify是一款AI应用开发平台,提供多种自然语言处理能力,通过调用Dify开放API,开发者可以快速集成智能对话、文本生成等功能到自己的Java应用中,本... 目录Java对接Dify API接口完整指南一、Dify API简介二、准备工作三、基础对接实现1.

Java controller接口出入参时间序列化转换操作方法(两种)

《Javacontroller接口出入参时间序列化转换操作方法(两种)》:本文主要介绍Javacontroller接口出入参时间序列化转换操作方法,本文给大家列举两种简单方法,感兴趣的朋友一起看... 目录方式一、使用注解方式二、统一配置场景:在controller编写的接口,在前后端交互过程中一般都会涉及