虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册
ClaSS="new_part">
ClaSS="new_part_left">
ClaSS="dl_position">

ClaSS

ClaSS="dl_box">
    ClaSS="tagsarea">
  • ClaSS="r"> ClaSS="l">单片机间双工串行通讯

    串行传送的特点 随着多微机系统的应用和微机网络的发展,通信功能显得越来越重要。这里所说的通信是指计算机与外界的信息交换。因此,通信既包括计算机与外部设备之间,也包括计算机和计算机之间的信息交换。由于串行通信所用的传输线少,并且可以借助现存的电话网进行信息传送,因此,特别适合于远距离传送。对于那些与计算机相距不远的人机交换设备和串行存储的外部设备(磁盘等),采用串行方式交换数据也很普遍。在实时控制和管理方面,采用多台微处理机组成分级分布式控制系统,其中各CPU之间的通信一般都是串行方式。所以,串行接口是微机应用系统常用的接口。串行传送是在一根传输线上一位一位的传送,这根线既做数据线又做联络线,也就是说要在一根传输线上既传送数据信息,又传送联络控制信息,这就是串行方式传送的第一个特点。那么,如何来识别在一根线串行传送的信息流中,哪一部分是联络信号,哪一部分是数据信号。为解决这个问题,就引出了串行通信的数据格式的约定。因此,串行传送的第二个特点是它的数据格式有固定的要求(即固定的数据格式),分异步和同步数据格式,与此相应,就有异步通信和同步通信两种方式。异步通信方式是按字符传送的,而同步通信是按数据块传送的。

    ClaSS="tags">标签: 单片机 串行通讯 双工

    ClaSS="time">上传时间: 2014-12-27

    ClaSS="username">上传用户:shen007yue

  • ClaSS="r"> ClaSS="l">基于自编程功能的MCU Bootloader设计

    Bootloader是微处理器上电时运行的第一段代码,它可以通过通信接口实现对微处理器内部应用程序的更新升级,为网络化嵌入式产品的应用程序升级带来极大的便利。由于目前没有统一嵌入式系统的Bootloader。基于NEC 78K0系列单片机自编程原理,设计出一个适用于78K0/Fx2系列单片机的Bootloader,并能够通过单片机串口在线升级应用程序。 Abstract:  Bootloader is the first piece of code executed after microprocessor startup. It makes the embedded product’s firmware update conveniently through communication interface. However, no unified bootloader is available for all kinds of microprocessor products. Based on the principle of self-programming NEC 78K0s’ series, a useful Bootloader which is suitable for 78K0/Fx2s’ series MCU is designed,the design can update the application through serial ports.

    ClaSS="tags">标签: Bootloader MCU 自编程

    ClaSS="time">上传时间: 2013-10-26

    ClaSS="username">上传用户:fang2010

  • ClaSS="r"> ClaSS="l">基于555定时器的双音门铃电路设计

    1.设计任务分析 原理: 当按下开关,NE555计时器,4引脚于高电平,元件工作,电容C1充电,且2、6引脚达到高电平,此时输出端3为低电平,扬声器发出响声;开关松开后,电容C1放电,在2、6引脚大于1/3Vcc前,3端为低电平,扬声器工作;当放电使2、6端电平小于1/3Vcc,3端为高电平,扬声器不工作。电容C2与滑动变阻器一起控制引脚4的状态,使置零输入端呈不同的临界电压,从而控制扬声器响音时间的长短。当电路转换时,2、6端电压不同,使得输出端3低电平电压也不同,从而实现扬声器的双音。

    ClaSS="tags">标签: 555 定时器 双音 门铃电路

    ClaSS="time">上传时间: 2013-10-08

    ClaSS="username">上传用户:懒龙1988

  • ClaSS="r"> ClaSS="l">基于单片机的语音电子钟设计

      钟是现代人类日常生活必不可少的工具,语音时钟更是现在电子时钟多功能化发展的一个方向。语音电子钟具有突出的播报时间的功能,它被广泛用在生活中的各种场合。本设计就是从日常生活中常见的事物入手,通过对语音电子钟的设计,让我认识到单片机已经深入到我们生活的每个领域。 本文从语音电子钟的设计原理、设计方案入手,详细介绍了系统硬件设计、软件设计及调试。在语音电子钟的设计中,要处理好以下几个关键:D/A(数/模)转换,语音识别,人机接口,程序设计。D/A(数/模)和语音识别技术关系到时间的正确播报,人机接口是播报时间和调整时间的关键。利用凌阳SPCE061A单片机在语音识别和处理方面的优点,结合实践,设计出有特色的语音电子钟。

    ClaSS="tags">标签: 单片机 语音 电子钟

    ClaSS="time">上传时间: 2013-10-30

    ClaSS="username">上传用户:feitian920

  • ClaSS="r"> ClaSS="l">AVR单片机实用程序设计

    清单1 LSDAA:  ADC     R16,R16      ;十进制数(在R16中)左移调整子程序 ADDAA:  IN      R6,SREG      ;bcd码相加调整子程序,先保存相加后的         LDI     R17,$66      ;状态the old status         ADD     R16,R17      ;再将和预加立即数$66         IN      R17,SREG     ;输入相加后新状态(the new status)         OR      R6,R17       ;新旧状态相或         SBRS    R6,0         ;相或后进位置位则跳行         SUBI    R16,$60      ;否则减去$60(十位bcd不满足调整条件)         SBRS    R6,5         ;半进位置位则跳行         SUBI    R16,6        ;否则减去$06(个位bcd不满足调整条件)         ROR     R6           ;向高位BCD返还进位位!         RET

    ClaSS="tags">标签: AVR 单片机实用 程序设计

    ClaSS="time">上传时间: 2013-10-08

    ClaSS="username">上传用户:zh_901

  • ClaSS="r"> ClaSS="l">深入浅出MFC简体中文版

     MFC 六大技术之简化仿真(Console 程序) 第㆓篇【欲善工事先利其器】提供给对 Visual C++ 整合环境全然陌生的朋友㆒个导引。 这㆒篇当然不能取代 Visual C++ User's Guide 的㆞位,但对整个软件开发环境有全盘以 及概观性的介绍,可以让初学者迅速了解手㆖掌握的工具,以及它们的主要功能。 第㆔篇【浅出 MFC 程序设计】介绍㆒个 MFC 程序的生死因果。已经有 MFC 程序经 验的朋友,不见得不会对本篇感到惊艳。根据我的了解,太多㆟使用 MFC 是「只知道 这么做,不知道为什么」;本篇详细解释 MFC 程序之来龙去脉,为初入 MFC 领域的 读者奠定扎实的基础。说不定本篇会让你有醍醐灌顶之感。

    ClaSS="tags">标签: MFC 简体中文

    ClaSS="time">上传时间: 2013-12-16

    ClaSS="username">上传用户:qq527891923

  • ClaSS="r"> ClaSS="l">单片脉冲计数

    一,实验目的 1,  熟悉单片机定时/计数功能,掌握初始化编成方法; 2,  掌握顺序控制程序的简单编程;掌握显示数据的编程方法

    ClaSS="tags">标签: 脉冲计数

    ClaSS="time">上传时间: 2013-10-15

    ClaSS="username">上传用户:familiarsmile

  • ClaSS="r"> ClaSS="l">AD2S1200YSTZ资料

    详细介绍了AD2S1200YSTZ资料      

    ClaSS="tags">标签: S1200 1200 YSTZ AD2

    ClaSS="time">上传时间: 2014-12-27

    ClaSS="username">上传用户:hwl453472107

  • ClaSS="r"> ClaSS="l">FET430PIF自制资料

    The MSP-FET430PIF is a Parallel Port interface (does not include target board) that is used to program and debug MSP430 FET tools and test boards through the JTAG interface. This interface is included in our FET tools, but sold without the development board. This interface uses a Parallel PC Port to communicate to the Debugger Software (IAR Kickstart software included) running on the PC. The interface uses the standard 14 pin header to communicate to the MSP430 device using the standard JTAG protocol. The flash memory can be erased and programmed in seconds with only a few keystrokes, and since the MSP430 flash is extremely low power, no external power supply is required. The tool has an integrated software environment and connects directly to the PC which greatly simplifies the set-up and use of the tool. The flash development tool supports development with all MSP430 flash parts. Features MSP430 debugging interface to connect a MSP430-Flash-device to a Parallel port on a PC Supports JTAG debug protocol (NO support for Spy-Bi-Wire (2-wire JTAG) debug protocol, Spy-Bi-Wire (2-wire JTAG) is supported by MSP-FET430UIF) Parallel Port cable and a 14-conductor target cable Full documentation on CD ROM Integrated IAR Kickstart user interface which includes: Assembler Linker Limulator Source-level debugger Limited C-compiler Technical specifications: Backwardly compatable with existing FET tool boards.

    ClaSS="tags">标签: FET 430 PIF

    ClaSS="time">上传时间: 2013-10-26

    ClaSS="username">上传用户:fengweihao158@163.com

  • ClaSS="r"> ClaSS="l">MSP430 USB JTAG自制资料

    The MSP-FET430U14 is a powerful flash emulation tool to quickly begin application development on the MSP430 MCU. It includes USB debugging interface used to program and debug the MSP430 in-system through the JTAG interface or the pin saving Spy Bi-Wire (2-wire JTAG) protocol. The flash memory can be erased and programmed in seconds with only a few keystrokes, and since the MSP430 flash is ultra-low power, no external power supply is required. The debugging tool interfaces the MSP430 to the included integrated software environment and includes code to start your design immediately.  The MSP-FET430UIF development tools supports development with all MSP430 flash devices

    ClaSS="tags">标签: JTAG MSP 430 USB

    ClaSS="time">上传时间: 2013-10-28

    ClaSS="username">上传用户:13691535575