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

DSP技术完全攻略 基于TI系列的DSP设计与开发

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

DSP技术完全攻略 基于TI系列的DSP设计与开发

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

1.理论介绍和实践举例相结合,相互对照,加强理解。
2.结构新颖、条理清晰、突出重点、简洁明了。
3.通用性与重点兼顾,尤其介绍了易忽略的重要知识点。
Content Description

《DSP技术完全攻略:基于TI系列的DSP设计与开发》采用通俗易懂、轻松灵活的语言绍了DSP的设计与开发攻略,循序渐进地介绍了TI公司C2000、C5000、C6000三大主流DSP的基本结构、开发步骤以及应用实例。全书共分为三部分:基础原理部分介绍了DSP的基本概念以及主流DSP芯片的常用硬件资源;DSP软件资源部分介绍了指令系统与CCS集成开发环境;实例部分重点讨论了DSP开发中最常见、最有特色的例程。同时还总结了一些非常有用,但有时容易忽略的知识点。本书内容实用,且系统性强、理论联系实际,能够使读者快速、全面地掌握DSP系统设计与开发技巧。
《DSP技术完全攻略:基于TI系列的DSP设计与开发》适合DSP技术初学者、从事DSP系统设计与开发的工程技术人员阅读使用,也可用作高等院校的电子、自动化、计算机等相关专业的参考书
Author Description

李尚柏,四川大学,研究员,先后负责和参加了30多项科研项目,其中军工项目10项,重点军工项目5项,项目总经费超过1200多万。在国内外学术刊物上发表论文多篇,先后为本科生、研究生讲授《测控系统设计》、《嵌入式系统》等多门课程。获取专利多项。
Catalogue

第1章 新手入门
1.1信号2
1.2数字信号处理3
1.3初识DSP4
1.3.1DSP概述4
1.3.2为什么DSP能算这么快5
1.3.3DSP芯片的现状与发展趋势7
1.4DSP的主流与非主流9
1.4.1N多种DSP9
1.4.2你会选择谁10
1.4.3TI公司主流DSP12
1.5DSP和其他微芯片的比较13
1.5.1DSP和单片机的比较13
1.5.2DSP和ARM的比较13
1.6如何玩转DSP14
1.6.1DSP技术知识点准备14
1.6.2DSP参考资料14
1.6.3DSP开发流程15
1.6.4DSP软件、硬件开发16
1.7要点与思考16

第2章 数字控制利器——TMS320C24X系列
2.1TMS320C24x系列CPU简介18
2.2CPU结构和内核19
2.3系统总线20
2.4CPU内核21
2.4.1输入定标移位器21
2.4.2乘法器22
2.4.3中央算术逻辑单元23
2.4.4累加器(ACC)24
2.4.5输出数据定标移位器25
2.4.6辅助寄存器算术单元25
2.4.7状态寄存器26
2.5存储器与I/O空间28
2.5.1片内存储器28
2.5.2程序存储器29
2.5.3数据存储器30
2.5.4I/O空间32
2.5.5外部存储器接口34
2.6寻址方式35
2.7系统配置寄存器36
2.7.1系统控制和状态寄存器1(SCSR1)36
2.7.2系统控制和状态寄存器2(SCSR2)38
2.7.3器件标识号寄存器(DINR)38
2.8中断39
2.8.1中断优先级和中断向量表39
2.8.2外设中断扩展控制器42
2.8.3中断向量表43
2.8.4全局中断使能44
2.8.5中断响应过程44
2.8.6中断响应延迟处理45
2.8.7中断寄存器46
2.8.8外设中断寄存器46
2.8.9复位与无效地址检测51
2.8.10外部中断控制寄存器51
2.9程序控制52
2.9.1程序地址的产生52
2.9.2流水线操作54
2.9.3无条件转移、调用和返回55
2.9.4有条件转移、调用和返回55
2.9.5重复指令56
2.10看门狗(Watch Dog,简称WD)57
2.11TMS320x240x的片上外设58
2.11.1通用I/O模块(GPIO)58
2.11.2事件管理器(EV)60
2.11.3捕获单元69
2.11.4正交编码脉冲(QEP)电路72
2.11.5模数转换模块(ADC)73
2.11.6SCI串行通信接口模块79
2.11.7SPI串行外设接口模块80
2.11.8CAN控制器模块80
2.12要点与思考82

