單片機(jī)C語言模塊化編程
上傳時間: 2014-01-12
上傳用戶:sk5201314
51 51匯編指令表
上傳時間: 2013-10-16
上傳用戶:micheal158235
小弟簡單的做了一個數(shù)碼表(匯編寫的),望大神們指點(diǎn)一二
上傳時間: 2013-10-17
上傳用戶:waixingren
Keil_uVision4_V9.00漢化
標(biāo)簽: Keil_uVision 9.00 漢化
上傳時間: 2014-12-26
上傳用戶:wangjg
此資料是 Keil uVision4 V9.00的漢化包,里面有漢化資料和方法。
標(biāo)簽: uVision4 Keil 9.00 漢化包
上傳時間: 2013-10-30
上傳用戶:gxmm
STM32L151xx數(shù)據(jù)表
上傳時間: 2013-10-26
上傳用戶:swing
a_bit equ 20h ;個位數(shù)存放處 b_bit equ 21h ;十位數(shù)存放處 temp equ 22h ;計數(shù)器寄存器 star: mov temp,#0 ;初始化計數(shù)器 stlop: acall display inc temp mov a,temp cjne a,#100,next ;=100重來 mov temp,#0 next: ljmp stlop ;顯示子程序 display: mov a,temp ;將temp中的十六進(jìn)制數(shù)轉(zhuǎn)換成10進(jìn)制 mov b,#10 ;10進(jìn)制/10=10進(jìn)制 div ab mov b_bit,a ;十位在a mov a_bit,b ;個位在b mov dptr,#numtab ;指定查表啟始地址 mov r0,#4 dpl1: mov r1,#250 ;顯示1000次 dplop: mov a,a_bit ;取個位數(shù) MOVC A,@A+DPTR ;查個位數(shù)的7段代碼 mov p0,a ;送出個位的7段代碼
標(biāo)簽: 直接驅(qū)動 數(shù)碼管 計數(shù)器 程序
上傳時間: 2013-11-06
上傳用戶:lx9076
摘要C 根據(jù)單片機(jī)80C196KC和現(xiàn)場可編程系統(tǒng)器件PSD302 的特性! 設(shè)計了一種數(shù)制化電源 裝置! 提供了程序框圖! 并對其進(jìn)行了諧波分析" 它是一種高性能的通用裝置! 可替代傳統(tǒng)的F96 逆 變電源" 關(guān)鍵詞’ 電力電子器件電源單片機(jī)現(xiàn)場可編程系統(tǒng)器件
標(biāo)簽: PSD 單片機(jī) 數(shù)制 電源
上傳時間: 2013-10-20
上傳用戶:cc1015285075
為解決電致變色器件的顏色變化受外界環(huán)境顏色控制的問題,設(shè)計了一種基于單片機(jī)的便攜式顏色自適應(yīng)識別電路。與傳統(tǒng)顏色識別電路相比較,該電路利用數(shù)字式的顏色傳感器來獲取外界環(huán)境顏色,產(chǎn)生的數(shù)字顏色信號易于單片機(jī)進(jìn)行處理。在電路中,下位機(jī)部分主要負(fù)責(zé)獲取電致變色器件變色參數(shù)及控制電致變色器件的顏色變化;而上位機(jī)部分主要負(fù)責(zé)把下位機(jī)獲取的電致變色器件變色參數(shù)進(jìn)行電壓到顏色的曲線擬合,并通過藍(lán)牙通信把擬合曲線參數(shù)傳遞給下位機(jī)。結(jié)果表明,該電路能自動根據(jù)環(huán)境顏色提供-4~4 V范圍步進(jìn)為0.1 V的電壓來驅(qū)動電致變色器件的顏色顯示,與傳統(tǒng)的顏色識別電路設(shè)計相比,識別的精度和速度都得到了明顯改善。 Abstract: In this paper, a portable adaptive circuit for color identification(PACCI) based on MCU was designed. Compared to the traditional color identification circuit, the PACCI adopts digital sensor to detect the color data from external environment and further generate digital color data, which can be processed easily by MCU. In PACCI, the slave is mainly responsible for detecting the color parameters of the corresponding elcreochromic device and further driving it. For the master, which is mainly responsible for the color curve fitting based on the parameters of the electrochromic device, and transmits the fitting parameters to the slave through the bluetooth device. The results show that the PACCI can provide the basis voltage range from -4V to 4V automatically based on the colors of external environment with step as 0.1V to drive the corresponding electrochromic device. Compared to the traditional color recognition circuit, the recognition accuracy and speed of PACCI have been improved significantly.
上傳時間: 2013-11-09
上傳用戶:franktu
單片機(jī)雙工通信時用到的校驗方式 Ø奇偶校驗原理:通過計算數(shù)據(jù)中“1”的個數(shù)是奇數(shù)還是偶數(shù)來判斷數(shù)據(jù)的正確性。在被校驗的數(shù)據(jù)后加一位校驗位或校驗字符用作校驗碼實(shí)現(xiàn)校驗。 Ø校驗位的生成方法 Ø奇校驗:確保整個被傳輸?shù)臄?shù)據(jù)中“1”的個數(shù)是奇數(shù)個,即載荷數(shù)據(jù)中“1”的個數(shù)是奇數(shù)個時校驗位填“0”,否則填“1”; 偶校驗:確保整個被傳輸?shù)臄?shù)據(jù)中“1”的個數(shù)是偶數(shù)個,即載荷數(shù)據(jù)中“1”的個數(shù)是奇數(shù)個時校驗位填“1”,否則填“0”
上傳時間: 2013-10-16
上傳用戶:天誠24
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1