{{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

21世纪高等学校嵌入式系统专业规划教材:嵌入式系统原理及应用教程

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

21世纪高等学校嵌入式系统专业规划教材:嵌入式系统原理及应用教程

{{__(":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

《嵌入式系统原理及应用教程》全面系统地描述了ARM9微处理器的嵌入式系统体系结构,以Samsung公司的S3C2440A控制器为例,着重介绍了ARM9微处理器的结构、开发工具及Linux的程序设计等内容。全书共分4部分: 第1部分(第1章)为理论部分,着重介绍嵌入式系统的概念,包括嵌入式的特点、分类和应用。第2部分(第2~6章)为基础部分,着重介绍ARM9处理器的体系结构、指令系统、寻址方式、指令集; 伪指令、汇编程序设计基础及与C/C++的混合编程; S3C2440A 控制器的结构原理及外围电路的设计方法等。第3部分(第7章)为开发工具部分,着重介绍ADS1.2集成开发环境及嵌入式Linux的软件开发环境的使用。第4部分(第8~10章)为操作系统部分,着重介绍Linux的程序设计。
全书内容由浅入深,结构合理,采用理论与实践相结合的方法。整篇讲解立足点在应用,具有基础理论够用、有针对性、实用性及综合性强等特点。
《嵌入式系统原理及应用教程》不仅适用于高等院校计算机、电子、自动化及机电一体化等相关专业的本科生教材,也适用于从事嵌入式系统研究与开发的技术人员及普通读者参考。
Catalogue

第1章 嵌入式系统概述
1.1 嵌入式系统定义
1.1.1 嵌入式系统的概念
1.1.2 嵌入式系统的特点
1.2 嵌入式系统的发展概述
1.2.1 嵌入式系统的历史与发展
1.2.2 嵌入式系统的功能
1.3 嵌入式系统的硬件和软件特征
1.3.1 嵌入式系统硬件平台
1.3.2 硬件抽象层
1.3.3 嵌入式操作系统
1.4 嵌入式系统的分类
1.5 嵌入式系统的应用
1.6 本章小结
1.7 习题1

第2章 ARM微处理器概述与编程模型
2.1 ARM微处理器概述
2.1.1 ARM微处理器的特点
2.1.2 ARM微处理器系列
2.2 ARM微处理器结构
2.2.1 RISC体系结构
2.2.2 ARM微处理器的寄存器结构
2.2.3 ARM微处理器的指令结构
2.2.4 ARM微处理器的应用选型
2.3 ARM微处理器的工作状态
2.4 ARM体系结构的存储器格式
2.4.1 指令长度及数据类型
2.4.2 存储管理单元
2.5 处理器模式
2.6 寄存器组织
2.6.1 ARM状态下的寄存器组织
2.6.2 Thumb状态下的寄存器组织
2.6.3 程序状态寄存器
2.7 异常
2.7.1 ARM体系结构所支持的异常类型
2.7.2 异常优先级
2.7.3 异常的响应及返回
2.7.4 应用程序中的异常处理
2.8 本章小结
2.9 习题2

第3章 ARM9指令系统
3.1 ARM处理器的寻址方式
3.1.1 寄存器寻址
3.1.2 立即寻址
3.1.3 寄存器间接寻址
3.1.4 变址寻址
3.1.5 寄存器移位寻址
3.1.6 多寄存器寻址
3.1.7 堆栈寻址
3.1.8 相对寻址
3.2 ARM指令集
3.2.1 指令格式
3.2.2 条件码
3.2.3 ARM存储器访问指令
3.2.4 ARM数据处理类指令
3.2.5 ARM分支指令
3.2.6 ARM协处理器指令
3.2.7 ARM软件中断指令
3.3 Thumb指令集
3.4 本章小结
3.5 习题3

第4章 嵌入式程序设计基础
4.1 伪指令
4.1.1 通用伪指令
4.1.2 与ARM指令相关的伪指令
4.1.3 与Thumb指令相关的伪指令
4.2 汇编语言的语句格式
4.2.1 书写格式
4.2.2 汇编语言中表达式和运算符
4.3 汇编程序应用
4.3.1 汇编程序基本结构
4.3.2 子程序调用
4.4 汇编语言与C/C++的混合编程
4.4.1 在C/C++程序中内嵌汇编指令的语法格式
4.4.2 C/C++与汇编语言的混合编程应用
4.5 本章小结
4.6 习题4

第5章 嵌入式内部可编程模块
5.1 存储控制模块
5.1.1 存储器控制器
5.1.2 NANDFlash控制器
5.1.3 存储器实例
5.2 GPIO
5.2.1 端口功能
5.2.2 端口配置寄存器
5.2.3 端口其他寄存器
5.2.4 I/O应用实例
5.3 中断系统
5.3.1 中断优先级
5.3.2 中断控制寄存器
5.3.3 中断编程实例
5.4 DMA
5.4.1 S3C2440A芯片的DMA方式
5.4.2 S3C2440A芯片的DMA寄存器
5.4.3 S3C2440A芯片的DMA实例
5.5 定时部件
5.5.1 看门狗定时器原理及实例
5.5.2 RTC部件
5.5.3 Timer部件
5.5.4 定时部件应用实例
5.6 UART
5.6.1 UART的操作
5.6.2 UART接口寄存器
5.6.3 UART实例
5.7 ADC及触摸屏接口
5.7.1 功能描述
5.7.2 ADC及触摸屏接口特殊寄存器
5.7.3 A/D转换实例
5.8 本章小结
5.9 习题5

第6章 嵌入式接口技术应用
6.1 LCD显示器接口
6.1.1 LCD的控制器
6.1.2 S3C2440A芯片的LCD专用寄存器
6.1.3 S3C2440A芯片LCD寄存器的设置
6.2 I2C总线
6.2.1 S3C2440A的I2C接口
6.2.2 I2C总线接口特殊寄存器
6.2.3 I2C编程举例
6.3 I2S总线
6.3.1 发送接收模式
6.3.2 音频串行接口格式
6.3.3 I2S总线接口特殊寄存器
6.3.4 I2S编程实例
6.4 AC97控制器
6.4.1 AC97控制器操作
6.4.2 AC97控制器特殊寄存器
6.4.3 AC97应用实例
6.5 S3C2440A的摄像头
6.5.1 S3C2440A的摄像头接口
6.5.2 摄像头接口特殊寄存器
6.5.3 摄像头接口应用实例
6.6 本章小结
6.7 习题6

第7章 软件开发环境
7.1 ADS1.2 集成开发环境
7.1.1 使用ADS创建工程
7.1.2 用AXD进行代码调试
7.2 嵌入式Linux的软件开发环境
7.2.1 安装交叉编译环境
7.2.2 嵌入式Linux程序开发工程管理
7.3 本章小结
7.4 习题7

第8章 嵌入式系统BootLoader技术
8.1 BootLoader的基本概念
8.1.1 BootLoader的相关设备和机制
8.1.2 BootLoader的启动过程
8.1.3 BootLoader的操作模式
8.1.4 BootLoader的总体设计
8.2 BootLoader(vivi)的代码分析
8.3 本章小结
8.4 习题8

第9章 嵌入式Linux操作系统移植
9.1 嵌入式Linux基本概念
9.2 嵌入式Linux内核移植
9.2.1 内核修改
9.2.2 内核配置
9.2.3 内核编译
9.3 建立Linux根文件系统
9.4 下载目标文件
9.5 本章小结
9.6 习题9

第10章 嵌入式Linux设备驱动程序开发
10.1 嵌入式Linux驱动程序开发基础
10.1.1 嵌入式Linux设备驱动程序分类
10.1.2 最简单的内核模块
10.2 嵌入式Linux设备驱动重要技术
10.2.1 内存与I/O端口
10.2.2 同步机制
10.2.3 阻塞与非阻塞
10.2.4 时间问题
10.2.5 中断处理
10.3 字符设备驱动程序
10.3.1 字符设备驱动结构
10.3.2 字符设备驱动实例——LED驱动
10.4 网络设备驱动程序
10.4.1 Linux网络设备简介
10.4.2 网络驱动核心数据结构
10.4.3 网络驱动程序分析
10.5 设备驱动实例
10.5.1 ADC设备驱动实例
10.5.2 PWM设备驱动实例
10.5.3 触摸屏设备驱动实例
10.6 本章小结
10.7 习题10

第11章 嵌入式Linux应用程序设计
11.1 嵌入式LinuxC语言应用程序开发基础
11.1.1 编写源程序
11.1.2 交叉编译程序
11.1.3 调试程序
11.2 文件I/O编程
11.2.1 文件I/O操作例程
11.2.2 文件I/O操作API
11.3 网络编程
11.3.1 网络通信基础及例程
11.3.2 网络通信API
11.4 应用实例
11.4.1 ADC应用实例
11.4.2 PWM蜂鸣器控制应用实例
11.4.3 触摸屏应用实例
11.5 本章小结
11.6 习题11
参考文献
Introduction

“嵌入式无处不在”已成为现实。嵌入式系统应用的领域日益广阔,与网络通信、数字家庭、工业控制、国防军事、医疗系统、安防系统、能源系统、交通系统等行业融合正在加深,智能设备终端应用市场的快速发展对嵌入式系统提出了持续需求,使得嵌入式系统产业在前所未有的机遇下快速地发展。因此,系统地开设嵌入式系列课程是必要的,这样就需要合适的配套教材,鉴于这种情况,作者参考了大量国内外教材,结合应用型本科院校的特点,编写了《嵌入式系统原理及应用教程》一书。
全书着眼于“应用”、立足于“工程开发”,具有以下特点。
1. 综合性
嵌入式系统是嵌入式硬件和嵌入式软件的综合体,硬件的设计服务于软件功能,软件的开发也必须考虑硬件资源的有限性。根据嵌入式系统的这一特点,本书采用“ARM9处理器+Linux操作平台+应用程序设计”的介绍方法。
2. 基础性
本书详细地讲解了ARM9处理器的体系结构和编程方法,尤其是举例讲解了指令系统中的指令集及汇编语言与C/C++混合编程的方法,以便读者掌握好底层嵌入式开发的技能。
3. 实用性
本书以S3C2440A芯片和Linux操作系统为例,举例介绍了开发环境的使用与调试方法,详细介绍了嵌入式软件的编程技术。例如介绍AC97音频控制器和触摸屏的设计实例。
4. 针对性
本书是编者几年嵌入式教学的总结。主要是针对应用型本科学生实践性强的特点,在介绍ARM9处理器的原理及结构的同时,注重了各功能模块的应用介绍。
本书系统地介绍了嵌入式系统软硬件的组成、工作原理和设计方法。全书分为4部分,共11章,主要内容和篇章结构安排如下。
第1部分为理论部分,由第1章组成。介绍嵌入式系统的基本概念,包括嵌入式系统的定义、组成、特点、分类和应用领域。

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