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

电子与嵌入式系统设计译丛:嵌入式软件开发精解

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

电子与嵌入式系统设计译丛:嵌入式软件开发精解

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

随着嵌入式应用领域的拓展,为了针对复杂设备快速开发高效、健壮的嵌入式软件,开发者必须系统地掌握嵌入式系统开发的各个环节。
本书覆盖了所有嵌入式工程师必须掌握的各个关键的主题,包括设计、开发、编程语言(C/C++、UML)、RTOS、网络等。同时,考虑到正在蓬勃发展的Linux和Android,以及多核技术,本书也为读者提供了掌握相关技术必不可少的内容。
Colin Walls在书中分享了他多年的行业工作经验和对嵌入式软件开发的深入理解。内容几乎覆盖了嵌入式开发的整个环节:设计、开发、管理、调试流程、授权以及重用等。对于刚刚开始从事嵌入式软件开发的工程师或有经验的嵌入式软件开发工程师,这些经验对于他们提高开发技能都有很大的帮助。他也在书中提供了很多非常细节的技巧和技术,同时,他也对这些技术进行了缜密阐释。
Author Description

Colin Walls,在电子行业拥有长达30年的工作经验,他大多数工作经历是在和嵌入式软件打交道。他现在供职于Mentor Graphics嵌入式软件部门,主要负责市场工作。在嵌入式的会议和研讨会经常会看到他的身影,他有两本嵌入式方面的著作,并在很多著名的杂志上发表过技术文章。


译者简介

何小庆(Allan He)

何小庆毕业于北京航空航天大学,计算机应用专业硕士,曾在国企和外企工作。创建过嵌入式软件企业和研究中心,后在高校科技期刊兼职、授课和组织嵌入式系统协会和科技沙龙。何小庆较早涉足嵌入式OS领域,有近30年嵌入式系统技术和市场经验。参加过电网自动化系统、数字程控交换机、通信协议软件和智能手机项目开发。出版过多本译著并发表过数十篇文章。目前关注的技术领域:嵌入式OS、物联网和技术创业。


张浩中(Windness Zhang)

本科毕业于中山大学环境工程系,现为北京航空航天大学嵌入式软件专业研究生。本科时自学计算机课程十多门,对智慧环保(地球)、物联网、虚拟现实等相关领域非常感兴趣。先后完成若干Android应用开发项目;熟悉Eclipse插件开发,研究过无线传感器网络定位算法,在C/C++可靠性验证(内存检测)方面有一定深入研究;目前正在导师的指导下,作为项目经理参与商业项目开发。


何灵渊(Lingyuan He)

北京理工大学计算机科学专业本科学生,目前参加双学位项目在美国斯蒂文森理工学院(Stevens Institute of Technology)学习。喜爱编程技术,熟悉C++和Java,有Android应用软件编程经验,参与过实际项目。何灵渊擅长写作、摄影。中学时代就开始在《北京青年报》发表文章,译著《解读云计算》已出版,学习之余不断更新摄影博客和自己的模拟飞行站点。

Catalogue

译者序

