51單片機(jī)在微型智能控制系統(tǒng)中應(yīng)用很廣,隨著人們對控制系統(tǒng)的要求不斷提高, 51 單片機(jī)的功能局限越發(fā)明顯。特別是51系列單片機(jī)不具有實(shí)時(shí)多任務(wù)支持功能,大大限制其在控制系統(tǒng)中的進(jìn)一步發(fā)展。而多任務(wù)恰恰是現(xiàn)代操作系統(tǒng)的突出特點(diǎn),將多任務(wù)機(jī)制引入 單片機(jī)系統(tǒng)。
標(biāo)簽: 控制系統(tǒng) 單片機(jī) 51 51單片機(jī)
上傳時(shí)間: 2014-11-23
上傳用戶:Altman
16bit霹靂燈 LED左右來回跑 時(shí)快時(shí)慢 也可以設(shè)定成跑馬燈形式
上傳時(shí)間: 2014-11-15
上傳用戶:ecooo
從KIMO股價(jià)網(wǎng)頁抓取即時(shí)股價(jià)的程式範(fàn)例
上傳時(shí)間: 2014-01-17
上傳用戶:heart520beat
1.檢測CPU的型號 2.檢測記憶體狀態(tài) 3.檢測可用硬碟空間 4.檢測CD-ROM
上傳時(shí)間: 2014-01-14
上傳用戶:84425894
教你如何用actionscrit做計(jì)時(shí)運(yùn)算 超有趣的 試著玩玩看喔
標(biāo)簽: actionscrit
上傳時(shí)間: 2014-01-18
上傳用戶:zgu489
在交通收費(fèi)和路口監(jiān)控等車牌識別應(yīng)用中,純粹依靠PC機(jī)通常難以達(dá)到實(shí)時(shí)性,應(yīng)用受到了限制, 在將DSP引入到車牌識別應(yīng)用系統(tǒng)后,此問題可得到較好解決。本DSP系統(tǒng)以TIC6201 DSP處理器為核心,配置 SAA7111A視頻解碼芯片SAA7111A作為圖像輸入通道,使用PCI2040實(shí)現(xiàn)了DSP以PCI接口方式與PC的通信。 在此系統(tǒng)中,DSP運(yùn)行識別算法,然后將識別結(jié)果通過PCI接口傳輸給PC供PC進(jìn)行顯示和管理。整個(gè)系統(tǒng)計(jì)算 分布合理,實(shí)時(shí)性強(qiáng),極大提高了實(shí)用性
上傳時(shí)間: 2014-12-07
上傳用戶:kikye
國標(biāo)類相關(guān)專輯 313冊 701M中文版ROSH關(guān)于在電氣電子設(shè)備中限制使用某些有害物質(zhì)指令.pdf
標(biāo)簽:
上傳時(shí)間: 2014-05-05
上傳用戶:時(shí)代將軍
演算法評估 用空間和時(shí)間評估演算法效能 時(shí)間複雜度(Time Complexity) 空間複雜度(Space Complexity) 效能評估 效能分析(Performance Analysis):事前評估 效能評估(Performance Measurement):效能量測 評估時(shí)均假設(shè)處理的資料量為n到無窮大
標(biāo)簽: 演算
上傳時(shí)間: 2015-06-13
上傳用戶:18007270712
asp實(shí)現(xiàn)限制一個(gè)ip只能訪問一次的方法 <% '///////////////////////////////////////////////////// '// // '//作用:一個(gè)IP地址只允許訪問本頁一次 // '//引用:<!-- #include file="Check_Ip.asp" --> // '// // '///////////////////////////////////////////////////// 'Response.Charset = 936 '設(shè)置輸出編碼為簡體中文 'Response.Buffer = false '關(guān)閉緩沖區(qū) Dim Fso,ts,IpList,Cfs '設(shè)置Cookies函數(shù) Function SetCookie() Response.Cookies("IsBrow") = "Brow" Response.Cookies("IsBrow").Expires = Date+365 End Function '記錄IP地址函數(shù) Function WriteIp(FileName, IpAddress) Set Fso = Server.CreateObject("Scripting.FileSystemObject") Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true) ts.WriteLine IpAddress ts.Close Set ts = Nothing Set Fso = Nothing End Function '讀取IP地址函數(shù) Function ReadIpList(FileName) Set Fso = Server.CreateObject("Scripting.FileSystemObject") If Not Fso.FileExists(Server.MapPath(FileName)) Then CreateFile("Iplist.txt") Exit Function End If Set ts = Fso.OpenTextFile(Server.MapPath(FileName)) Iplist = ts.ReadAll ts.Close Set ts = Nothing Set Fso = Nothing ReadIpList = Iplist End Function '創(chuàng)建文件函數(shù) Function CreateFile(FileName) Set Fso = Server.CreateObject("Scripting.FileSystemObject") Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName)) Cfs.Close Set Cfs = Nothing Set Fso = Nothing End Function '關(guān)閉當(dāng)前IE窗口函數(shù)(注:IE6下通過,其他瀏覽器未測試) Function CloseWindow() 'Response.Write "<script>window.location='javascript:window.opener=null;window.close();'</script>" Response.Redirect "http://www.baidu.com" End Function Ip = Request.ServerVariables("REMOTE_ADDR") '獲取瀏覽者IP地址 Cookie = Request.Cookies("IsBrow") '獲取當(dāng)前Cookies 'Response.Write Cookie If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then Response.Write "本站不允許使用代理訪問" Response.End() Else If Cookie = "Brow" Then CloseWindow() Else If Instr(ReadIpList("Iplist.txt"),Ip) <>0 Then CloseWindow() Else WriteIp "Iplist.txt" , Ip End If SetCookie() End If End If %>
上傳時(shí)間: 2016-07-14
上傳用戶:helei0915
確定SJA1000 CAN控制器的位定時(shí)參數(shù)_SJA1000weidingshi
上傳時(shí)間: 2016-11-24
上傳用戶:test1111
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1