亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Front-Ends

  • 多媒體5.1聲道遙控功放全套方案(原理圖+制作元件參數全套)各功能描述: 1. 當A為低電平時,AC-3燈點亮,即是AC-3的輸入方式 當A為高電平時,STEREO燈點亮,即是STEREO的輸入方

    多媒體5.1聲道遙控功放全套方案(原理圖+制作元件參數全套)各功能描述: 1. 當A為低電平時,AC-3燈點亮,即是AC-3的輸入方式 當A為高電平時,STEREO燈點亮,即是STEREO的輸入方式 2. 當STANDBY燈點亮時,為待機狀態;此LED閃動時為MUTE狀態,PT2258為靜音狀態,同時STANDBY為低電平 3. 各聲道(FRONT,SUB,REAR,CENT)其微調音量調節+/-5dB;音量調節從01~80dB 4. 面板無任何按鍵,均為遙控器控制 5. 剛開機時為待機狀態,開機時音量為50dB狀態,各微調為0dB, 6. 按遙控器的REST鍵后,系統為開機時狀態, 7. PT2258音量衰減共80DB,按遙控器每按一次衰減1dB,

    標簽: STEREO AC 5.1 多媒體

    上傳時間: 2017-02-21

    上傳用戶:黃華強

  • In the last three articles, I’ve been walking you through the creation of an end-to-end BlackBerry a

    In the last three articles, I’ve been walking you through the creation of an end-to-end BlackBerry application that will serve as a mobile front-end to my Knowledge Base sample web application.

    標簽: BlackBerry end-to-end the articles

    上傳時間: 2014-01-25

    上傳用戶:kristycreasy

  • 這個設計是使用Virtex-4實現DDR的控制器的

    這個設計是使用Virtex-4實現DDR的控制器的,設計分為三個主要模塊:Front-End FIFOs,DDR SDRAM Controller和Datapath Module。其中主要是DDR SDRAM Controller,當然還有測試模塊。

    標簽: Virtex DDR 控制器

    上傳時間: 2017-05-20

    上傳用戶:llandlu

  • Emdros is a text database middleware-layer aimed at storage and retrieval of "text plus information

    Emdros is a text database middleware-layer aimed at storage and retrieval of "text plus information about that text." This information could be linguistic analyses or other annotations. Emdros provides an abstraction of text that makes it well suited to storing /syntactic analyses/ of text, but other linguistic information is supported as well. Emdros comes with a query-language, MQL, that enables powerful queries. Emdros acts as a middleware-layer between a client (not provided) and a database back-end. Currently, PostgreSQL, MySQL, and SQLite (2 and 3) are supported, but other back-ends can easily be added.

    標簽: text middleware-layer information retrieval

    上傳時間: 2014-01-02

    上傳用戶:wfeel

  • Wireless range extenders or wireless repeaters can extend the range of an existing wireless network.

    Wireless range extenders or wireless repeaters can extend the range of an existing wireless network. Range extenders can be strategically placed to elongate a signal area or allow for the signal area to reach around barriers such as those created in L-shaped corridors. Wireless devices connected through repeaters will suffer from an increased latency for each hop. Additionally, a wireless device connected to any of the repeaters in the chain will have a throughput that is limited by the weakest link between the two nodes in the chain from which the connection originates to where the connection ends

    標簽: wireless range extenders repeaters

    上傳時間: 2014-01-02

    上傳用戶:zhangyigenius

  • AVR single-chip developed by a very low threshold, as long as the computer will be able to study the

    AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."

    標簽: single-chip developed threshold the

    上傳時間: 2017-09-12

    上傳用戶:shinesyh

  • AVR single-chip developed by a very low threshold, as long as the computer will be able to study the

    AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."

    標簽: single-chip developed threshold the

    上傳時間: 2013-12-09

    上傳用戶:invtnewer

  • 16進制轉十進制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定義鍵盤輸入需要的緩沖區 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a號功能,輸入一個字符串 mov ah,0ah               ;用回車結束 int 21h mov dl,0ah               ;再進行換行,以便在下一行顯示轉換后的字符串  mov ah,2     int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符個數,作為循環的次數 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小寫字母,則轉換為大寫字母 mov [w],ax mov dl,[bx]             ;取出一個字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循環,處理完整個字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    標簽: 匯編

    上傳時間: 2015-04-02

    上傳用戶:wcc0310

  • 5.1功放全套方案PT2258

    UNTER EQU 35H;顯示計數 REMVOL  EQU  36H;音量連續控制 DISPBUFF1 EQU 37H; DISPBUFF2 EQU 38H; DISPBUFF3 EQU 39H; DISPBUFF EQU 3AH; SDA BIT P3.4 SCL BIT P3.2 MTD EQU 30H;PT2258數據首址 NUMBYT EQU 3BH;PT2258數據位數 CS_X1 EQU 3CH;遙控 CS0_X1 EQU 3DH U0_X1 EQU 3EH;遙控數據暫存區 NO_M EQU 40H;數據碼 FRONT EQU 41H

    標簽: PT2258

    上傳時間: 2015-04-26

    上傳用戶:solomon33

  • 判斷奇數或偶數

    判斷奇偶數的匯編程序CODE     SEGMENT          ASSUME   CS: CODE START:   MOV      AH,  01H         ; 調用 DOS中斷的1號子功能(鍵入一個字符),          INT      21H              ; AL←鍵入一位數字          CMP   AL,  30H    ; 若輸入比‘0’小的字符則重新輸入   JB   START   CMP   AL,  39H    ; 若輸入比‘9’大的字符則重新輸入   JA   START    CLC                       ; CF標志清0          SHR      AL,  1           ; AL最低位移入CF          JNC      EVN              ; 根據CF的狀態,判斷輸入數字的奇偶性          MOV      BL,  31H         ; 奇數,BL←1的ASCII碼          JMP      DISP EVN:     MOV      BL,  30H         ; 偶數,BL←0的ASCII碼 DISP:    MOV      AH,  02H         ; 調用DOS中斷的2號子功能,輸出字符          MOV      DL,  0AH         ; 輸出換行          INT      21H          MOV      DL,  0DH         ; 輸出回車          INT      21H          MOV      DL,  BL          ; 輸出標志字符          INT      21H   mov   ah, 1   int   21h          MOV      AH, 4CH          ; 返回DOS          INT      21H CODE     ENDS          END      START

    標簽:

    上傳時間: 2015-06-10

    上傳用戶:zhuangxj618

主站蜘蛛池模板: 临西县| 玉龙| 漠河县| 桐柏县| 广宗县| 山西省| 威海市| 钦州市| 随州市| 千阳县| 环江| 彭水| 泰宁县| 满洲里市| 班戈县| 洮南市| 琼海市| 铜山县| 潞西市| 杭锦后旗| 息烽县| 观塘区| 仁寿县| 奉节县| 汝州市| 浪卡子县| 海原县| 彭阳县| 平安县| 越西县| 信阳市| 桦川县| 平陆县| 河西区| 乐昌市| 斗六市| 浙江省| 登封市| 钟山县| 巨鹿县| 涞水县|