虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

leave-one-out

  • YSS915 (KP2V2) is an LSI for processing Karaoke voice signals. This LSI has an A/D converter (1 cha

    YSS915 (KP2V2) is an LSI for processing Karaoke voice signals. This LSI has an A/D converter (1 channel) for the microphone echo, and a memory for the microphone echo and key control. These features allow achieving the functions needed for the Karaoke system by using only one LSI chip. As for the microphone echoes, many other types of echoes are available in addition to ordinary ones so that YSS915 is applicable to various uses. In addition to these Karaoke programs, YSS915 is able to provide the Movie & Music programs, with which the surround effect is applied to the movie and music sources for giving the users more enjoyment. YSS915 is pin compatible with and register compatible with YSS903 (KP2V).

    标签: processing LSI converter Karaoke

    上传时间: 2015-06-23

    上传用户:lijianyu172

  • 上传了一个批量传输得IN程序

    上传了一个批量传输得IN程序,现在上传的是EZ-USB FX2的批量传输的OUT程序

    标签: 传输 程序

    上传时间: 2013-12-29

    上传用户:Altman

  • Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP

    Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP connection pool. One could easily implement a IMAP connection pool, then take the existing code and implement a LDAP connection pool. The program grows, and now there is a need for a pool of threads. So just take the IMAP connection pool and convert that to a pool of threads (Copy, paste, find, replace????). Need to make some changes to the pool implementation? Not a very easy task, since the code has been duplicated in many places. Re-inventing source code is not an intelligent approach in an object oriented environment which encourages re-usability. It seems to make more sense to implement a pool that can contain any arbitrary type rather than duplicating code. How does one do that? The answer is to use type parameterization, more commonly referred to as templates.

    标签: connection pool applications program

    上传时间: 2013-12-25

    上传用户:playboys0

  • 8253的初始化程序举例: 例1:选择2号计数器

    8253的初始化程序举例: 例1:选择2号计数器,工作在3方式,计数初值为533H(2个字节),采用二进制计数。其初始化程序段为 MOV DX,307H ;命令口 MOV AL,10110110B ;2号计数器的初始化命 令字 OUT DX,AL ;写入命令寄存器 MOV DX,306H ;2号计数器数据口 MOV AX,533H ;计数初值 OUT DX,AL ;选送低字节到2号计数器 MOV AL,AH ;取高字节送AL OUT DX,AL ;后送高字节到2号计数器

    标签: 8253 初始化程序 举例 计数器

    上传时间: 2015-06-24

    上传用户:zhangzhenyu

  • Person-to-person realtime IP communications, like presence, VoIP and video applications, offer clea

    Person-to-person realtime IP communications, like presence, VoIP and video applications, offer clear benefits for the enterprise as time- and money-savers. Unified functionality is now available, where all of the above are integrated into one streamlined application and interconnect with other networks. This creates a very important business tool and usage is increasing.

    标签: Person-to-person communications applications realtime

    上传时间: 2015-06-28

    上传用户:维子哥哥

  • This book provides information about the concepts and procedures needed by a developer of messaging

    This book provides information about the concepts and procedures needed by a developer of messaging applications in a Sun™ ONE Message Queue (MQ) environment. This preface contains the following sections: • Audience for This Guide • Organization of This Guide • Conventions • Other Documentation Resources

    标签: information procedures developer messaging

    上传时间: 2013-12-14

    上传用户:netwolf

  • c8051f020 实时时钟模块程序 内含IIC模块程序/********************** SYSTEM CLOCK 8M********************************/

    c8051f020 实时时钟模块程序 内含IIC模块程序/********************** SYSTEM CLOCK 8M********************************/ extern unsigned char xdata currenttime[16]={0} extern unsigned char xdata settime[16]={ 0x00, // control regesiter 1 0x00, // control regesiter 2 0x01, //current second 0x19, //current minute 0x20, //current hour 0x29, //current data 0x04, //current week 0x07, //current month 0x05, //current year 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // alarm value reset 0x00, // clk out disable 0x00, // close timer 0x00, } /*********************************************************************/ extern void Current_Time ( void ) extern void Set_Time ( void )

    标签: c8051f020 SYSTEM CLOCK IIC

    上传时间: 2015-06-30

    上传用户:edisonfather

  • HT48c10控制TDA7313N(音效处理芯片)程序 #if 0 //ht48c10控制TDA7313N(音效处理芯片),音源从L3输入

    HT48c10控制TDA7313N(音效处理芯片)程序 #if 0 //ht48c10控制TDA7313N(音效处理芯片),音源从L3输入,再从OUT LF脚输出 //SDA=PA1--PA7 , SCL=PA0--PA6 ...

    标签: 7313N 7313 TDA 48

    上传时间: 2013-12-21

    上传用户:dongbaobao

  • Introducing a new product requires the designer to think about the product differentiators. Designin

    Introducing a new product requires the designer to think about the product differentiators. Designing a user-friendly product, considering all other features are equivalent, will help increase the product acceptance and sales. A good User Interface is definitively one of these differentiators. In many instances, a Graphical User Interface (GUI) is the best approach.

    标签: product differentiators Introducing the

    上传时间: 2015-07-04

    上传用户:cx111111

  • 参照栈类模板的例子编写一个队列类模板class <T> Queue

    参照栈类模板的例子编写一个队列类模板class <T> Queue,私有成员包括:队首指针Front,队尾指针Tail,队列容积max。实现:构造函数Queue,析构函数,入队函数In,出队函数Out(每次出队,后面的元素自动前移一位),判队列空函数Empty。并分别用队列类模板定义int和float对象,调用各个成员函数

    标签: class Queue 模板 lt

    上传时间: 2013-12-03

    上传用户:BIBI