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

基于S5PV210处理器的嵌入式开发完全攻略

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

基于S5PV210处理器的嵌入式开发完全攻略

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

《基于S5PV210处理器的嵌入式开发完全攻略》有如下特点:
1.填补空白、技术新颖。首部介绍S5PV210裸机开发的著作。
2.内容实用、讲解攻略。涉及基于S5PV210处理器的嵌入式Linux ARM处理器开发、Android开发的基本概念、基本流程和方法,并有配套的实例解析。
3.实例引导、激发兴趣。精心设计的一些编程实例以及精彩的文字讲解,激发读者的学习兴趣,轻轻松松地学会在Linux环境中进行嵌入式开发和Android应用程序开发。
Content Description

《基于S5PV210处理器的嵌入式开发完全攻略》基于S5PV210处理器的开发平台,深入浅出地介绍了嵌入式Linux裸机开发和Android应用程序开发完全攻略。《基于S5PV210处理器的嵌入式开发完全攻略》分为上下两篇,分别为嵌入式ARM Linux裸机开发初体验和Android应用开发连连看,详细介绍了ARM嵌入式开发的基础知识以及典型的开发实例讲解;并结合典型的实例和精彩的语言,一步步激发读者的学习兴趣,使读者轻轻松松地学会在Linux环境中进行嵌入式开发和Android应用程序开发。
《基于S5PV210处理器的嵌入式开发完全攻略》内容新颖、实用性强,可供从事嵌入式开发的技术人员学习使用,也可作为高等院校相关专业的师生学习使用。
Catalogue

第一篇 嵌入式ARM Linux裸机开发初体验
第1章 S5PV210处理器的前世今生
1.1 数据类型
1.2 处理器状态
1.3 存储器格式
1.4 工作模式
1.5 寄存器介绍
1.5.1 堆栈指针寄存器R13和链接寄存器R14
1.5.2 程序计数器R15
1.5.3 程序状态寄存器
1.6 存储器映射
1.6.1 S5PV210处理器的地址空间
1.6.2 S5PV210处理器的存储器地址映射
1.7 天嵌TQ210开发板硬件资源概述
1.8 本章小结

第2章 搭建嵌入式交叉编译环境
2.1 交叉编译简介
2.2 在主机上构建嵌入式Linux开发环境
2.2.1 VMware Workstation的安装
2.2.2 Ubuntu12.04的安装
2.3 主机与虚拟机之间文件传输方法的介绍
2.4 交叉编译器的安装
2.5 Windows环境下远程登录工具 SecureCRT 的安装
2.6 S5PV210程序烧写方法概述
2.6.1 使用SD卡方式烧写及SD启动卡的制作方法
2.6.2 使用U-Boot方式烧写程序
2.7 本章小结

第3章 ARM指令集及汇编语言编程介绍
3.1 ARM指令集介绍
3.1.1 ARM指令集
3.1.2 ARM寻址方式
3.1.3 GNU ARM伪操作和伪指令介绍
3.2 GNU ARM汇编程序编程规范
3.2.1 GNU ARM汇编程序基本结构
3.2.2 GNU ARM汇编程序中的标号
3.2.3 GNU ARM汇编程序中的段
3.2.4 GNU ARM汇编程序中的入口点
3.2.5 GNU ARM汇编程序中的宏定义
3.3 常用汇编语言程序子模块实例分析
3.3.1 特殊功能寄存器的访问
3.3.2 内存数据搬移
3.3.3 批量加载与存储
3.3.4 堆栈操作
3.3.5 实现查表功能
3.4 GNU交叉编译工具链简介
3.4.1 arm-linux-gcc编译器
3.4.2 arm-linux-ld链接器
3.4.3 arm-linux-objcopy格式转换工具
3.4.4 arm-linux-objdump工具
3.5 Makefile简介
3.5.1 Makefile规则和命令
3.5.2 Makefile变量
3.5.3 Makefile内嵌函数
3.6 本章小结

第4章 传递C语言的正能量
4.1 数据类型基础
4.1.1 用typedef和#define定义类型
4.1.2 用signed和unsigned修饰数据类型
4.1.3 volatile和强制类型转换
4.2 深入理解位运算符和位运算
4.2.1 按位与运算符(&)
4.2.2 按位或运算符(|)
4.2.3 按位取反运算符(~)
4.2.4 左移和右移运算符(<<)、(>>)
4.2.5 位运算应用实例分析
4.3 防止文件重复包含技巧
4.4 本章小结

