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

CN

  • tas3204

    The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DSP code development software. PurePath Studio is a highly intuitive, drag-and-drop environment that minimizes software development effort while allowing the end user to utilize the power and flexibility of the TAS3204’s digital audio processing core. TAS3204 processing capability includes speaker equalization and crossover, volume/bass/treble control, signal mixing/MUXing/splitting, delay compensation, dynamic range compression, and many other basic audio functions. Audio functions such as matrix decoding, stereo widening, surround sound virtualization and psychoacoustic bass boost are also available with either third-party or TI royalty-free algorithms. The TAS3204 contains a custom-designed, fully-programmable 135-MHz, 48-bit digital audio processor. A 76-bit accumulator ensures that the high precision necessary for quality digital audio is maintained during arithmetic operations. Four differential 102 dB DNR ADCs and four differential 105 dB DNR DACs ensure that high quality audio is maintained through the whole signal chain as well as increasing robustness against noise sources such as TDMA interference. The TAS3204 is composed of eight functional blocks: Clocking System Digital Audio Interface Analog Audio Interface Power supply Clocks, digital PLL I2C control interface 8051 MCUcontroller Audio DSP – digital audio processing 特性 Digital Audio Processor Fully Programmable With the Graphical, Drag-and-Drop PurePath Studio™ Software Development Environment 135-MHz Operation 48-Bit Data Path With 76-Bit Accumulator Hardware Single-Cycle Multiplier (28 × 48)

    标签: 3204 tas

    上传时间: 2016-05-06

    上传用户:fagong

  • SpringMVC设计

       springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认: l   <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是说:上面这个定义和不定义都是一样的。 不定义: <bean id="testController" name="/hello.do" class="CN.itcast.controller.TestController"></bean> 直接使用:hello.do来访问。 <!-- 简单的url映射处理器 --> l   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">                    <property name="mappings">                             <props>          那么上面的这个映射配置:表示多个*.do文件可以访问多个Controller或者一个Controller。          前提是:都必须依赖:          <bean id="testController" name="/hello.do" class="CN.itcast.controller.TestController"></bean>          <!-- /WEB-INF/jsp/index.jsp -->          <bean class="org.springframework.web.servl                                      <prop key="/hello1.do">testController</prop>                                      <prop key="/a.do">testController</prop>                             </props>                    </property> </bean> et.view.InternalResourceViewResolver">                    <property name="prefix" value="/WEB-INF/jsp/"></property>                    <property name="suffix" value=".jsp"></property>          </bean>

    标签: SpringMVC

    上传时间: 2016-06-03

    上传用户:hthunder

  • 电子电路设计手册

    电子电路设计手册

    标签: 电子电路 设计手册

    上传时间: 2016-11-06

    上传用户:moon1992

  • 学位认证操作方法

    学位认证操作方法(含所有学位)   1、登陆:http://www.chinadegrees.com.CN/ 2、点击“学位获得者查询”;

    标签: 操作

    上传时间: 2017-01-18

    上传用户:happyatan

  • 2民生行用卡源代码

    Received: from mail.creditcard.cmbc.com.CN (unknown [111.205.122.39]) by newmx82.qq.com (NewMx) with SMTP id  for <714620454@QQ.COM>; Fri, 20 Oct 2017 03:56:09 +0800 X-QQ-FEAT: nHaaMjwLeTyzuDp5C5V++RVfPHSVEqOujK0vwZroSro= X-QQ-MAILINFO: MjJD59SVx+LnQ1oU2sDuZ8tZJyZAOGTJaybWFAYRjurknrZoc6gjmnU06 o+pkiTJsdtxgA5CmtpN2ggrWb/T2GoG07QFXqgJtIk+5X1iaz4UykQ9M2a782+Fdn83doxC 4Ej1t99JoZcj8dDkeM5dzZTSR8uZGwHEnIK9Uim+NcaroB2EUWgclSmSzIxUHIbJ1nTLA8G B4/wa X-QQ-mid: mx82t1508442969ti70kc84u X-QQ-ORGSender: master@creditcard.cmbc.com.CN Received: from sedm([195.203.59.13]) by mail.creditcard.cmbc.com.CN(1.0) with SMTP id sedm587; Thu, 19 Oct 2017 17:48:11 +0800 Date:Thu, 19 Oct 2017 17:48:11 +0800 (CST) Message-ID:<0305-euid-31911508406491578> To:=?gbk?B?zsTS1SDFrsq/?=<714620454@QQ.COM> From:master<master@creditcard.cmbc.com.CN> Subject: =?gbk?B?w/HJ+tDF08O/qDIwMTfE6jEw1MK159fTttTVy7Wl?= X-Priority: 3 X-MSMail-Priority: Normal MIME-Version: 1.0 Content-Type: multipart/related; boundary="****MAIN_BOUNDARY****2727BD00F7949069C75FEDD44F1F2988" This is a multi-part message in MIME format. --****MAIN_BOUNDARY****2727BD00F7949069C75FEDD44F1F2988 Content-Type: multipart/alternative; boundary="****SUB_BOUNDARY****2727BD00F7949069C75FEDD44F1F2988" --****SUB_BOUNDARY****2727BD00F7949069C75FEDD44F1F2988 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64

    标签: 源代码

    上传时间: 2017-11-17

    上传用户:wendingchang

  • CortexM3

    Cortex-M3权威指南CN.pdf,STM32

    标签: CortexM3

    上传时间: 2018-04-10

    上传用户:grayhush

  • 数据结构实验

    #include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struct node *next;   }Node,*Linklist;      Linklist Createlist()   {       Linklist p;       Linklist h;       int data1;       scanf("%d",&data1);       if(data1 != 0)       {           h = (Node *)malloc(sizeof(Node));           h->data = data1;           h->next = NULL;       }       else if(data1 == 0)       return NULL;       scanf("%d",&data1);       while(data1 != 0)       {           p = (Node *)malloc(sizeof(Node));           p -> data = data1;           p -> next = h;           h = p;           scanf("%d",&data1);       }       return h;   }      void Outputlist(Node *head)   {       Linklist p;       p = head;       while(p != NULL )       {           printf("%d ",p->data);           p = p->next;       }       printf("\n");   }      void Freelist(Node *head)   {       Node *p;       Node *q = NULL;       p = head;       while(p != NULL)       {           q = p;           p = p->next;           free(q);       }   }      int main()   {       Node *head;       head = Createlist();          Outputlist(head);          Freelist(head);          return 0;   }   2.顺序栈 [cpp] view plain copy #include <iostream>   #include <stdio.h>   #include <stdlib.h> ///顺序栈   #define MaxSize 100      using namespace std;      typedef

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..

  • STC15W204及0.96寸IIC的OLED制作个温湿度计

    用SI7021、STC15W204及0.96寸IIC的OLED制作个温湿度计。 这个温湿度计是用于最后版办公室多功能桌面工具组合操作显示界面用的http://bbs.mydigit.CN/read.php?tid=2210356,由于SI7021是IIC总线的,如直接由工具组合显示主控控制SI7021,占用资源多,所以把它独立出来,用片STC15W204读SI7021,然后采用模拟红外遥控编码格式把数据输出。原打算是用DHT11,但DHT11的湿度误差太大了,所以改用SI7021。 以下是制作图片。 电路图比较简单,所以不传电路图了。注意:VCC是3。3Ⅴ的。

    标签: 温湿度计

    上传时间: 2018-10-22

    上传用户:13536121668

  • 虚拟多桌面,网吧必备,隐藏真实桌面以及任务栏-切

    看到论坛中有个人用易语言写了一个虚拟桌面,效果不是很理想啊,只是隐藏桌面有什么用,底下的任务栏还是一样看的见,比如,QQ啊,快播啊,那些托盘程序,人家一看就知道你在干嘛了嘛,还用说吗?我这个虚拟桌面是连同任务栏一起隐藏,新的桌面就像刚刚开机的一样!!绝对赞!window7+xp通用!网吧破解后隐藏桌面,上班族桌面太乱隐藏桌面,宅男在家撸怕麻麻发现隐藏桌面,学生在电脑课玩游戏怕老师隐藏桌面!隐藏桌面工具在手,天下我手!你值得拥有,本工具也是采用易语言编写,难免会报毒,请下载本工具的小伙伴自行杀毒,本人承诺,工具绝对无毒无后门,那种断子绝孙的活咱这些有良心的人是不会干的。程序快捷键:原窗口:ctrl + ↑  窗口一 :ctrl + ← 窗口二:ctrl + ↓  窗口三:ctrl + →     隐藏/显示程序界面:Home     

    标签: 虚拟

    上传时间: 2019-01-23

    上传用户:cf232

  • 会声会影打开提示“计算机中丢失MSVCR100.dll”的解决方案

    很多网友反映在会声会影官网下载会声会影x9试用版之后,打开时会出现报错,提示“无法启动此程序,因为计算机中丢失MSVCR100.dll。尝试重新安装改程序以解决此问题。”遇到这种情况该如何介解决呢?这期小编就来说明一下。 图一:系统错误 方法一: 1、使用搜索引擎搜索“MSVCR100.dll”,选择一个进入下载; 2、将下载下来的压缩文件解压打开; 3、将MSVCR100.100文件复制到C:\Windows\system32 里面如果你是64位的系统,就放到C:\Windows\SysWOW64里面,对应放置; 图二:复制dll到C盘 4、同时按住win+R键,桌面左下角弹出运行框,在里面输入 regsvr32 msvcr100.dll,点击确定; 图三:运营 5、再一次点击会声会影的启动程序,这时应该就可以启动视频制作软件了。 方法二: 1、使用360安全卫士里的人工服务,在搜索框里输入msvcr100.dll,点击查找方案; 图四:360修复 2、点击msvcr100.dll问题后面的立即修复,修复完成之后重新启会声会影即可。 在下载或者使用会声会影的过程中遇到任何问题可以在会声会影教程中寻找答案。

    标签: MSVCR 100 dll 计算 机中 方案

    上传时间: 2019-04-28

    上传用户:yanyu