{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

单片机原理及其接口技术(第3版)(附CD-ROM光盘1张)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

单片机原理及其接口技术(第3版)(附CD-ROM光盘1张)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《单片机原理及其接口技术(第3版)》以MCS-51为主线,系统地论述了单片机的组成原理、指令系统和汇编语言程序设计、中断系统、并行和串行I/O接口以及MCS一51对A/D和D/A的接口等问题,并在此基础上讨论了单片机应用系统的设计。全书共分10章,第1章留给学生自学和查考,第2~9章为必须讲授的章节,第10章可根据情况选讲。
《单片机原理及其接口技术(第3版)》继承和发扬了《单片机原理及其接口技术(第2版)》的风格和特色,并增加了补码运算的溢出判断和LM331的原理和应用等新内容,删去了一些旧内容。全书内容全面、自成体系、结构紧凑、前后呼应、衔接自然、语言通俗且行文流畅。为便于读者学习,作者还专门制作了与《单片机原理及其接口技术(第3版)(附CD-ROM光盘1张)》配套的CAI教学光盘。
《单片机原理及其接口技术(第3版)》既可作为高等院校教材,也可作为广大科技人员的自学参考书。
Catalogue

第1章 微型计算机基础
1.1 计算机中的数制及数的转换
1.1.1 计算机中的数制
1.1.2 计算机中数制间数的转换
1.2 计算机中数的表示方法
1.2.1 定点机中数的表示方法
1.2.2 浮点机中数的表示方法
1.2.3 二进制数的运算
1.3 计算机中数的表示形式
1.3.1 机器数的原码、反码和补码
1.3.2 补码的加减运算
1.3.3 补码运算的正确性及变形码
1.4 计算机中数和字符的编码
1.4.1 BCD码和ASCII码
1.4.2 汉字的编码
1.4.3 校验码编码
1.5 单片微型计算机概述
1.5.1 单片机的内部结构
1.5.2 单片机的基本原理
1.5.3 单片机的分类及发展
1.5.4 典型单片机性能概览
1.5.5 单片机在工业控制中的应用
习题与思考题

第2章 MCS-51单片机结构与时序
2.1 MCS-51单片机内部结构
2.1.1 CPU结构
2.1.2 存储器结构
2.1.3 I/O端口
2.1.4 定时器/计数器
2.1.5 中断系统
2.2 MCS-51单片机引脚功能
2.2.1 MCS-51单片机引脚及其功能
2.2.2 8031对片外存储器的连接
2.3 MCS-51单片机工作方式
2.3.1 复位方式
2.3.2 程序执行方式
2.3.3 节电工作方式
2.3.4 编程和校验方式
2.4 MCS-51单片机时序
2.4.1 机器周期和指令周期
2.4.2 MCS-51指令的取指/执行时序
2.4.3 访问片外ROM/RAM的指令时序
习题与思考题

第3章 MCS-51单片机指令系统
3.1 概述
3.1.1 指令格式
3.1.2 指令的三种表示形式
3.1.3 指令的字节数
3.1.4 指令的分类
3.1.5 指令系统综述
3.2 寻址方式
3.2.1 寄存器寻址
3.2.2 直接寻址
3.2.3 立即寻址
3.2.4 寄存器间址
3.2.5 变址寻址
3.2.6 相对寻址
3.2.7 位寻址
3.3 数据传送指令
3.3.1 内部数据传送指令(15条)
3.3.2 外部数据传送指令(7条)
3.3.3 堆栈操作指令(2条)
3.3.4 数据交换指令(4条)
3.4 算术与逻辑运算和移位指令
3.4.1 算术运算指令(24条)
3.4.2 逻辑运算指令(20条)
3.4.3 移位指令(5条)
3.5 控制转移和位操作指令
3.5.1 控制转移指令(17条)
3.5.2 位操作指令(17条)
习题与思考题

第4章 汇编语言程序设计
4.1 汇编语言的构成
4.1.1 程序设计语言
4.1.2 汇编语言格式
4.1.3 汇编语言构成
4.2 汇编语言源程序的设计与汇编
4.2.1 汇编语言源程序的设计步骤
4.2.2 汇编语言源程序的汇编
4.3 简单程序与分支程序设计
4.3.1 简单程序设计
4.3.2 分支程序设计
4.4 循环与查表程序设计
4.4.1 循环程序设计
4.4.2 查表程序设计
4.5 子程序与运算程序设计
4.5.1 子程序设计
4.5.2 运算程序设计
习题与思考题

第5章 半导体存储器
5.1 半导体存储器基础
5.1.1 半导体存储器的分类和作用
5.1.2 半导体存储器的技术指标
5.1.3 半导体存储器的现状和前景
5.1.4 半导体存储器的基本结构
5.2 只读存储器
5.2.1 掩模ROM原理
5.2.2 PROM原理
5.2.3 EPROM原理
5.2.4 ROM举例
5.3 随机存取存储器
5.3.1 静态RAM基本存储电路
5.3.2 动态RAM基本存储电路
5.3.3 RAM举例
5.4 MCS-51和外部存储器的连接
5.4.1 连接中应考虑的问题
5.4.2 MCS-51对外部ROM的连接
5.4.3 MCS-51对外部RAM的连接
5.4.4 MCS-51对外部存储器的连接
习题与思考题

第6章 MCS-51中断系统
6.1 概述
6.1.1 中断的定义和作用
6.1.2 中断源
6.1.3 中断分类
6.1.4 中断嵌套
6.1.5 中断系统功能
6.2 MCS-51的中断系统
6.2.1 MCS-51的中断源和中断标志
6.2.2 MCS-51对中断请求的控制
6.2.3 MCS-51对中断的响应
6.2.4 MCS-51对中断的响应时间
6.2.5 MCS-51对中断请求的撤除
6.2.6 MCS-51中断系统的初始化
6.3 中断控制器8259A
6.3.1 8259内部结构
6.3.2 8259引脚功能
6.3.3 8259命令字
6.3.4 8259工作模式
6.3.5 8259级联
6.4 MCS-51对外部中断源的扩展
6.4.1 借用定时器溢出中断扩展外部中断源
6.4.2 采用查询法扩展外部中断源
6.4.3 采用8259扩展外部中断源
习题与思考题

第7章 并行I/O接口
7.1 概述
7.1.1 I/O接口的作用
7.1.2 外部设备的编址
7.1.3 I/O数据的4种传送方式
7.1.4 I/O接口的类型
……
第8章 MCS-51对A/D和D/A的接口
第9章 MCS-51的串行通信
第10章 单片机应用系统的设计
附录A
附录B
附录C
附录D
参考文献
Book Abstract

电子计算机是一种能对信息进行加工处理的机器,它具有记忆、判断和运算能力,能模仿人类的思维活动,代替人的部分脑力劳动,并能对生产过程实施某种控制,等等。1946年,美国宾夕法尼亚大学研制成世界上第一台计算机ENIAC电子数字积分计算机)以来,电子计算机经历了电子管、晶体管和集成电路三个发展时代,并于1971年进入了第四代。第四代电子计算机通常可以分为巨型机、大型机、中型机、小型机和微型机5类。但以系统结构和基本工作原理来说,微型计算机和其他几类计算机并无本质区别,只是在体积、性能和应用范围方面有所不同。
本章主要介绍微型计算机的基础知识和微型计算机的组成原理,最后论述单片微型计算机的产生、发展和应用,以便为读者学习后续章节打下基础。
1.1 计算机中的数制及数的转换
迄今为止,所有计算机都以二进制形式进行算术运算和逻辑操作,微型计算机也不例外。因此,对于用户在键盘上输入的十进制数字和符号命令,微型计算机必须先把它们转换成二进制形式进行识别、运算和处理,然后再把运算结果还原成十进制数字和符号,并在显示器上显示出来。
虽然上述过程十分烦琐,但都由计算机自动完成。为了使读者最终弄清计算机的这一工作机理,先对计算机中常用的数制和数制间数的转换进行讨论。
1.1.1 计算机中的数制
所谓数制是指数的制式,是人们利用符号计数的一种科学方法。数制是人类在长期的生存斗争和社会实践中逐步形成的。数制有很多种,微型计算机中常用的数制有十进制、二进制、八进制和十六进制等。现对十进制、二进制和十六进制三种数制讨论如下。
1.十进制(Decimal)
十进制是大家很熟悉的进位计数制,它共有0、1、2、3、4、5、6、7、8和9十个数字符号。这十个数字符号又称为“数码”,每个数码在数中最多可有两个值的概念。例如,十进制数45中的数码4,其本身的值为4,但它实际代表的值为40。在数学上,数制中数码的个数定义为基数,故十进制数的基数为10。
十进制是一种科学的计数方法,它所能表示的数的范围很大,可以从无限小到无限大。十进制数的主要特点是:
(1)它有0~9十个不同的数码,这是构成所有十进制数的基本符号。
(2)它是逢10进位的。十进制数在计数过程中,当它的某位计满10时就要向它邻近的高位进一。
Introduction

