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

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

停車(chē)場(chǎng)

  • LinQ SQL TẤ N CÔ NG KIỂ U SQL INJECTION - TÁ C HẠ I VÀ PHÒ NG TR

    LinQ SQL TẤ N CÔ NG KIỂ U SQL INJECTION - TÁ C HẠ I VÀ PHÒ NG TRÁ NH

    標簽: INJECTION SQL LinQ 7844

    上傳時間: 2013-12-15

    上傳用戶:eclipse

  • client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> i

    client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) }

    標簽: include socket sys gt

    上傳時間: 2017-07-29

    上傳用戶:wab1981

  • c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, e

    c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, ebook. Programming Microcontrollers in C (Ted Van Sickle) C Programming for Microcontrollers (Joe Pardue SmileyMicros.com ) Programming 16-Bit PIC Microcontrollers in C (Jucio di jasio ) C Programming for AVR Programming embedded system I,II (Michael J . Pont ) ( các tài liệ u này đ ã down load về )

    標簽: 7919 7873 7843 7875

    上傳時間: 2017-07-29

    上傳用戶:壞壞的華仔

  • This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to

    This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance microcontroller solution in small die size. To reduce total system cost, the S3C2410X includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.

    標簽: This microprocessor describes S3C2410X

    上傳時間: 2014-01-11

    上傳用戶:shizhanincc

  • 1年12倍之吃漲停 10天3%成功率92.5%附公式

    1年12倍之吃漲停 10天3%成功率92.5%附公式

    標簽: 92.5 成功率

    上傳時間: 2013-12-28

    上傳用戶:天涯

  • 該程序用來實現發輸電系統可靠性指標的計算。程序實現中定義的類的功能主要有計算負荷頻率指標、形成停用表、并聯卷積計算、發電機與負荷并聯卷積、串聯卷積、計算并輸出可靠性指標的結果等。

    該程序用來實現發輸電系統可靠性指標的計算。程序實現中定義的類的功能主要有計算負荷頻率指標、形成停用表、并聯卷積計算、發電機與負荷并聯卷積、串聯卷積、計算并輸出可靠性指標的結果等。

    標簽: 計算 卷積 指標 程序

    上傳時間: 2017-09-11

    上傳用戶:CHINA526

  • DELPHI車輛管理系統 幾經修改

    DELPHI車輛管理系統 幾經修改,完善不少

    標簽: DELPHI 系統 修改

    上傳時間: 2017-09-14

    上傳用戶:ynsnjs

  • 停等協議 實現停等協議 利用發送端和接收端 利用串口

    停等協議 實現停等協議 利用發送端和接收端 利用串口

    標簽: 協議 串口 發送 接收端

    上傳時間: 2014-01-11

    上傳用戶:llandlu

  • 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

  • msp430

    msp430The LDC1312 and LDC1314 are 2- and 4-channel, 1? Easy-to-use – minimal configuration required 12-bit inductance to digital converters (LDCs) for ? Measure up to 4 sensors with one IC inductive sensing solutions. With multiple channels ? Multiple channels support environmental and and support for remote sensing, the LDC1312 and aging compensation LDC1314 enable the performance and reliability benefits of inductive sensing to be realized at minimal? Multi-channel remote sensing provides lowest cost and power. The products are easy to use, onlysystem cost requiring that the sensor frequency be within 1 kHz ? Pin-compatible medium and high-resolution and 10 MHz to begin sensing. The wide 1 kHz to 10 options MHz sensor frequency range also enables use of very small PCB coils, further reducing sensing– LDC1312/4: 2/4-ch 12-bit LDC solution cost and size.– LDC1612/4: 2/4-ch 28

    標簽: msp 430

    上傳時間: 2016-07-22

    上傳用戶:tongmoonsky

主站蜘蛛池模板: 德惠市| 安陆市| 乌拉特后旗| 桃园市| 临夏县| 临湘市| 九江县| 英超| 苗栗县| 平凉市| 井陉县| 恭城| 清镇市| 泸水县| 齐河县| 铜鼓县| 紫阳县| 蒙自县| 青阳县| 伊通| 土默特左旗| 永登县| 冀州市| 平果县| 自贡市| 永兴县| 易门县| 隆回县| 天长市| 二连浩特市| 如东县| 略阳县| 哈密市| 洛宁县| 沭阳县| 临泽县| 丰城市| 七台河市| 房山区| 景东| 沐川县|