//通過18B20檢測的數字溫度可在電腦上顯示當前溫度值 #include <reg52.h> #define uchar unsigned char #define uint unsigned int sbit DS=P2^2 //define interface uint temp // variable of temperature uchar flag1 // sign of the result positive or negative sbit dula=P2^6 sbit wela=P2^7
標簽: define unsigned include 18B20
上傳時間: 2014-01-19
上傳用戶:Andy123456
讀取CTF腦磁圖數據的Matlab代碼,要求讀取數據為.ds后綴文件
上傳時間: 2013-12-21
上傳用戶:bruce5996
摘要:報適了一種直接序列軟擴頻調制解調器的SAw實現方案,并給出了相應的實驗結果。該方案劉一提高系統抗干擾能力、頻寬利川等方而均具有與其他技術不同的特點。同時,該技術方案為進一步研究DS-0FDM下了基石出。
上傳時間: 2013-12-04
上傳用戶:時代電子小智
在三條徑的瑞利信道中,對于直接序列擴頻: (1) 請設計DS-CDMA一種具體的碼分導引輔助的信道估計方法,接收機分別采用等均益合并、最大比合并。用Simulink進行仿真,測量BPSK的誤碼率性能,畫出比特信噪比與信道估計均方誤差的關系曲線,畫出比特信噪比與誤碼率的關系曲線,請解釋在誤碼率為0.01時,兩種合并方式所表現的不同的物理意義。 (2) 設頻率已經同步,請設計DS-CDMA一種具體的單停頓滑動相關時間同步方法,用Simulink進行仿真(自己編寫代碼S-Function方式),分析所設計方案的時間同步精度,畫出比特信噪比與捕獲概率的關系曲線。 (3) 設時間已經同步,請設計DS-CDMA一種具體的頻率方法,用Simulink進行仿真(自己編寫代碼S-Function方式),畫出比特信噪比與頻率同步誤差的關系曲線。
標簽: 信道
上傳時間: 2017-01-25
上傳用戶:ruan2570406
復接入,B/W雙用戶使用直接擴頻序列 % >>>multiple access b/w 2 users using DS CDMA % >>>format is : cdmamodem(user1,user2,snr_in_dbs) % >>>user1 and user2 are vectors and they should be of equal length % >>>e.g. user1=[1 0 1 0 1 0 1] , user2=[1 1 0 0 0 1 1],snr_in_dbs=-50 % >>>or snr_in_dbs=50 just any number wud do % Waqas Mansoor % NUST , Pakistan
標簽:
上傳時間: 2014-11-22
上傳用戶:zl5712176
CDMA 的仿真程序,Frequency Hopping Spread Spectrum,Random frequency hopps to form a spread signal
上傳時間: 2013-12-22
上傳用戶:nanshan
NanoStack is a 6lowpan IPv6 + IEEE 802.15.4 protocol stack, enabling wireless embedded and sensor networking. The goal is to help 6lowpan spread globally and to encourage new features from the IETF and ISA100 to be implemented and tested.
標簽: NanoStack enabling embedded protocol
上傳時間: 2014-01-21
上傳用戶:牧羊人8920
The computing world has undergone a revolution since the publication of The C Programming Language in 1978. Big computers are much bigger, and personal computers have capabilities that rival mainframes of a decade ago. During this time, C has changed too, although only modestly, and it has spread far beyond its origins as the language of the UNIX operating system
標簽: Programming publication revolution The
上傳時間: 2017-05-16
上傳用戶:thinode
使用matlab實現包絡檢波,解調;matlab與通信仿真;matlab教程;ds-cdma相關文章。
上傳時間: 2013-12-17
上傳用戶:koulian
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