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