可编程ic卡 通用吗_8255可编程IC

可编程ic卡 通用吗

Introduction

介绍

An 8255 programmable integrated circuit (IC) is an IC used for interfacing the microprocessor with the peripheral devices. It is a 40 pin IC which was introduced by INTEL to use with its 8085 and 8086 microprocessors.

8255可编程集成电路(IC)是用于将微处理器与外围设备接口的IC。 它是INTEL推出的40引脚IC,用于其8085和8086微处理器。

Ports of 8255

端口8255

There are three input/output 8-bit ports in this IC namely port A, port B, port C. The port C can be divided into two each of 4 bits(C upper and C lower) according to requirement.

该IC中有3个输入/输出8位端口,即端口A,端口B,端口C。根据需要,端口C可以分为4位(C高和C低)中的两个。

Architecture of 8255

8255的体系结构

Architecture of 8255

Pin diagram of 8255

8255的引脚图

Pin diagram of 8255
  • The pins 1-4 and 37-40 are for Port A(PA0-PA7).

    引脚1-4和37-40用于端口A(PA0-PA7)。

  • The pins 18-25 are for port B(PB0-PB7).

    引脚18-25用于端口B(PB0-PB7)。

  • The pins 10-17 are for port C(PC0-PC7).

    引脚10-17用于端口C(PC0-PC7)。

  • The pins 27-34 are for data bus(D0-D7) linked to the microprocessor.

    引脚27-34用于链接到微处理器的数据总线(D0-D7)。

  • The RD(5) and WR(36) are two low active pins for reading and write operations respectively. When a low signal is sent to the pin no 5 it means a read operation is performing. Similarly, when a low signal is sent to pin no 36 this means the write operation is being performed.

    RD(5)和WR(36)是两个低有效引脚,分别用于读取和写入操作。 当低电平信号发送到5号引脚时,表示正在执行读操作。 同样,当低信号发送到引脚36时,这意味着正在执行写操作。

  • The CS(chip select) is another low active pin that works as an enable to the IC.

    CS(片选)是另一个低电平有效引脚,用作IC的使能。

  • The A0 and A1 are the control logic at 8 and 9.

    A0和A1是8和9处的控制逻辑。

  • A0 A1

    A0 A1

  • 0 0 port A

    0 0端口A

  • 0 1 port B

    0 1端口B

  • 1 0 port C

    1 0端口C

  • 1 1 Control Word logic(CWR)

    1 1控制字逻辑(CWR)

  • These select the ports.

    这些选择端口。

  • The RESET pin at 35 used to reset the IC.

    35处的RESET引脚用于复位IC。

  • The ground(7) and Vcc(26) are also present to establish the potential difference.

    接地(7)和Vcc(26)也存在以建立电势差。

Modes of 8255

8255的模式

This IC works in 3 modes

该IC工作在3种模式

  1. Mode 0 in which all the three ports act as input-output ports.

    模式0,其中所有三个端口都充当输入-输出端口。

  2. Mode 1 in which only port A and port B act as input-output port while port C is used for handshaking.

    模式1,其中仅端口A和端口B充当输入-输出端口,而端口C用于握手。

  3. Mode 2 in which only port A is used as a bidirectional port for both input-output.

    模式2,其中仅端口A用作两个输入输出的双向端口。

Control word logic (CWL)

控制字逻辑(CWL)

Everything in the 8255 IC is dependent on the CWL. There are 8 bits in the CWL:

8255 IC中的所有内容均取决于CWL。 CWL中有8位:

CWL
  1. D0 port Clower

    D0端口割草机

  2. D1 port B

    D1端口B

  3. D2 Mode

    D2模式

  4. D3 port Cupper

    D3端口铜

  5. D4 port A

    D4端口A

  6. D5 Mode

    D5模式

  7. D6 Mode

    D6模式

  8. D7 BSR(Bit Set Reset)/I/O mode

    D7 BSR(位设置重置)/ I / O模式

We can set the CWL by using the IN and OUT command of the respective microprocessor.

我们可以使用相应微处理器的IN和OUT命令设置CWL。

翻译自: https://www.includehelp.com/embedded-system/the-8255-programmable-ic.aspx

可编程ic卡 通用吗

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

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

相关文章

POJ 1944 Fiber Communications (枚举 + 并查集 OR 线段树)

题意 在一个有N(1 ≤ N ≤ 1,000)个点环形图上有P(1 ≤ P ≤ 10,000)对点需要连接。连接只能连接环上相邻的点。问至少需要连接几条边。 思路 突破点在于最后的结果一定不是一个环!所以我们枚举断边,则对于…

九、逻辑回归多分类和softmax多分类

一、逻辑回归多分类 假设激活函数使用的是sigmoid函数 逻辑回归多分类其实是多个二分类而已,若求三分类问题需要对训练的数据样本进行适当的修改调整即可,如何修改样本数据可以参考逻辑回归二分类和多分类本质区别,内容都一样&#xff0c…

【C++grammar】继承与构造test1代码附录

目录1、main.cpp2、circle.cpp3、circle.h4、rectangle.cpp5、rectangle.h6、Shape.h1、main.cpp #include <iostream> #include <string> #include "Shape.h" #include "circle.h" #include "rectangle.h"//创建Shape/Circle/Rect…

hdu 4747 mex 线段树+思维

http://acm.hdu.edu.cn/showproblem.php?pid4747 题意&#xff1a; 我们定义mex(l,r)表示一个序列a[l]....a[r]中没有出现过得最小的非负整数&#xff0c; 然后我们给出一个长度为n的序列&#xff0c;求他所有的连续的子序列的mex(l,r)的和。 思路&#xff1a; 首先因为n的最大…

十、评估指标