前言
第1版前言
网站上的内容
嵌入式软件开发路线图
第1章嵌入式软件
1.1嵌入式应用的影响
1.1.1来自开发的挑战
1.1.2软件复用
1.1.3实时操作系统
1.1.4文件系统
1.1.5USB
1.1.6图形
1.1.7网络
1.1.8小结
1.2嵌入式系统的存储器
1.2.1存储器
1.2.2软件开发面临的挑战
1.2.3所有东西都会出错
1.2.4好的解决方法
1.3存储器架构
1.3.1选项
1.3.2平面单一地址空间存储器
1.3.3分段空间存储器
1.3.4单元切换空间存储器
1.3.5多地址空间存储器
1.3.6虚拟空间存储器
1.3.7高速缓冲存储器
1.3.8存储器管理单元
1.3.9小结
1.4软件是如何影响硬件设计的
1.4.1谁在设计硬件
1.4.2软件主导硬件
1.4.3软硬件的均衡
1.4.4硬件调试
1.4.5自检
1.4.6小结
1.5将软件移植到新处理器架构上
1.5.1特定目标
1.5.2RTOS问题
1.5.3处理器移植和开放标准
1.5.4小结
1.6汽车电子的嵌入式软件
1.6.1概要
1.6.2汽车电子特征
1.6.3编程问题
1.6.4实时操作系统因素
1.6.5小结
1.7芯片设计时如何选择CPU
1.7.1设计复杂度
1.7.2设计复用性
1.7.3存储器架构和保护
1.7.4CPU性能
1.7.5功耗
1.7.6成本
1.7.7软件问题
1.7.8多核SoC
1.7.9小结
1.8USB软件的介绍
1.8.1什么是USB
1.8.2USB外设
1.8.3USB通信
1.8.4USB软件
1.8.5USB和嵌入式系统
1.8.6小结
1.9走向USB 3.0时代
1.9.1概述
1.9.2总线架构
1.9.3线缆和连接器
1.9.4封包路由
1.9.5双向协议流
1.9.6批量流
1.9.7USB 3.0电源管理
1.9.8USB 3.0集线器
1.9.9xHCI:新型主控制器接口
1.9.10USB的未来应用
1.9.11小结
扩展阅读
第2章设计和开发
2.1嵌入式系统软件开发的新兴技术
2.1.1微处理器技术
2.1.2系统架构
2.1.3设计组合性
2.1.4软件内容
2.1.5编程语言
2.1.6软件团队的规模和分布
2.1.7UML和建模
2.1.8关键技术
2.1.9小结
2.2选择开发工具
2.2.1开发工具链
2.2.2编译器特征
2.2.3嵌入式系统的扩展
2.2.4优化
2.2.5构建工具:简要介绍关键问题
2.2.6调试
2.2.7调试工具:关键问题的回顾
2.2.8标准和开发工具集成
2.2.9选择的暗示
2.2.10小结
2.3Eclipse:集成嵌入式开发工具
2.3.1介绍
2.3.2Eclipse平台的思想
2.3.3平台
2.3.4使用Eclipse进行嵌入式开发
2.3.5小结
2.4跨越RTOS界限的开发系统
2.4.1标准化是解决之道
2.4.2Eclipse解决方案
2.4.3Eclipse插件
2.4.4Eclipse授权
2.4.5Eclipse用户优势
2.4.6视图
2.4.7非嵌入式插件
2.5嵌入式软件和UML
2.5.1为什么要用UML建模
2.5.2从架构中分离应用
2.5.3xtUML代码生成
2.5.4小结
2.6用户界面开发
2.6.1用户界面的多样性
2.6.2用户界面的实现
2.6.3一个合理化的UI解决方案
2.6.4小结
2.7软件和功耗
2.7.1介绍
2.7.2软件问题
2.7.3软件中的功耗控制
2.7.4多核
2.7.5硬件问题
2.7.6虚拟编程
2.7.7小结
第3章编程
3.1为特殊存储器编程
3.1.1特殊存储器
3.1.2非易失性RAM
3.1.3共享存储器
3.1.4小结
3.2嵌入式系统中的自检
3.2.1存储器测试
3.2.2I/O设备
3.2.3多线程问题
3.2.4看门狗
3.2.5自检失败
3.2.6最后一些要点
3.3命令行解释器
3.3.1嵌入式系统的诊断功能
3.3.2让嵌入式系统开始运行
3.3.3命令行解释器--需求
3.3.4设计命令行解释器
3.3.5命令行解释器的实现
3.3.6命令行解释器的原型代码
3.3.7小结
3.4嵌入式软件应用:交通信号灯
3.4.1应用程序
3.4.2硬件配置
3.4.3程序的实现
3.4.4主循环
3.4.5中断
3.4.6延时
3.4.7信号灯
3.4.8使用全局变量
第4章C语言
4.1共同变量
4.2C函数的原型
4.2.1在函数原型之前
4.2.2函数原型的应用
4.2.3使用函数原型
4.3中断函数和ANSI关键字
4.3.1中断函数
4.3.2ANSI C const关键字
4.3.3ANSI C volatile关键字
4.4从位开始
4.4.1位运算
4.4.2二进制常量
4.4.3结构体中的位域
4.4.4微处理器位域指令
4.4.5I/O设备和位域
4.4.6小结
4.5浮点数在编程中的应用
4.5.1示例
4.5.2程序实测
4.5.3问题的解答
4.5.4从教训中学习
4.6从不同的角度看待C语言
4.6.1静态数据
4.6.2关于分号
4.6.3指针和指针运算
4.6.4聪明反被聪明误
4.6.5小结
4.7减少函数调用的开销
4.7.1编译器和结构化代码
4.7.2内联函数
4.7.3函数调用
4.7.4参数传递
4.7.5局部存储
4.7.6生成堆栈帧
4.7.7返回值
4.7.8小结
4.8精通结构布局
4.8.1关键概念
4.8.2位域
4.8.3提示和技巧
4.9C语言编程和存储器
4.9.1存储器
4.9.2段
4.9.3小结
4.10C/C++中的指针和数组
4.10.1指针和指针运算
4.10.2数组和指针
4.10.3小结
4.11C/C++中的动态存储
4.11.1C/C++存储空间
4.11.2C语言中的动态存储
4.11.3C++中的动态存储
4.11.4和动态存储相关的问题
4.11.5存储空间碎片化
4.11.6RTOS中的存储管理
4.11.7实时存储解决方案
4.11.8小结
第5章C++
5.1从管理的角度看嵌入式系统中的C++
5.1.1嵌入式系统开发团队
5.1.2面向对象编程
5.1.3团队管理和面向对象方法
5.1.4作为面向对象语言的C++
5.1.5开销
5.1.6前方的路
5.2为什么要从C转向C++
5.2.1隐藏具体实现的细节
5.2.2重用类的代码
5.2.3重用通用的类
5.2.4扩展操作符的功能
5.2.5从基类中衍生新的类
5.2.6通过函数原型避免错误
5.2.7增加函数参数而不改变调用语句
5.2.8使用更加简单和安全的I/O
5.2.9通过内联函数提升性能
5.2.10重载函数名
5.2.11对嵌入式系统的支持
5.2.12转变的代价
5.2.13向C++中引入C代码
5.2.14难点:设计对象
5.2.15如果没有出现问题,就不要去改变
5.3扫清通向C++的障碍
5.3.1过渡策略
5.3.2循序渐进
5.3.3实现可重用性
5.3.4编写Clean C代码
5.3.5C+:接近C++
5.3.6小结:前方的路
5.4C++模板的优势与劣势
5.4.1什么是模板
5.4.2模板的实例化
5.4.3模板带来的问题
5.4.4多个模板参数
5.4.5模板的其他应用
5.4.6小结
5.4.7后记
5.5C++的异常处理
5.5.1C语言中的错误处理
5.5.2异常和中断无关
5.5.3C++的异常处理
5.5.4特殊情况
5.5.5EHS和嵌入式系统
5.5.6小结
5.6C++的代码大小和性能
5.6.1C++比C语言更高效吗
5.6.2C++对内存需求的影响
5.6.3正确使用C++
5.6.4小结
5.7C++中的只写端口
5.7.1封装专业知识
5.7.2问题的定义
5.7.3C语言的解决方案
5.7.4使用C++进行尝试
5.7.5重载操作符
5.7.6对wop类进行增强
5.7.7可重入性
5.7.8使用RTOS
5.7.9封装专业知识
5.7.10其他的可能性
5.7.11前方的路
5.8在C++中使用非易失性RAM
5.8.1程序编制对类定义的需求
5.8.2NVRAM的实现
5.8.3C++的nvram类
5.8.4继续改进nvram类
5.8.5小结
扩展阅读
第6章实时性
6.1实时系统
6.1.1实时系统的实现
6.1.2处理循环
6.1.3中断
6.1.4多任务
6.1.5使用实时操作系统
6.2嵌入式系统的可视化程序模型
6.2.1哪种程序模型最适合用来构建实时系统
6.2.2为何要为实时系统建立模型
6.2.3各种模型之间有什么不同,各有什么优缺点
6.2.4什么是单线程程序模型
6.2.5单线程程序模型有什么优缺点
6.2.6轮询循环是不是一个单线程程序
6.2.7状态机是不是一个单线程程序
6.2.8什么是多线程系统
6.2.9多线程程序模型有哪些优缺点
6.2.10多线程真的同时运行吗
6.2.11如何获取实时系统的多线程环境
6.3嵌入式系统的事件处理
6.3.1事件
6.3.2信号和事件是不是同一回事
6.3.3什么样的事件是时间敏感的
6.3.4当侦测到一个异常,微处理器如何处理
6.3.5所有的异常都一样吗
6.3.6同步异常
6.3.7异步异常
6.3.8中断是如何产生的和服务的
6.3.9CPU保存的状态是什么
6.3.10机器状态就是线程状态吗
6.3.11异常处理程序应该用汇编语言还是C语言来写
6.3.12怎样避免在异常处理程序上花费时间
6.4中断程序
6.4.1设置中断
6.4.2中断服务例程
6.4.3中断向量
6.4.4初始化
6.4.5小结
第7章实时操作系统
7.1RTOS的调试技术
7.1.1概要
7.1.2多进程的概念
7.1.3执行环境
7.1.4与目标机连接
7.1.5调试模式
7.1.6RTOS级的调试功能
7.1.7代码共享
7.1.8任务级的断点
7.1.9任务相关性
7.1.10内存管理单元
7.1.11多处理器
7.1.12小结
7.2自己开发的RTOS调试解决方案
7.2.1任务级调试的实现
7.2.2任务级调试工具
7.2.3小结
7.3调试:堆栈溢出
7.4何时考虑使用商业化RTOS
7.4.1商用化RTOS和自己开发RTOS
7.4.2商业化RTOS的优点
7.4.3商业化RTOS的缺点
7.4.4为什么要自己开发RTOS
7.4.5不自己开发RTOS的理由
7.4.6小结
7.5移植RTOS
7.5.1从一个RTOS转移到另一个RTOS
7.5.2代码移植
7.5.3封装
7.5.4驱动和其他
7.5.5调试问题
7.5.6小结
7.6RTOS驱动程序开发简介
7.6.1设备驱动的两个方面
7.6.2数据损坏
7.6.3线程控制
7.6.4程序逻辑
7.6.5小结
7.7调度算法和优先级反转
7.7.1概要
7.7.2实时性需求
7.7.3调度算法
7.7.4操作系统和应用的含义
7.7.5小结
7.8时间与优先级调度比较
7.8.1RTOS调度
7.8.2理想世界
7.8.3现实世界中的优先级调度
7.8.4不释放控制权的时域限制
7.8.5释放控制权的时域限制
7.8.6小结
7.9嵌入式文件系统
7.9.1嵌入式文件系统的需求
7.9.2MS-DOS文件系统介绍
7.9.3长文件名
7.9.4格式化
7.9.5分区
7.9.6设备
7.10OSEK:一种RTOS标准
7.10.1OSEK简介
7.10.2OSEK需求
7.10.3OSEK的任务
7.10.4报警
7.10.5错误处理
第8章网络
8.1Wi-Fi简介
8.1.1无线数据通信
8.1.2IEEE 802.11
8.1.3802.11基础知识
8.1.4Wi-Fi和蓝牙
8.1.5发展前景
8.2哪些人需要Web服务器
8.2.1简介
8.2.2三个重要的功能
8.2.3Web服务器的运行
8.2.4Web 服务器功能总结
8.2.5其他需要考虑的地方
8.2.6小结
8.3SNMP介绍
8.3.1为什么使用SNMP
8.3.2网络管理者的职责
8.3.3架构模型
8.3.4公众的误解
8.3.5应用级的管理者和代理
8.3.6如何编写MIB
8.3.7术语
8.3.8结论
8.4下一代互联网协议:IPv6
8.4.1互联网协议的局限
8.4.2IP 第6版介绍
8.4.3双栈简化过渡
8.4.4IPv6如何工作
8.4.5RFC支持
8.5DHCP基础
8.5.1DHCP服务器
8.5.2工作原理
8.5.3RFC支持
8.6NAT详解
8.6.1NAT详解
8.6.2RFC支持
8.6.3支持的协议
8.6.4应用级网关
8.6.5私有网络地址分配
8.7PPP:点对点协议
8.7.1介绍
8.7.2PPP如何工作
8.7.3PPP 详解
8.7.4RFC支持
8.8SSL 介绍
8.8.1介绍
8.8.2SSL如何工作
8.8.3一些SSL细节
8.9DHCP调试小技巧
8.10IP多播
8.10.1多播初始化
8.10.2IGMP 协议
8.10.3多播的实现
8.10.4小结
第9章开源软件、嵌入式Linux和Android
9.1嵌入式开发的GNU工具链:构建还是购买
9.1.1介绍
9.1.2工具链的组件
9.1.3构建工具链
9.1.4验证工具链
9.1.5测试的各种选择
9.1.6小结
9.2嵌入式Linux简介
9.2.1简介
9.2.2使用开源的挑战
9.2.3OpenEmbedded
9.2.4理解元数据
9.2.5项目流程
9.2.6小结
9.3Android架构和开发
9.3.1Android 技术简介
9.3.2Android 架构
9.3.3应用开发
9.3.4Android UI
9.3.5在移动设备以外的市场拓展Android
9.3.6总结
9.4垂直市场上的Android、Meego和嵌入式Linux
9.4.1介绍
9.4.2垂直市场有什么不同
9.4.3Android的吸引力
9.4.4MeeGo 的前途
9.4.5多才多艺的嵌入式Linux
9.4.6小结
第10章多核嵌入式系统
10.1多核简介
10.1.1系统架构
10.1.2功耗
10.1.3挑战
10.2多核:多个操作系统
10.2.1AMP的SMP硬件
10.2.2AMP硬件系统
10.2.3AMP软件架构
10.2.4IPC的重要性
10.2.5AMP开发工具
10.2.6困难
10.2.7AMP应用案例
10.2.8使用Hypervisor
10.2.9小结
10.3选择多核的多操作系统
10.3.1介绍
10.3.2操作系统的类型
10.3.3选择操作系统
10.3.4多核系统
10.3.5小结
10.4CPU与CPU的通信:MACPI
10.4.1介绍
10.4.2多核
10.4.3MACPI
10.4.4小结
后记

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