第3章 适合便携终端的低功耗产品——TMS320C54X系列
3.1TMS320C54x系列CPU简介83
3.2总线结构85
3.3CPU内核86
3.3.1算术逻辑运算单元ALU87
3.3.2累加器88
3.3.3桶形移位寄存器89
3.3.4乘法加法累加单元(MAC)90
3.3.5比较、选择和存储单元CSSU91
3.3.6指数编码器92
3.3.7CPU寄存器92
3.4存储器94
3.4.1存储器结构95
3.4.2程序存储器96
3.4.3数据存储器98
3.4.4I/O存储器空间100
3.5中断系统100
3.5.1中断寄存器100
3.5.2中断控制101
3.6片内外设105
3.6.1通用I/O引脚105
3.6.2定时器105
3.6.3时钟发生器106
3.6.4主机接口(HPI)108
3.6.5串行口109
3.7要点与思考112

第4章 高性能的代表——TMS320C6000系列
4.1TMS320C6000系列简介113
4.2CPU结构114
4.2.1程序执行机构115
4.2.2控制寄存器组119
4.2.3控制状态寄存器119
4.3存储器120
4.3.1程序存储器及其控制器121
4.3.2数据存储器及其控制器122
4.4中断124
4.4.1中断类型和优先级124
4.4.2中断源124
4.4.3中断寄存器126
4.5片内集成外设126
4.5.1外部存储器接口(EMIF)127
4.5.2扩展总线xBus130
4.6要点与思考133

第5章 开发好帮手——CCS集成开发环境
5.1CCS概述135
5.2CCS的安装与配置137
5.3CCS文件类型138
5.4CCS基本界面139
5.4.1主界面139
5.4.2主菜单139
5.5CCS开发入门140
5.5.1创建工程140
5.5.2项目文件操作141
5.5.3工程配置142
5.5.4工程从属关系142
5.5.5编译和运行程序143
5.6基础调试144
5.6.1调试设置145
5.6.2运行与单步调试145
5.6.3断点147
5.6.4探针点147
5.6.5观察窗口149
5.6.6内存窗口150
5.6.7寄存器窗口152
5.6.8反汇编模式/混合模式152
5.7基础软件153
5.8要点与思考154

第6章 指挥工作靠软件——指令和C语言程序设计
6.1概述155
6.2C2000指令系统155
6.2.1C2000寻址方式155
6.2.2C2000常用指令集156
6.2.3C2000常用伪指令157
6.3C5000指令系统157
6.3.1C5000寻址方式157
6.3.2C5000常用指令集158
6.3.3C5000常用伪指令159
6.4C6000指令结构160
6.4.1C6000系列的基本寻址方式160
6.4.2C6000常用指令集160
6.5详细指令集161
6.6DSP的C语言开发171
6.6.1简介171
6.6.2DSP C语言数据类型172
6.6.3寄存器变量172
6.6.4pragma伪指令172
6.6.5ASM语句173
6.6.6I/O空间访问173
6.6.7数据空间访问173
6.6.8中断服务函数173
6.6.9初始化系统174
6.7DSP汇编语言/C语言混合编程174
6.7.1混合编程环境设置174
6.7.2内嵌汇编语句177
6.7.3C语言访问汇编程序变量177
6.8要点与思考178
应用实例篇

第7章 实施工作靠硬件——基本DSP硬件平台搭建
7.1概述180
7.2DSP最小系统181
7.2.1电源电路设计181
7.2.2复位和时钟电路设计184
7.2.3JTAG接口电路设计186
7.3C6x DSP与Flash存储器的接口187
7.3.1C6x EMIF接口187
7.3.2EMIF与Flash存储器接口191
7.3.3Flash编程示例195
7.4C6x DSP与SDRAM存储器的接口199
7.4.1C6x兼容的SDRAM类型199
7.4.2C6x EMIF与SDRAM接口特点及其接口信号201
7.4.3C6x EMIF的SDRAM控制寄存器203
7.4.4EMIF支持的SDRAM命令及其时序参数206
7.4.5C6713B与MT48LC4M32B2 SDRAM的接口212
7.5要点与思考214

