針對UHF讀寫器設計中,在符合EPC Gen2標準的情況下,對標簽返回的高速數據進行正確解碼以達到正確讀取標簽的要求,提出了一種新的在ARM平臺下采用邊沿捕獲統計定時器數判斷數據的方法,并對FM0編碼進行解碼。與傳統的使用定時器定時采樣高低電平的FM0解碼方法相比,該解碼方法可以減少定時器定時誤差累積的影響;可以將捕獲定時器數中斷與數據判斷解碼相對分隔開,使得中斷對解碼影響很小,實現捕獲與解碼的同步。通過實驗表明,這種方法提高了解碼的效率,在160 Kb/s的接收速度下,讀取一張標簽的時間約為30次/s。 Abstract: Aiming at the requirement of receiving correctly decoded data from the tag under high-speed communication which complied with EPC Gen2 standard in the design of UHF interrogator, the article introduced a new technology for FM0 decoding which counted the Timer counter to judge data by using the edge interval of signal capture based on the ARM7 platform. Compared with the traditional FM0 decoding method which used the Timer timed to sample the high and low level, the method could reduce the accumulation of timing error and could relatively separate capture Timer interrupt and the data judgment for decoding, so that the disruption effect on the decoding was small and realizd synchronization of capture and decoding. Testing result shows that the method improves the efficiency of decoding, at 160 Kb/s receiving speed, the time of the interrogator to read a tag is about 30 times/s.
上傳時間: 2013-11-10
上傳用戶:liufei
The LPC1850/30/20/10 are ARM Cortex-M3 based microcontrollers for embeddedapplications. The ARM Cortex-M3 is a next generation core that offers systemenhancements such as low power consumption, enhanced debug features, and a highlevel of support block integration.The LPC1850/30/20/10 operate at CPU frequencies of up to 150 MHz. The ARMCortex-M3 CPU incorporates a 3-stage pipeline and uses a Harvard architecture withseparate local instruction and data buses as well as a third bus for peripherals. The ARMCortex-M3 CPU also includes an internal prefetch unit that supports speculativebranching.The LPC1850/30/20/10 include up to 200 kB of on-chip SRAM data memory, a quad SPIFlash Interface (SPIFI), a State Configuration Timer (SCT) subsystem, two High-speedUSB controllers, Ethernet, LCD, an external memory controller, and multiple digital andanalog peripherals.
上傳時間: 2014-12-31
上傳用戶:zhuoying119
The LPC4350/30/20/10 are ARM Cortex-M4 based microcontrollers for embeddedapplications. The ARM Cortex-M4 is a next generation core that offers systemenhancements such as low power consumption, enhanced debug features, and a highlevel of support block integration.The LPC4350/30/20/10 operate at CPU frequencies of up to 150 MHz. The ARMCortex-M4 CPU incorporates a 3-stage pipeline, uses a Harvard architecture withseparate local instruction and data buses as well as a third bus for peripherals, andincludes an internal prefetch unit that supports speculative branching. The ARMCortex-M4 supports single-cycle digital signal processing and SIMD instructions. Ahardware floating-point processor is integrated in the core.The LPC4350/30/20/10 include an ARM Cortex-M0 coprocessor, up to 264 kB of datamemory, advanced configurable peripherals such as the State Configurable Timer (SCT)and the Serial General Purpose I/O (SGPIO) interface, two High-speed USB controllers,Ethernet, LCD, an external memory controller, and multiple digital and analog peripherals
上傳時間: 2013-10-28
上傳用戶:15501536189
文字的顏色漸變,On Timer用法
標簽:
上傳時間: 2013-12-17
上傳用戶:hasan2015
有關此程序的功能請見程序中的幫助菜單程序難點1:創建Windows xp中按鈕樣式解決方法:使用標簽控件與形狀控件一起形成此樣式此方法缺點:由于標簽沒有TAB事件,所以不能使用鍵盤控制按鈕。此缺點解方法:截取鍵盤事件,以響應TAB事件(時間有限,沒有實現)程序難點2:實時與分時混合應用解決方法:置一FOR循環在Timer中,先判斷并響應時實進程,再置另一當循環在Timer中,無時實時再執行分時進程。程序難點3:分頁式內存管理的調度方式解決方法:具體方法見程序中的注釋。程序難點4:基于優先級的調度方式解決方法:使用雙重當循環,第一層判斷優先級,第二層判斷執行進程.此程序不足之處:不能響應鍵盤事件,沒有程序的等待狀態,由于LIST控件的先天不足進程列表看上去有點閃爍。當然程序的等待狀態可以隨機產生但由于沒有太多時間專注于此,只好等以后再完善了。希望大家指出不足之處!
上傳時間: 2015-03-12
上傳用戶:海陸空653
一個交通紅綠燈線程,利用組件Timer來進行時間分割,出來的效果真的不錯~
上傳時間: 2013-12-09
上傳用戶:pinksun9
tty驅動 * This driver shows how to create a minimal tty driver. It does not rely on * any backing hardware, but creates a Timer that emulates data being received * from some kind of hardware.
標簽: driver tty backing minimal
上傳時間: 2013-12-04
上傳用戶:金宜
Tic Tac Toe程序。可以供一到兩個玩家使用。程序中使用了visual basic 計時器,所以每一個步驟都有時間限制。此外,計算機可是一個有簡單智能的對手,他不但不會隨便出手,反而還要竭力贏了你才罷休。 Tic Tac Toe program. One or two players. It uses the visual basic Timer, so each move has time limit. Simple artificial intelligence: computer does not play randomly, but "tries" to win and stop you from winning.
上傳時間: 2015-04-11
上傳用戶:sxdtlqqjl
This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrupt driven (with the exception of sending the data via USB to the host.) An interrupt is generated when the PS/2 start bit is received, at which time the firmware will begin its receive routine. In addition to this interrupt, every 168ms a Timer overflow interrupts the main program and implements one state of the mouse state machine. This state machine handles sending bytes to and translating bytes received from the PS/2 mouse automatically. All of this is done in the background while the main program runs in the foreground. The only operation that the main program implements is sending mouse data to the PC via USB.
標簽: firmware mouse translates translator
上傳時間: 2015-04-26
上傳用戶:cuiyashuo
The goal of this lab is (1) to under the defects of software Timers, (2) to write a periodic program without Timers, (3) to write a periodic program using Timer Hardware:Host computer PC Software: GNU GCC
標簽: software periodic defects Timers
上傳時間: 2014-08-13
上傳用戶:古谷仁美