DAC0832与MCS-51单片机接口:双缓冲连接与波形生成

需积分: 0 6 下载量 190 浏览量 更新于2024-08-09 收藏 5.74MB PDF 举报
"该资源是关于单片机原理与应用的教材,主要讲解了MCS-51系列单片机的使用,包括内部结构、指令系统、C语言程序设计、硬件资源扩展、接口技术和系统设计等内容。书中给出了丰富的实例,包括D/A转换芯片DAC0832的接口实例,强调了双缓冲方式的连接方法以及如何通过单片机生成不同波形。" 在单片机领域,双缓冲方式是一种有效的数据传输机制,特别是在涉及数字到模拟转换(D/A转换)时。例如,DAC0832是一款常用的8位D/A转换芯片,它支持双缓冲模式以确保数据的准确无误传输。在双缓冲模式下,数据传输分为两个步骤:首先,单片机如8051将8位数字量写入输入锁存器;然后,通过控制信号使DAC寄存器导通,将锁存器中的数据传送到D/A转换器进行转换,从而输出模拟信号。 在图7.22和7.23所示的电路中,WR2和XFER接地,ILE接电源,WR1连接单片机的WR引脚,CS连接P2.7。这种配置使得一旦数据写入输入锁存器,转换即开始,转换结果随即通过输出端输出。DAC0832的端口地址被设置为7FFFH。通过三条汇编指令,可以实现数字量到模拟量的转换:首先,将目标地址(7FFFH)加载到DPTR寄存器;其次,将8位数字量放入累加器A;最后,使用MOVX指令将数据写入指定地址,同时启动转换。 D/A转换芯片不仅用于输出控制电压,还可以生成不同类型的波形。例如,通过特定的程序控制,DAC0832可以产生锯齿波、三角波和方波。对于这些波形的生成,需要编写相应的程序段来改变写入D/A转换器的数字序列,从而改变输出的模拟电压形状。书中的例7-9可能就是提供这样的程序段示例,帮助读者理解如何通过单片机接口技术实现这些波形的产生。 这本书"单片机原理与应用及C51程序设计"由唐颖主编,适合本科院校电气信息类专业作为教材或教学参考书,也适用于工程技术人员自学。全书注重实践,通过汇编和C语言的编程实例,提升读者的编程能力和实际应用能力。

翻译 This is Elsevier's new document class for typeset journal articles, elsarticle.cls. It is now accepted for submitted articles, both in Elsevier's electronic submission system and elsewhere. Elsevier's previous document class for typeset articles, elsart.cls, is now over 10 years old. It has been replaced with this newly written document class elsarticle.cls, which has been developed for Elsevier by the leading TeX developer STM Document Engineering Pvt Ltd. elsarticle.cls is based upon the standard LaTeX document class article.cls. It uses natbib.sty for bibliographical references. Bugs and problems with elsarticle.cls may be reported to the developers of the class via elsarticle@stmdocs.in. The file manifest.txt provides a list of the files in the elsarticle bundle. The following are the main files available: - elsarticle.dtx, the dtx file - elsdoc.pdf, the user documentation - elsarticle-template-num.tex, template file for numerical citations - elsarticle-template-harv.tex, template file for name-year citations - elsarticle-template-num-names.tex, template file for numerical citations + new natbib option. Eg. Jones et al. [21] - elsarticle-num.bst, bibliographic style for numerical references - elsarticle-harv.bst, bibliographic style for name-year references - elsarticle-num-names.bst, bibliographic style for numerical referencces + new natbib option for citations. To extract elsarticle.cls from *.dtx: latex elsarticle.ins The documentation file is elsdoc.tex in the contrib directory. To compile it: 1. pdflatex elsdoc 2. pdflatex elsdoc 3. pdflatex elsdoc

314 浏览量