第8章 最常见DSP硬件资源配置与应用
8.1概述215
8.2芯片支持库简介216
8.2.1CSL架构216
8.2.2CSL的命名规则和数据类型219
8.2.3CSL函数220
8.2.4CSL宏221
8.2.5CSL的资源管理222
8.2.6芯片支持库的使用223
8.3定时器和中断应用程序设计224
8.3.1C6x中断控制器224
8.3.2芯片支持库的中断模块IRQ230
8.3.3定时器233
8.3.4芯片支持库的定时器模块TIMER235
8.3.5定时器和中断应用实例238
8.4DMA和McBSP应用程序设计242
8.4.1C54xx的DMA控制器243
8.4.2芯片支持库的直接存储器访问模块DMA249
8.4.3C54xx的多通道缓冲串口McBSP252
8.4.4芯片支持库的多通道串口模块McBSP262
8.4.5DMA和McBSP应用实例265
8.5要点与思考276

第9章 让程序自己跑起来——DSP程序的引导
9.1概述278
9.2LF240x DSP程序的引导279
9.2.1引导硬件配置279
9.2.2SPI同步传输协议和数据格式281
9.2.3SCI异步传输协议和数据格式281
9.3C54x DSP程序的引导282
9.3.1引导模式选择283
9.3.2HPI引导284
9.3.3串行EEPROM引导286
9.3.4并行引导288
9.3.5标准串行引导290
9.3.6I/O 引导291
9.3.7产生引导表292
9.4C6x DSP程序的引导297
9.4.1引导控制逻辑297
9.4.2两级引导过程299
9.4.3创建二级引导应用程序300
9.4.4编写用户引导程序302
9.4.5C6x程序的烧录305
9.4.6关于用户引导程序的进一步讨论308
9.5要点与思考313

第10章 回归重点——DSP在信号处理上的应用
10.1概述315
10.2基于DSP的信号源设计316
10.2.1信号的生成与输出316
10.2.2正弦信号的产生318
10.2.3调幅信号的产生326
10.3FIR滤波器329
10.3.1FIR滤波器程序设计考虑329
10.3.2FIR滤波器在C54x DSP上的实现331
10.4IIR滤波器337
10.4.1IIR滤波器程序设计考虑337
10.4.2IIR滤波器在C67x上的实现339
10.5快速傅里叶变换(FFT)343
10.5.1FFT算法原理简介343
10.5.2FFT算法的编程考虑343
10.5.3FFT算法在C67x上的实现346
10.6要点与思考352

第11章 也许有一天你就会遇到——DSP覆盖(Overlay)程序设计
11.1概述353
11.2链接命令文件354
11.2.1MEMORY指令355
11.2.2SECTIONS指令357
11.3Overlay源程序设计363
11.3.1程序功能划分的考虑363
11.3.2设计实例364
11.3.3Overlay模块的动态加载377
11.4Overlay程序的调试和运行377
11.4.1加载Overlay代码模块到外部内存378
11.4.2Overlay代码的跟踪调试378
11.5要点与思考382

第12章 给自己的程序打个分——DSP实时数据交换技术(RTDX)
12.1概述383
12.2RTDX详解384
12.2.1RTDX的工作原理384
12.2.2RTDX用户接口385
12.2.3RTDX的COM接口387
12.2.4主机RTDX配置393
12.2.5RTDX目标库缓冲区的配置395
12.3使用RTDX工具397
12.3.1RTDX监视工具397
12.3.2RTDX诊断工具397
12.3.3日志文件查阅工具401
12.4RTDX工程实例401
12.4.1目标应用程序402
12.4.2主机客户程序405
12.4.3RTDX程序的调试409
12.4.4RTDX程序的性能考虑411
12.5RTDX应用实例412
12.5.1目标应用程序413
12.5.2主机客户程序421
12.6要点与思考424

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