第5章 ARM汇编与C语言混合编程的那些事儿
5.1 一个混合编程实例的实现
5.2 APCS规则概述
5.2.1 寄存器的使用
5.2.2 参数传递
5.2.3 函数的返回值
5.3 本章小结

第6章 点亮神奇的流水灯
6.1 S5PV210处理器GPIO接口概述
6.1.1 GPIO的结构简介
6.1.2 GPIO的操作方法
6.1.3 GPIO应用实例
6.2 点亮LED流水灯
6.2.1 LED硬件电路分析
6.2.2 新建一个LED流水灯工程
6.2.3 代码编写与详解
6.2.4 编写Makefile文件
6.2.5 编译链接LED流水灯程序
6.2.6 下载可执行程序到开发板运行
6.3 让TQ210开发板发出声音
6.3.1 蜂鸣器硬件电路分析
6.3.2 代码编写与详解
6.3.3 蜂鸣器的Makefile文件
6.3.4 编译、链接蜂鸣器源程序
6.3.5 下载、测试蜂鸣器实验可执行程序
6.4 本章小结

第7章 探究时钟滴答的奥秘
7.1 S5PV210处理器时钟体系结构概述
7.1.1 S5PV210处理器的顶层时钟
7.1.2 各类时钟频率之间的关系
7.2 PLL的配置及时钟初始化
7.2.1 APLL和MPLL的相关寄存器
7.2.2 与时钟相关的其他寄存器及初始化流程
7.2.3 时钟初始化应用实例
7.3 PWM定时器的原理及应用
7.3.1 PWM定时器概述
7.3.2 PWM定时器相关寄存器
7.3.3 PWM定时器的操作方法
7.3.4 PWM定时器应用实例
7.4 PWM定时器拓展实验-蜂鸣器实验
7.5 本章小结

第8章 玩转UART
8.1 UART概述
8.2 UART的操作
8.3 UART的工作模式
8.4 UART的相关寄存器
8.5 UART接口应用实例
8.5.1 UART接口硬件电路分析
8.5.2 UART的操作方法与步骤
8.5.3 UART程序设计与代码详解
8.5.4 UART实例测试
8.6 本章小结

第9章 挑战启动流程
9.1 S5PV210处理器启动流程概述
9.1.1 启动流程的3部曲
9.1.2 安全启动(Secure Booting)
9.2 深入理解S5PV210处理器的启动流程
9.2.1 启动设备的选择
9.2.2 S5PV210处理器的启动流程图
9.2.3 BL1阶段代码的结构
9.2.4 BL1头部信息的制作工具
9.2.5 启动过程中的内存映射
9.3 本章小结

第二篇 Android应用开发连连看
第10章 传说中的Android
10.1 什么是Android
10.2 Android历史
10.3 Android开发介绍
10.4 Android初体验
10.5 本章小结

第11章 Android开发平台搭建
11.1 操作系统平台
11.2 软件安装
11.2.1 JDK安装
11.2.2 Eclipse、Android SDK安装
11.2.3 开发平台测试
11.3 本章小结

第12章 第一个Android应用程序
12.1 Hello World项目分析
12.1.1 新建工程
12.1.2 编译运行
12.1.3 导入工程
12.1.4 程序实现
12.2 程序调试技巧
12.2.1 设置断点
12.2.2 单步执行
12.2.3 查看变量
12.2.4 下载到TQ210开发板
12.3 本章小结

第13章 Android基本组件大串烧
13.1 文本框(TextView)
13.1.1 实例编程实现
13.1.2 实例演示
13.2 编辑框(EditText)
13.2.1 实例编程实现
13.2.2 实例演示
13.3 按钮(Button)
13.3.1 实例编程实现
13.3.2 实例演示
13.3.3 Button扩展实验-消息响应
13.4 进度条
13.4.1 实例编程实现
13.4.2 实例演示
13.5 Android进阶-Intent和Activity
13.5.1 实例编程实现
13.5.2 实例演示
参考文献

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