A. 急急急急!!!单片机外文翻译
单片机论文
--------------------------------------------------------------------------------
文:admin 发表时间2008-9-26 11:29:00
单片机论文:单片机是一种嵌入式系统仿真方法,通过一种特殊设计的指令集仿真器ISS将软件调试器软件Keil uVision2和硬件语言仿真器软件Modelsim连接起来,实现了软件和硬件的同步仿真。
关键词:BFM,TCL,Verilog,Vhdl,PLI,Modelsim,Keil uVision2,ISS,TFTP,HTTP,虚拟网卡,Sniffer,SMART MEDIA,DMA,MAC,SRAM,CPLD
缩略词解释:
BFM:总线功能模块。在HDL硬件语言仿真中,BFM完成抽象描述数据和具体的时序信号之间的转换。
PLI:Verilog编程语言接口,是C语言模块和Verilog语言模块之间交换数据的接口定义。
TCL:字面意思是工具命令语言,是一种解释执行语言,流行EDA软件一般都集成有TCL。使用TCL用户可以编写控制EDA工具的脚本程序,实现工具操作自动化。
ISS:CPU指令集仿真器,可以执行CPU的机器码。
TFTP:简单文件传输协议,Windows的tftp.exe既是该协议的客户端实现。
SMART MEDIA:一种存储卡,常用于数码相机、MP3。
DMA:直接内存访问。用于外部设备之间高速数据转移。
MAC:媒体接入控制器。本文中是指网卡芯片。
前言
传统的嵌入式系统中,设计周期、硬件和软件的开发是分开进行的,并在硬件完成后才将系统集成在一起,很多情况下,硬件完成后才开始进行实时软件和整体调试。软硬件联合仿真是一种在物理原型可用前,能尽早开始调试程序的技术。
软硬件联合仿真有可能使软件设计工程师在设计早期着手调试,而采用传统的方法,设计工程师直到硬件设计完成才能进行除错处理。有些软件可在没有硬件支持的情况下完成任务的编码,如不涉及到硬件的算法。与硬件相互作用的编码在获得硬件之前编写,但只有在硬件上运行后,才能真正对编码进行调试。通过采用软硬件联合仿真技术,可在设计早期开始这一设计调试过程。由于软件的开发通常在系统开发的后段完成,在设计周期中较早的开始调试有可能将使这一项目提早完成,该技术会降低首次将硬件和软件连接在一起时出现意外而致使项目延期完成所造成的风险。
在取得物理原型前,采用软硬件联合仿真技术对硬件和软件之间的接口进行验证,将使你不会花太多的时间在后期系统调试上。当你确实拿到物理原型开始在上面跑软件的时候,你会发现经过测试的软件部分将会正常工作,这会节省项目后期的大量时间及努力。
软硬件联合仿真系统由一个硬件执行环境和一个软件执行环境组成,通常软件环境和硬件环境都有自己的除错和控制界面,软件通过一系列由处理器启动的总线周期与硬件的交互作用。本文以一个Mini Web卡的开发介绍一种软硬件联合仿真系统。
该方案的核心是采用一个51单片机仿真引擎GoldBull ISS51(以下简称ISS51),ISS51是51单片机开发环境Keil uVision2的一个插件,ISS51具有连接Keil和硬件仿真环境Modelsim的接口,可以实现软硬件同步仿真。在该系统中,Keil作为软件调试界面,Modelsim作为硬件仿真和调试界面,ISS51负责软件执行、监控软件断点、单步执行、内存和寄存器数据返回给Keil、CPU总线时序产生和捕获、内部功能模块(如定时器,串口)的运行等功能。
Mini Web卡介绍
Mini Web卡是一个运行在单片机上的Web服务器,提供网口连接,有大容量文件系统,提供TFTP和HTTP服务。尽管软件系统比较复杂,但优化编译后,执行代码还不足25K,为后续升级留下了足够空间。51CPU采用SST89系列,这种CPU具有ISP功能,可以通过RS232串口,直接将目标码下载到CPU。
DMA控制逻辑是一个可编程逻辑器件,采用的是ALTERA的CPLD EPM240,主要功能是实现外围器件之间的DMA传递。因为51CPU进行IO访问是很低效的,需要24个时钟周期才能进行一次IO访问,在外围设备之间转移数据则需要更多的时钟周期,使用DMA控制逻辑可以达到3个时钟周期就能转移一个字节。本系统中处理多种网络协议,需要大量报文收发和文件系统访问,采用DMA可以极大地提高51单片机的数据处理速度。DMA通道主要有MAC芯片与RAM之间的数据块转移,SMART MEDIA和RAM之间的数据块转移。
网卡芯片采用的是AX88796,主要的优点是可以和51CPU方便地接口;支持100M以太网,速度高;有较大的接收报文缓存,能够平滑网络流量,减少因51CPU处理速度慢导致的报文丢弃和重发。
SMART MEDIA是一个移动存储卡,主要用于存储文件,Mini Web卡支持8M到256M的SMD卡。
文件系统是Mini Web卡的新开发模块,文件系统的测试主要通过TFTP来进行,为此Mini Web卡上的TFTP服务程序进行了特殊设计,支持格式化SMART MEDIA,获取剩余空间,获取文件名列表,上传、下载和删除文件。
软硬件联合仿真的必要性:
Mini Web卡软件模块多,软件开发风险较大。软件对硬件的依赖较强,FLASH存储器的访问驱动、网卡驱动、DMA驱动,需要软硬件协同调试。
文件系统的开发,在仿真环境下更容易和快捷。比如在仿真结束时,可以将SMART MEDIA仿真模型中的数据倒换到磁盘文件中,在仿真开始时,将磁盘文件中的数据加载到SMART MEDIA仿真模型中,在定位文件系统的问题时,这一个功能很有用。
采用软硬件联合仿真,便于系统前期设计。51单片机的外部RAM访问效率较低,内存拷贝、外部器件之间的数据块转移很浪费时间。将大量数据的拷贝操作或数据块校验、比较操作在CPLD内实现,可以大大改进51单片机处理数据的能力。通过软硬件联合仿真,可以评估CPLD处理数据对性能的改进。
Mini Web卡软硬件联合仿真系统:
软硬件联合仿真主要解决的问题是系统功能设计与验证
,它不解决电源、滤波电容、总线电平兼容问题。
做系统仿真,首先要对硬件系统建模。我们关注的是系统设计的正确性和可执行性。
系统中的串口只是用来支持ISP下载软件,软件部分没有对串口做任何操作,所以系统仿真可以不必考虑。
网卡芯片AX88796,厂商没有提供仿真模型。它与CPU的接口符合ISA接口标准,软件对AX88796的操作是根据NE2000标准网卡芯片设计的,由此我们建立了一个网卡芯片的仿真模型。我们设计了一个MAC BFM来仿真网卡芯片的ISA接口,NE2000定义的寄存器在C模型中实现,MAC BFM与NE2000寄存器C模型通过PLI接****换数据。
SRAM仿真模型是很容易获取的,很多器件生产商都提供Verilog仿真模型,但器件生产商提供的Verilog仿真模型都包含复杂的延时控制代码,这会影响仿真速度。根据经验,我们可以确保SRAM在单板设计中被正确应用,不会产生时序问题,所以我们可以采用一个简化的SRAM仿真模型,这是我们自己设计的,有效代码只有十几行。
51CPU BFM 负责单片机管脚时序的产生和捕获。51CPU BFM是与ISS51紧密捆绑的,由ISS51安装SMART MEDIA是三星公司提供的仿真模型,我们使用的也是三星公司的同类型存储卡。该模型可以用于验证软件操作SMART MEDIA的正确性和DMA Controller的接口时序。
DMA Controller是Mini Web卡硬件开发的一部分,将逻辑设计代码应用于仿真,既能检测逻辑设计的正确性,又能使整个仿真系统得以正常运转。
将上述硬件模型连接起来,产生下图所示硬件系统模型图:
图2. Mini Web卡硬件模块电路图
图2中U11为SMART MEDIA仿真模型,U4为DMA Controller模型。
虚拟网卡
做系统仿真,必须输入来自真实世界的激励,并将仿真系统的输出传递到真实世界。即便是不能连接到真实世界,也应该提供模拟真实世界的输入,并对仿真系统的输出进行检测和分析。
对于Mini Web卡来说,它和真实环境是通过网口连接的。使用虚拟网卡技术,能够将图3中的MAC C Model与虚拟网卡进行通讯。
对于运行在Windows系统上的应用程序来说,它并不知道网卡是虚拟的还是真实的,应用程序通过虚拟网卡收发数据,事实上是与仿真系统在进行网络通信。
这样就可以使用TFTP向Mini Web卡仿真系统传递网页文件,使用IE浏览Mini Web卡仿真系统中的网页,Mini Web卡的所有功能都能够被检验。
使用网络臭探器Sniffer可以监控虚拟网卡的报文流,方便协议调试。
仿真加速技术
软硬件联合仿真,影响仿真速度的瓶颈在HDL代码部分的仿真。如果不设法提高HDL代码部分的仿真速度,软件调试就非常低效。
提高硬件仿真速度的方法之一是软件硬件仿真采用事件同步,只在CPU访问IO时保持软件和硬件是同步的。
仿真加速方法之二是硬件仿真系统时钟休眠。对于Mini Web卡来说,只有DMA Controller是受时钟控制的,软件没有操作DMA Controller的期间,DMA Controller的运作是毫无意义的,所以可以在非DMA操作期间,对时钟进行休眠;ISS51在每次IO访问时,给出与上次IO访问的时间差,这个时间差经过处理可以作为时钟休眠的时间段。如果ISS51连续进行IO访问,就不会产生时钟休眠了。DMA Controller工作于查询方式,可以采用时钟休眠技术,而不会导致仿真与真实结果的不一致。方法之三是,缩短SMART MEDIA仿真模型中的一些长延时的时间参数。因为在等待SMART MEDIA进入就绪状态时,CPU必须连续查询IO,影响仿真速度。我们主要用于软件功能验证,这种修改也是可以接受的。
方法之四,在软件设计上,谨慎使用外部中断,因为一旦中断启动,ISS51需要在每个机器周期查询是否有中断信号,导致软件仿真和硬件仿真在每个指令上都进行同步,影响仿真速度。如果一定要使用外部中断,建议用C模型代替Verilog模型,这样可不影响仿真速度;或者由用户根据外部模块产生外部中断的时机,使用ISS51的控制命令,在恰当时刻使能ISS在一个普通PC (CPU为AMD速龙1000,SDRM512M 133),运行Mini Web卡仿真系统,使用PING命令测试Mini Web卡仿真系统的响应速度:
Reply from 10.10.112.76: bytes=32 time=64ms TTL=128
使用IE打开Mini Web卡仿真系统中的网页文件,感觉和拨号上网的速度差不太多。创建多个TFTP连接,同时向仿真系统传递或下载网页文件,同时使用IE进行网页浏览,都无响应中断现象出现。
总结
使用软硬件联合仿真,Mini Web卡不需要硬件就能进行全部功能的仿真,增强了系统设计成功的信心。软硬件联合仿真方便系统设计调整,可以在设计前期评估性能,方便软件和硬件的debug,是一个值得推广的技术。
已经发你邮箱了
B. 单片机的外文翻译
你可以上一些电子论文网看看,我这里给你一点参考:
传统电子安全报警系统主要是通过传感器自动检测,产生报警信号,从现场发出报警信号或通过专门电缆近距离报警,从而引起人们的警觉。通过多年的研究和发展,现在的报警器可以说是门类众多。由于报警器的飞速发展和社会各个领域的急切需要,能应用的领域越来越多,特别是在民用领域更是急速发展。
近年来,红外线报警器已经成为报警领域的一个热点,由于其采用的是不可见的红外线探测,所以具有隐蔽性好、安全等特点。红外线传感器按机理不同可以分为光探测型和热探测型。光探测传感器是利用光子效应的红外探测器。这类传感器响应速度快、灵敏度高、检测特性好,但需要冷却,使用不方便。而且器件的检测灵敏度与红外波长有关。热探测传感器是利用热释电效应的红外探测器。在接收到目标的红外辐射后温度升高,温度的升高又引起传感器内部某些物理量的变化,通过检测物理量的变化来确定红外线辐射。这类传感器在室温条件下工作,检测灵敏度也很高,响应速度也很快,而且与红外线辐射波长无关,可探测功率只受背景辐射的限制,应用很方便。本文设计的是被动式热释电红外探测器。文 中主要论述了热释电的原理、热释电探测器的特性、BISS0001传感信号处理器、555定时器组成的多谐振荡报警电路等内容。最后设计完成了热释电红外探测报警器的硬件电路。
随着现代家庭用火、用电量的增加,家庭火灾发生的频率越来越高。家庭火灾一旦发生,很容易出现扑救不及时、灭火器材缺乏及在场人惊慌失措、逃生迟缓等不利因素,最终导致重大生命财产损失。探讨家庭火灾的特点及防火对策, 对于预防家庭火灾,减少火灾损失具有现实意义 在现代城市家庭里,许多人因不懂家庭安全常识引起火灾事故,使好端端的幸福家庭转眼间毁于一旦,有的导致家破人亡,而且一旦发生居民家庭火灾,处置不当、报警迟缓,是造成人员受害的原因。人们应该积极了解家庭火灾的主要起因,掌握防止发生火灾的知识和万一发生火灾时保护自己的方法,及时消除隐患。 英国每年发生50000起以上的严重家庭火灾,其中大部分火灾造成人员伤亡和重大的家庭财产损失,有的还连累左邻右舍,火灾损失更加惨重。在调查火灾起因的时候,绝大多数发生火灾家庭的当事人说,以前总觉得火灾是人家的事情,与自己离得很远,没有想到这一次竟然会发生在自己的头上。
家庭火灾的主要原因是麻痹大意,没有及时采取预防措施。在我国的一些大中城市,几乎每天都发生家庭火灾,所以防火是每个家庭必须时刻注意的问题。假如能根据您家的实际情况预先采取简单的防火措施,一些悲剧是完全可以避免的。
。
外文: The traditional electron safe alarm system mainly is through thesensor automatic detection, proces the alarm, sends out the alarmfrom the scene or reports to the police through the special electriccable near distance, thus causes people's vigilance. Through manyyears research and the development, the present alarm apparatus maysay is the class is multitudinous. As a result of the alarm apparatusrapid development and the social each domain anxious need, can theapplication domain be more and more many, specially is rapidlydevelops in the civil domain.
In recent years, the infrared alarmapparatus already became reports to the police a domain hot spot,because it used was not the obviously infrared acquisition, thereforehad the hiding to be good, characteristic and so on security. Theinfrared sensor is different according to the mechanism may divideinto the light survey and the hot survey. The light acquisition sensor is uses the photon effect the infraredacquisition aid. This kind of sensor speed of response quick, thesensitivity high, the examination characteristic is good, but needs tocool, uses not conveniently. Moreover the component examinationsensitivity and the infrared wave length concern. The hot acquisitionsensor is uses hotly releases the electricity effect the infraredacquisition aid. After receives the goal the infrared radiationtemperature increment, the temperature elevates causes the sensorinterior certain physical quantities changes, through examinationphysical quantity change definite infrared emission. This kind ofsensor works under the room temperature condition, examinationsensitivity also very high, speed of response also very quick,moreover has nothing to do with with the infrared emission wavelength, may survey the power only to receive the background radiationthe limit, the application is very convenient. This article designs isthe passive form hotly releases the electricity infrared acquisitionaid. In the article mainly elaborated has hotly released theelectricity the principle, hotly releases content and so on manyalarm circuit which the electric detector the characteristic,the BISS0001 signal processor, 555 timers composed. Finallydesigned completes has hotly released the electricity infrareddetection alarm apparatus the hardware electric circuit.
With the modern family use of fire, electricity consumption increases, the frequency of home fires is getting higher and higher. The family of fire, it is easy to fight does not occur promptly, the lack of fire-fighting equipment and the presence of panic-stricken people, to escape unfavorable factors, such as retardation, which eventually led to a significant loss of life and property. Explore the characteristics of the family of fire and fire prevention measures.
For the prevention of domestic fires, recing the fire losses have practical significance .
In the modern urban family, because of lot of people do not understand common sense home security caused by fire, so that the happy family Goog leruined blink of an eye, and some lead to destruction, but the event of household fires, improper disposal, alarm delay is caused so that people should get to know more about the main causes of household fires, master to prevent the fire of knowledge and in case of fire to protect his or her own way, timely elimination of
The United Kingdom each year more than 50000 families of serious fires, most of them fire casualties and significant loss of household assets, and some result in the neighbors, more heavy fire losses. Investigate the causes of fire in time, the vast majority of home fires happen parties said that the fire always feel that things are other people with their own far away, did not think this will happen even in the top of his head.
Home fires are the main reason for negligent not to take timely preventive measures .In some of our large and medium-sized cities, almost every day family fires, fire prevention is so each family must always pay attention to. If your home based on the actual situation in advance to take simple fire prevention measures, a number of tragedies are entirely avoidable.
C. 单片机英语翻译
As the single chip computer, is a typical embedded micro controller (Microcontroller Unit), usually abbreviated as MCU English letters MCU,microcontroller also known as single-chip microcontroller,it is not the completion of a logic function of the chip, but to a computer system integrated into a chip. SCM by the unit, controller, memory, input and output devices,equivalent to a micro-computer (minimum system), andcompared with the single chip computer, the lack ofperipheral equipment. Summary speaking: a chip has become a computer. It has the advantages of small volume, light weight, cheap, for the study, application and development of facilities provided. At the same time,learning to use the MCU is to understand the principle and structure of the computer the best choice. It was first used in instrial control field.
D. 单片机英文怎么写
单片机英文single-chip computer。
重点词汇:single
adj. 单一的,单个的;单身的,未婚的;各自的,分别的;单人的,单人用的;<英>(票)单程的;统一的;由一个部分构成的;(花)单瓣的;唯一的;(酒的)一份
n. 单曲唱片;(板球中的)一分打,(棒球中的)一垒打;单身者,未婚者;<英> 单程票;(旅馆等的)单人房间;单打(比赛);<美,非正式> 一元纸币;(鸣钟术)不同次序鸣钟法;<美>(影剧院的)一张票,一个座位;一份酒
v. 挑选,选出;(棒球)击出一垒打;对(幼苗,幼树)进行间苗;将(铁轨)变成单线;以一垒打使(跑垒)得分
短语
single room单人房 ; 单人间
A Single Man单身男人 ; 单身男子 ; 单身汉
single market统一市场 ; 单一市场
词语辨析
single, virgin, maiden
这组词都有“未婚者,孤身一人”的意思,其区别是:
single指尚未结婚的人,但更多指终生不结婚的人。
virgin通常指未婚者,贞洁未被玷污的人,或指婚烟关系尚未完成者。
maiden与virgin含义相近,但更着重年轻与未婚,或未曾发生过任何两性关系。
E. 单片机英文文献及翻译,2200字左右
Single-Chip Microcomputer
有的时候,也可以用SingleChip来代替
下面链接的第六章有讲单片机Single Chip Microcmputer 第148页开始
http://books.google.co.nz/books?id=AUtTx3TgO7IC&pg=PT41&lpg=PT41&dq=what+is+Single+Chip+Microcomputer&source=web&ots=QQqVentmyy&sig=ZPBVtVXwiQakAtCIXJqzRw_BobE&hl=en&sa=X&oi=book_result&resnum=8&ct=result#PPT41,M1
这是一段中汉对照的。
中文:
单片机是把主要计算机功能部件都集成在一块芯片上的微型计算机。它是一种集计数和多中接口于一体的微控制器,被广泛应用在智能产品和工业自动化上,而51单片机是个单片机中最为典型和最有代表性的一种。
本课题选择89S51为核心控制元件,设计了一个日常生活中用到的电子音乐门铃系统。当功能按键按下,音乐响起,发光二极管随着音乐的节拍进行闪烁,LED显示相应的定时器初值。音乐演奏过程中再次按下按键无效,只有当音乐段结束再次按下才有效。如果是电子音乐门铃在响,按下复位按键就终止,显示初始状态。经过实践证明,本系统运行稳定,具有一定的实用价值。
-------------
翻译:
SCM is a major piece of computer components are integrated into the chip micro-computer. It is a multi-interface and counting on the micro-controller integration, and intelligence procts are widely used in instrial automation. and MCS-51 microcontroller is a typical and representative.
The topics chosen for the 89S51 control of the core components used in the design of a daily electronic music doorbell system. When the function button is pressed, the music sounded and the music beats with light emitting diodes for flickered. Initial corresponding LED timer. Musical process again pressed the button ineffective, and only when pressed again before the end of the music effectively. If the doorbell ring for electronic music, press the button on the rection and termination, showed initial state. Practice has proved that the system is stable and has some practical value.
本设计是以凌阳16位单片机为重心,介绍语音控制在机械手中的应用,实现微型舵机的运作,完成所指定的动作。其中通过凌阳16位单片机输出的脉冲信号来准确的控制机械手的摆动角度,机械手的捏拿动作由电磁铁完成,电磁铁的通断由凌阳16位单片机的I/O口控制,硬件和软件都在具体的实验中证明了其可行性
This design is take insults the positive 16 monolithic integrated circuits as a center of gravity, introced the pronunciation control in manipulator's application, the realization miniature servo operation, completes the movement which assigns. Through insults the pulse signal which the positive 16 monolithic integrated circuits outputs to come the accurate control manipulator to swing the angle, the manipulator pinches takes the movement to complete by the electro-magnet, the electro-magnet passes the legal reason for judgment to insult the positive 16 monolithic integrated circuits I/O control, the hardware and the software all have proven its feasibility in the concrete experiment
F. 单片机缩写的英文全称及中文名称
单片机缩写的英文全称是Microcontrollers,中文名称就是单片机。
单片机又称单片微控制器,它不是完成某一个逻辑功能的芯片,而是把一个计算机系统集成到一个芯片上。相当于一个微型的计算机,和计算机相比,单片机只缺少了I/O设备。
单片机的使用领域已十分广泛,如智能仪表、实时工控、通讯设备、导航系统、家用电器等。各种产品一旦用上了单片机,就能起到使产品升级换代的功效,常在产品名称前冠以形容词——“智能型”,如智能型洗衣机等。
(6)有关单片机外文翻译扩展阅读:
单片机的单机应用的范围:
1、测控系统。 用单片机可以构成各种不太复杂的工业控制系统、自适应控制系统、数据采集系统等, 达到测量与控制的目的。
2、智能仪表。 用单片机改造原有的测量、控制仪表, 促进仪表向数字化、智能化、多功能化、综合化、柔性化方向发展。
3、机电一体化产品。单片机与传统的机械产品相结合, 使传统机械产品结构简化, 控制智能化。
4、智能接口。 在计算机控制系统, 特别是在较大型的工业测、控系统中, 用单片机进行接口的控制与管理, 加之单片机与主机的并行工作, 大大提高了系统的运行速度。
5、智能民用产品。 如在家用电器、玩具、游戏机、声像设备、电子秤、收银机、办公设备、厨房设备等许多产品中, 单片机控制器的引入, 不仅使产品的功能大大增强, 性能得到提高, 而且获得了良好的使用效果。
G. 单片机英文翻译3
Interrupt
中断
The 8048 has interrupt pin INT.
8048有INT中断引脚。
It is used as an active low signal.
它被用作低电平触发。
When enabled,it interrupts the processor.
当被激活时,它使处理器产生中断。
It is disabled after a reset.
在复位后它被禁止。
PSW
程序状态字
The 8048 contains an 8-bit program status word.
8048包含一个8位程序状态字。
It is collection of flip-flops.
它集合了触发器。
Bits 0-3 act as stack pointer.
位0-3作为堆栈指针。
Bit 6 is AC(auxiliary carry),bit 7 is carry flag,bit 4 is for register bank select and bit 5 is user controlled flag.
位6是AC(辅助进位标志),位7是进位标志,位4用作寄存器组选择,位5是用户控制标志。
Program Memory
程序存储器
The term program memory is used with single-chip microcomputers(miccrocontrollers).
术语“程序存储器”与单片机(微控制器)一起使用。
Microcontrollers are used for control applications,instrumentation, appliance control,etc.
微控制器被用作控制应用器件,仪器,电器等。
For such applications program are fixed and they are writen into ROM or EPROM of the microcontroller.
对这些应用器件,程序被固化,并被写入微控制器的ROM或EPROM中。
The memory such as ROM/EPROM of microcontroller which stores program,is called the program memory.
这些微控制器中的用来存储程序的存储器像ROM/EPROM被称作程序存储器。
The 8041,8048,8049,8050,etc contain ROM whereas the 8741,8748,8749 etc.contain EPROM.
8041,8048,8049,8050等包含ROM,而8741,8748,8749等包含EPROM。
The 8035,8039 and 8040 do not contain any program memory,and hence,they work with external memory devices.
8035,8039和8040不包含任何程序存储器,因此,它们通过外部存储设备来工作。
The 8048 contain 1KB ROM,8049 contains 2KB ROM,8050 contains 4KB ROM,8748 contains 1KB EPROM and 8749 contains 2KB EPROM.
8048包含1KB的ROM,8049包含2KB的ROM,8050包含4KB的ROM,8748包含1KB的EPROM,8749包含2KB的EPROM。
H. 单片机的英文全称
“单片机”是我们国人的称呼,即single chip microcomputer (SCM),但国际上的说法应该是Micro Control Unit(MCU),即微控制单元。
单片机是一种集成电路芯片。
单片机是采用超大规模集成电路技术把具有数据处理能力的中央处理器CPU、随机存储器RAM、只读存储器ROM、多种I/O口和中断系统、定时器/计数器等功能。
(可能还包括显示驱动电路、脉宽调制电路、模拟多路转换器、A/D转换器等电路)集成到一块硅片上构成的一个小而完善的微型计算机系统,在工业控制领域广泛应用。从上世纪80年代,由当时的4位、8位单片机,发展到现在的300M的高速单片机。
硬件特征
1、单片机的体积比较小, 内部芯片作为计算机系统,其结构简单,但是功能完善,使用起来十分方便,可以模块化应用。
2、单片机有着较高的集成度,可靠性比较强,即使单片机处于长时间的工作也不会存在故障问题。
3、单片机在应用时低电压、低能耗,是人们在日常生活中的首要选择, 为生产与研发提供便利。
4、单片机对数据的处理能力和运算能力较强,可以在各种环境中应用,且有着较强的控制能力。
I. 有关于单片机的一段外文,求大神翻译下
The hardware design and operation of a batterypowered microcontroller-based data acquisition system (herein referred to as the DAS) for unattended remote measurements are presented. The system was designed around the ST62E20 8-bit microcontroller and applied for solar radiation monitoring. The measurement system uses the SolData silicon-cell pyranometer as the solar radiation sensor. The data from the sensor is collected by means of on-chip A\/D converter and stored in a serial EEPROM until uploaded to a portable computer. Keeping the DAS in a low-power mode, which is only interrupted when measurements are to be taken or when a computer is connected to retrieve the stored data, minimizes power consumption. An on-chip timer provides an interrupt to awaken the system from its low-power wait mode at 10-min intervals to sample and store the data. At the end of each data collection period, the acquired data will be transmitted to the computer through the RS232 serial port for subsequent analysis. Only unprocessed data is stored inEEPROM. Quality control and data analysis is done off-line in the laboratory to minimize system cost, complexity and system downtime. Field tests and comparisons of this measurement system against the standard Eppley precision spectral pyranometer (PSP) have shown a slightly nonlinear correlation and that the accuracy of this measurement system as applied to solar radiation monitoring is fairly good, typically 13 W\/m2.
您要翻译的是不是:translate英 → 中自动检测语言中 → 英英 → 中中 → 日日 → 中英 → 日日 → 英英 → 泰泰 → 英<!--网络翻译APP测试版上线了!-->
翻译结果(英 > 中)复制结果双语对照查看
硬件设计和一个电池供电的基于单片机的数据采集系统的操作(以下简称DAS)无人值守远程测量。设计的st62e208位微控制器应用太阳辐射监测系统。测量系统采用soldata硅电池总日射表为太阳辐射传感器。来自传感器的数据是由一个片上模数转换器和存储在一个串行EEPROM直到上传到一个便携式计算机手段收集。保持系统在低功耗模式,这是唯一的中断时,应采取的措施或当计算机连接到检索存储的数据,最大限度地减少功率消耗。一个片内定时器提供了一个中断唤醒系统从低功耗等待模式在10分钟的时间间隔的采样和存储的数据。在每个数据采集周期结束时,获得的数据将被发送到计算机通过RS232串口用于随后的分析。未加工的数据存储ineeprom。质量控制和数据分析进行离线的实验室来减少系统的成本,复杂性和系统停机时间。现场试验和测量系统的比较标准埃普利精密光谱辐射强度(PSP)都表现出轻微的非线性相关,该测量系统精度的适用于太阳辐射监测是相当不错的,通常13W/平方米。