我看过很多课程&#xff0c;不过内容都大差不差&#xff0c;也可以参考这篇模型评估方法 一、K折交叉验证 一般情况&#xff0c;我们得到一份数据集&#xff0c;会分为两类&#xff0c;一类是trainset训练集&#xff0c;另一类十testset测试集。通俗一点也就是训练集相当于平…

leetcode 47. 全排列 II 思考分析

题目 给定一个可包含重复数字的序列 nums &#xff0c;按任意顺序 返回所有不重复的全排列。 思考分析以及代码 这一题和前面的做过的两个题目有所关联&#xff1a; leetcode 46. 全排列 思考分析 再加上leetcode 491. 递增子序列 思考分析类似的去重操作。 先画出解空间树…

python添加数组元素_在Python中向数组添加元素

python添加数组元素An array can be declared by using "array" module in Python. 可以通过在Python中使用“数组”模块来声明数组 。 Syntax to import "array" module: 导入“数组”模块的语法&#xff1a; import array as array_alias_nameHere, im…

hdu 4472 Count(递推即dp)

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid4472 代码&#xff1a; #include <cstdio> #include <cstring> #include <iostream> #include <cmath> #include <algorithm> #include <queue> #include <vector> …

如何在Java中同步ArrayList?

同步ArrayList (Synchronizing ArrayList) In java, there are two ways to synchronize ArrayList, 在Java中&#xff0c;有两种同步ArrayList的方法&#xff0c; With the help of synchronizedList() method 借助syncedList()方法 With the help of CopyOnWriteArrayList&l…

十一、决策树和随机森林

这门课和另一门课内容都差不多&#xff0c;可以参考七、决策树算法和集成算法该篇博文。 一、决策树相关概念 逻辑回归本质 逻辑回归&#xff1a;线性有监督分类模型。常用求解二分类问题&#xff0c;要么是A类别要么是B类别&#xff0c;一般会以0.5作为划分阈值&#xff0c…

【C++grammar】继承与构造

目录1.继承1、Inheritance (继承)2、避免一个类被继承&#xff08; C11 &#xff09;3、继承实例4、完整代码5、继承的优缺点是什么?2.继承中的构造函数1、 派生类继承的成员2、调用基类构造函数3.继承中的默认构造函数1、基类的无参构造函数2、由编译器自动生成的基类构造函数…

C语言预处理

所谓预处理是指在进行编译的第一遍扫描(词法扫描和语法分析)之前所作的工作。预处理是&#xff23;语言的一个重要功能&#xff0c; 它由预处理程序负责完成。当对一个源文件进行编译时&#xff0c; 系统将自动引用预处理程序对源程序中的预处理部分作处理&#xff0c; 处理完毕…

(转)将cocos2dx项目从VS移植到Eclipse

本文转自:http://www.cnblogs.com/Z-XML/p/3349518.html 引言&#xff1a;我们使用cocos2d-x引擎制作了一款飞行射击游戏&#xff0c;其中创新性地融入了手势识别功能。但是我们在移植过程中遇到了很多的问题&#xff0c;同时也发现网上的资料少而不全。所以在项目行将结束的时…

十二、聚类算法——相似度测量

两套学习资料都类似&#xff0c;可参考聚类算法实战 一、聚类 聚类&#xff1a;物以类聚&#xff0c;人以群分&#xff0c;是无监督学习中的一种。 没有y&#xff0c;只有x&#xff0c;把不同的x根据相似度自动的聚成好多堆儿 本质上&#xff0c;N个样本&#xff0c;映射到K个…

操作系统磁盘调度_磁盘调度| 操作系统

操作系统磁盘调度磁盘调度 (Disk Scheduling) One of the major duties of the operating is that, to use the hardware orderly and accurately. For disk drives, it has a duty of having a fast access time and disk bandwidth. Generally, bandwidth is the total numbe…

leetcode 344. 反转字符串 541. 反转字符串 II 双指针解

目录leetcode 344.反转字符串1、题目2、思考leetcode 541. 反转字符串 II1、题目2、思考leetcode 344.反转字符串 1、题目 2、思考 典型的双指针解法&#xff1a; 一个从前往后&#xff0c;一个从后往前&#xff0c;指针对应的交换即可。 class Solution { public:void reve…

关于银联在线支付和短彩信接口的开发——总结

9月份开始做用二维码做闭环的一个在线订购景区门票的项目&#xff0c;其中这样做是很好的&#xff0c;用二维码连接了线上与线下的交易和兑券。银联在线支付接口&#xff08;asp.net cs&#xff09;做的很好&#xff0c;方便调用开发。就是处理回值的时候得找个更好的方法才能显…

十三、聚类算法

六、聚类算法实战 一、聚类 聚类是一种无监督的机器学习任务&#xff0c;可以自动将数据划分为类cluster&#xff0c;因此聚类分组不需要提前被告知所划分的组应该是什么样子的。因为我们甚至可能都不知道我们在寻找什么&#xff0c;所以聚类是用于知识发现而不是预测。 聚类…

pl/sql中的赋值运算符_如何在SQL中使用AND / OR运算符?

pl/sql中的赋值运算符Basically, AND / OR operator is used to retrieving the record from the database. If we give more than one conditions by using AND Operator, then it retrieves the data from the database when both the conditions are true. And if we use OR…

【C++grammar】名字隐藏与重定义

目录1、继承中的名字隐藏1.基类同名函数被隐藏的现象描述2.问题理解3.避免现象2、重定义1.现象描述2.重定义与重载的区别3.能否使用 using 将基类成员引入到派生类定义中1、继承中的名字隐藏 1.基类同名函数被隐藏的现象描述 在学习变量作用域的时候知道&#xff0c;全局变量…