This specification Defines the Audio Codec ‘97 (AC ‘97) Architecture and Digital Interface (AC-link) specifically designed for implementing audio and modem I/O functionality in mainstream PC systems. This specification does not explicitly Define the companion AC ‘97 Digital Controller component (sometimes referred to or abbreviated as DC ‘97), which typically varies in features and implementation, but is AC ‘97 compliant with this specification.
标签: specification Architecture Interface AC-link
上传时间: 2014-01-23
上传用户:zl5712176
/* 下面这些S11-S44实际上是一个4*4的矩阵,在原始的C实现中是用#Define 实现的, 这里把它们实现成为static final是表示了只读,切能在同一个进程空间内的多个
上传时间: 2016-10-08
上传用户:zwei41
pic单片机 DB4~DB7:在L CD中的作用,为数据线,DB0~DB2接地,DB3接高电平以完成对液晶的初始化。本Demo例子程序中,与单片机的RB2~RB5连接,用户使用其他的管腿时,只需修改#Define部分。 RS为数据、指令控制线,与单片机的RB1连接,当RS为高电平时对LCD模块数据寄存器操作,当RS为低电平时对LCD模块指令寄存器操作; E为读写使能控制线,与单片机的RA5连接,每当E线向LCD模块发送一个正脉冲,LCD模块与单片机之间将进行一次数据交换; A、K分别是LCD模块背光的正负电源引脚,1-1所示,我们将用RC2控制背光,改变R29的值将改变背光亮度 R/W为读写选择线,在ICD2DEMO教学实验板中,R/W线接地,只做对LCD模块的写操作
上传时间: 2014-01-08
上传用户:问题问题
BP网络解决异或问题的实例,有初始值和最终结果的显示。本网络结构为三层BP网络,各层神经元个数可变,更改相关#Define即可。(注释较详细,主函数中调用的函数和矩阵类都定义在文件function.h中)
标签: BP网络
上传时间: 2014-01-27
上传用户:wangzhen1990
单道多道 程序的实现 不带输入,但是可以通过Define 来实现
上传时间: 2013-12-09
上传用户:SimonQQ
51单片连tcs230的源程序,绝对原创,可以记忆颜色。 #Define uchar unsigned char #include <reg52.h> #include<math.h> sbit S0=P1^7 sbit S1=P1^0 //端口定义 sbit S2=P1^1 sbit S3=P1^2 sbit OE=P1^3 sbit OUT=P3^4 //频率从TO口输入 sbit key0=P1^5 sbit LED=P1^6 sbit a=P3^0 sbit b=P3^1 uchar color //1:blue 2:green 3:red uchar T[4] //color timer uchar TH[4] uchar TL[4] uchar bizhi[4] void time1() interrupt 3 { TH[color]=TH0 TL[color]=TL0 T[color]=(TH[color]*0xff+TL[color]) TR0=0 //关定时器 TR1=0 TH1=0xB1 TL1=0xE0 //归0 TH0=0x00 TL0=0x00 //归0 }
上传时间: 2016-11-26
上传用户:秦莞尔w
uc-gui.apj SDT2.51工程文件 uC-GUI\ ADS1.2工程文件夹 FS-GUI UltraEdit工程文件 SI\ SourceInsight工程文件夹 img\ C语言格式位图 gui\ uC-GUI源代码文件夹 不同的LCD需改变\gui\config\lcdconf.h文件中的定义 #Define LCDMONO //单色 #Define LCDG4 //4级灰度 #Define LCDG16 //16级灰度 #Define LCDCOLOR //256色 GUI测试,由于没有触摸屏,所以将触摸屏的代码给屏蔽了; 请将FS44B0II开发板连接好交叉网线、直连串口线、电源, 并连接好G57液晶屏,同时还要连接好背光电源; 然后在BIOS的命令窗口里面敲netrun命令; 点击FS44B0_G57_uCGUI\uC-GUI\FS44B0_G57_uCGUI_Data\DebugRel目录下: 批处理文件FS44B0_G57_uCGUI.BAT 下面你就可以看到液晶屏上面显示优龙标志 它会延时一两秒中进入下一个画面,逐步延时GUI的各项功能,请耐心观看;
标签: SourceInsight UltraEdit uc-gui FS-GUI
上传时间: 2016-12-20
上传用户:franktu
#include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #Define PROMPT_STRING "[myshell]$" #Define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==NULL) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }
上传时间: 2016-12-31
上传用户:colinal
帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <asm/page.h> #include <linux/fb.h> #Define TRUE 1 #Define FALSE 2 //a framebuffer device structure typedef struct fbdev{ int fb unsigned long fb_mem_offset unsigned long fb_mem struct fb_fix_screeninfo fb_fix
上传时间: 2013-12-11
上传用户:bjgaofei
//顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #Define ListSize 100 //表最大长度 //结构定义 typedef struct SeqList { int node[ListSize] //存放表结点 int length //当前表长度 } SeqList //插入元素 insertList(SeqList *list, int e) { int i=list->length-1 //先将i指定为最后一项 if(i>=ListSize-1) //表已经达到最大长度ListSize { printf("表已满,不能增加新的项!\n")
上传时间: 2014-01-17
上传用户:dongqiangqiang