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

STC15增强型8051单片机C语言编程与应用(附CD-ROM光盘1张)

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

STC15增强型8051单片机C语言编程与应用(附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
Editer Recommend

海报:

Content Description

《STC15增强型8051单片机C语言编程与应用》详细介绍了宏晶科技有限公司研发的STC15系列新型Flash 8051单片机的基本组成、性能特点及应用方法,基于Flash存储器的ISP在系统中编程和IAP在应用中编程的相关技术,结合目前流行的KeilC51编译器环境,对STC15系列单片机采用C语言进行编程应用,充分发挥C51技术优势,全面地展现STC15系列单片机本身特色,如片内晶体振荡器时钟调整,将芯片配置成为具有仿真功能的单片机,KeiluVision4环境下在线仿真调试,1T单周期指令高速执行,I2C、SPI、ADC等片内资源,以及多种片外扩展应用,为读者快速上手提供方便。
Author Description

徐爱钧,长江大学教授,硕士研究生导师;中国科协湖北省自动化学会理事;湖北省省级精品课程《单片机原理及应用》负责人;长期从事自动化及单片机与嵌人式系统应用的教学、科研工作;参加并完成多项部、局级科研项目;获得湖北省科学技术进步奖,中国石油天然气总公司科技装备进步奖,江汉石油学院、长江大学优秀教学成果奖等多项奖励。公开出版《智能化测量控制仪表原理与设计(第2版)》、《8051单片机实践教程》、《KellCX51V7.0单片机高级语言应用编程与实践(第2版)》、《IAREWARM嵌入式系统编程与实践》、《单片机原理实用教程》等教材和著作10余部。在《仪器仪表学报》、《测控技术》、《电测与仪表》等核心期刊上发表学术论文60多篇。
Catalogue

第1章 STC15系列单片机基础
1.1 STC15F2K60S2单片机性能特点
1.1.1 主要特性
1.1.2 体系结构
1.1.3 引脚功能
1.2 STC15F2K60S2单片机的存储器结构
1.3 STC15F2K60S2单片机的时钟与复位
1.3.1 时钟
1.3.2 复位
1.3.3 看门狗电路
1.4 STC15F2K60S2单片机存储器的使用
1.4.1 片内Flash存储器
1.4.2 片内扩展XRAM存储器
1.4.3 片内数据Flash存储器(EEPROM)
1.5 STC15F2K60S2单片机的并行I/O端口
1.5.1 并行I/O端口工作模式
1.5.2 并行I/O端口使用注意事项
1.6 Keil C51开发工具
1.7 STC15单片机的C语言编程与调试

第2章 Keil C51程序设计基础
2.1 标识符与关键字
2.2 C51程序设计的基本语法
2.2.1 C51程序的一般结构
2.2.2 数据类型
2.2.3 用typedef重新定义数据类型
2.2.4 常量、变量及其存储模式
2.2.5 运算符与表达式
2.3 C51程序的基本语句
2.3.1 表达式语句
2.3.2 复合语句
2.3.3 条件语句
2.3.4 开关语句
2.3.5 循环语句
2.3.6 goto、break、continue语句
2.3.7 返回语句
2.4 函数
2.4.1 函数的定义与调用
2.4.2 定义中断服务函数与寄存器组
2.5 数组
2.5.1 数组的定义与引用
2.5.2 数组名作为函数的参数
2.5.3 数组与存储器空间
2.6 指针
2.6.1 指针与地址
2.6.2 指针变量的定义
2.6.3 指针变量的引用
2.6.4 指针变量作为函数的参数
2.6.5 用指针引用数组元素
2.6.6 字符数组指针
2.6.7 指针的地址计算
2.7 函数型指针
2.8 返回指针型数据的函数
2.9 指针数组与指针型指针
2.9.1 指针数组
2.9.2 指针型指针
2.9.3 抽象型指针
2.10 结构体、联合体与枚举
2.10.1 结构体变量的定义与引用
2.10.2 结构体数组
2.10.3 结构体指针
2.10.4 将结构体作为函数的参数
2.10.5 将结构体指针作为函数的参数
2.11 联合体变量的定义与引用
2.12 枚举变量的定义与引用

第3章 Keil C51编译器对ANSI C的扩展
3.1 存储器类型与编译模式
3.2 C51数据在内存中的存储格式
3.3 一般指针与基于存储器的指针及其转换
3.4 C51编译器对ANSI C函数的扩展
3.4.1 C51编译器支持的函数定义的一般形式
3.4.2 堆栈及函数的参数传递
3.4.3 函数的编译模式
3.4.4 寄存器组切换
3.4.5 中断函数
3.4.6 再入函数
3.5 目标代码的段管理
3.5.1 全局变量
3.5.2 函数和局部变量
3.6 启动代码
3.7 与汇编语言程序的接口
3.8 绝对地址访问
3.8.1 采用扩展关键字_at_或指针定义变量的绝对地址
3.8.2 采用预定义宏指定变量的绝对地址
3.9 Keil C51库函数
3.9.1 本征库函数
3.9.2 字符判断转换库函数
3.9.3 输入/输出库函数
3.9.4 字符串处理库函数
3.9.5 类型转换及内存分配库函数
3.9.6 数学计算库函数

第4章 STC15单片机片内资源应用编程
4.1 编写C51应用程序的基本原则
4.2 C51应用中的一些常见问题与解决方法
4.3 中断系统应用编程
4.3.1 中断系统结构
4.3.2 与中断相关的特殊功能寄存器
4.3.3 中断应用编程
4.4 定时器/计数器应用编程
4.4.1 定时器/计数器逻辑结构
4.4.2 与定时器/计数器相关的特殊功能寄存器
4.4.3 定时器方式应用编程
4.4.4 计数器方式应用编程
4.4.5 可编程时钟输出
4.4.6 利用定时器产生音乐
4.5 串行口应用编程
4.5.1 串行口的工作方式
4.5.2 与串行口相关的特殊功能寄存器
4.5.3 串行口的串/并转换方式应用编程
4.5.4 串行口的通信方式应用编程
4.6 片内A/D转换器应用编程
4.6.1 A/D转换器的逻辑结构
4.6.2 与A/D转换器相关的特殊功能寄存器
4.6.3 A/D转换器应用编程
4.7 片内PCA模块应用编程
4.7.1 PCA模块的逻辑结构
4.7.2 与PCA模块相关的特殊功能寄存器
4.7.3 PCA模块的工作模式
4.7.4 PCA模块应用编程
4.8 SPI同步串行接口应用编程
4.8.1 SPI接口的逻辑结构
4.8.2 与SPI接口相关的特殊功能寄存器
4.8.3 SPI接口的通信方式及数据格式
4.8.4 SPI接口应用编程
4.9 STC15F2K60S2单片机的低功耗设计
4.9.1 慢速工作模式
4.9.2 空闲与掉电工作模式

第5章 STC15单片机片外扩展应用编程
5.1 LED数码管显示接口应用编程
5.1.1 I/O端口驱动LED数码管应用编程
5.1.2 单个74HC595驱动多位LED数码管应用编程
5.1.3 8位共阴极LED数码管驱动器MAX7219应用编程
5.2 非编码键盘接口应用编程
5.2.1 采用I/O端口实现的矩阵键盘接口应用编程
5.2.2 采用片内ADC实现的键盘接口应用编程
5.3 点阵字符型LCD模块接口应用编程
5.3.1 点阵字符型LCD模块简介
5.3.2 点阵字符型LCD与单片机的直接接口应用编程
5.3.3 点阵字符型LCD与单片机的间接接口应用编程
5.3.4 点阵字符型LCD的4位数据总线接口应用编程
5.4 字库12864点阵图型LCD模块接口应用编程
5.5 带字库12864点阵图型LCD模块接口应用编程
5.5.1 带字库12864液晶模块并行接口应用编程
5.5.2 带字库12864液晶模块串行接口应用编程
5.6 内置T6963C的点阵图型LCD模块接口应用编程
5.7 DAC转换接口应用编程
5.7.1 DAC0832转换接口应用编程
5.7.2 DAC1208与单片机的接口方法
5.7.3 串行接口DAC芯片TLC5615应用编程
5.8 ADC转换接口应用编程
5.8.1 ADC0809转换接口应用编程
5.8.2 ICL7135转换接口应用编程
5.8.3 串行接口ADC芯片TLC549应用编程
5.9 单片机I2C总线扩展应用编程
5.9.1 I2C总线简介
5.9.2 I2C总线通用驱动程序
5.9.3 I2C接口器件24C04的读写程序
5.9.4 I2C接口A/D-D/A转换芯片PCF8591应用编程
5.9.5 I2C接口时钟芯片PCF8563应用编程

第6章 STC15单片机综合应用编程实例
6.1 有关C51编程的若干实际应用技巧
6.2 C51与汇编语言混和编程及生成应用库文件
6.2.1 C51与汇编语言混合编程
6.2.2 在Vision4中生成应用库文件
6.3 可调数字钟
6.3.1 功能要求
6.3.2 硬件电路设计
6.3.3 软件程序设计
6.4 红外遥控系统设计
6.4.1 功能要求
6.4.2 硬件电路设计
6.4.3 软件程序设计
6.5 PWM脉宽调制系统设计
6.5.1 功能要求
6.5.2 硬件电路设计
6.5.3 软件程序设计
6.6 点阵LED显示屏设计
6.6.1 功能要求
6.6.2 硬件电路设计
6.6.3 软件程序设计
6.7 简易电子琴设计
6.7.1 功能要求
6.7.2 硬件电路设计
6.7.3 软件程序设计
6.8 DTMF发送/接收系统设计
6.8.1 功能要求
6.8.2 硬件电路设计
6.8.3 软件程序设计
6.9 带农历的电子万年历设计
6.9.1 功能要求
6.9.2 硬件电路设计
6.9.3 软件程序设计
6.10 电子密码锁设计
6.10.1 功能要求
6.10.2 硬件电路设计
6.10.3 软件程序设计
6.11 DS18B20多点温度监测系统设计
6.11.1 功能要求
6.11.2 硬件电路设计
6.11.3 软件程序设计
6.12 STH11数字温-湿度测量系统设计
6.12.1 功能要求
6.12.2 硬件电路设计
6.12.3 软件程序设计
6.13 单片机SD卡读/写接口设计
6.13.1 功能要求
6.13.2 硬件电路设计
6.13.3 软件程序设计

附录A STC15F2K60S2单片机指令表
附录B STC_ISP软件工具简介
附录C STC单片机编程下载工具U7/U7-S简介

参考文献

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