《单片机原理及其接口技术(第2版)》出版以来,受到了广大读者的好评,也得到了高等院校师生们的肯定,并获得了“全国优秀畅销书奖”的荣誉。为了使单片机课程教学能跟上新的发展形势以及满足教学需要,作者对原书进行了全面审校,并在此基础上加以修订,增加了补码运算的溢出判断以及LM331的原理和应用等新内容,以此奉献给广大读者。
修订后,全书分为10章。第1章是微型计算机基础,供学生自学或查考;第2~4章是指令系统和汇编语言程序设计,用于培养读者的程序设计能力;第5~9章为半导体存储器、中断系统、MCS-51的I/O接口以及MCS-51对A/D和D/A的接口等;第10章为单片机应用系统的设计,主要讲授单片机应用系统前向和后向通道的设计以及单片机应用系统的抗干扰设计等内容。和第2版相比,本书内容更全面,章节安排更趋合理,结构更紧凑,通用性、系统性和实用性更好。
本教材配有CAI教学光盘。光盘中的教学内容共分10章和1个附录,分别与教材中的第1~10章和附录相对应,每章后都有“习题与思考题”的参考答案。在光盘每章后的“习题与思考题”中,还增加了填充题和选择题,并附有相应参考答案。该光盘总揽了教学所需的内容和图形,教师可根据不同层次学生的情况和不同教学要求从中选取适用的教学内容。光盘中还穿插了大量动画来展现指令和程序的执行功能以及硬件电路中的信息流,活泼而又生动,具有创新特色。
在本书编写以及光盘制作和移植过程中,得到了上官剑峰、王梓骁和张世逸等的大力支持和指导,胡芸和胡萍也为本书整理了大量资料。在此对于上述同志以及参与本书出版工作的有关人员表示诚挚谢意。
由于水平所限,书中可能还会存在某些错误和不妥之处,恳请广大读者批评指正。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book