国产精品久久成人网站 ,99热都是精品久久久久久,一边添奶一边添p好爽视频,久久国产精品成人片免费,国产免费无码av片在线观看不卡,国产成人亚洲综合网色欲网久下载,日本牲交大片无遮挡,精品国产亚洲福利一区二区
              TDA2030功放電路圖 電動(dòng)車充電器電路圖 電子電路 功放電路 電子制作 集成塊資料 電子報(bào) pcb 變壓器 元器件知識(shí) 逆變器電路圖 電路圖 開關(guān)電源電路圖 傳感器技術(shù) led 電磁兼容
              電子電路圖
              當(dāng)前位置: 首頁 > 電子電路 > 設(shè)計(jì)編程

              最新嵌入式系統(tǒng)|常用詞匯表2

              時(shí)間:2009-06-18 23:06:36來源:網(wǎng)絡(luò) 作者:admin 點(diǎn)擊:

               

              N
              NVRAM
              Non-Volatile Random-Access Memory. A type of RAM that retains its data even when the system is powered down. NVRAM frequently consists of an SRAM and a long-life battery.
              非易失的隨機(jī)訪問存儲(chǔ)器。一種能在系統(tǒng)關(guān)機(jī)的情況下保持它的數(shù)據(jù)的RAM。NVRAM常常由SRAM和長(zhǎng)壽命電池組成。

               

              O
              OTP
              See one-time programmable.

               

              object code(目標(biāo)代碼)
              A set of processor-readable opcodes and data. The output of compilers,assemblers, linkers, and locators are files containing object code.
              處理器能讀的操作碼和數(shù)據(jù)。編譯器、匯編器、連接器和定位器的輸出文件都含有目標(biāo)代碼。

               

              object file(目標(biāo)文件)
              A file containing object code. The output of a compiler or assembler.
              包含目標(biāo)代碼的文件。編譯器或匯編器的輸出。

               

              one-time programmable(一次可編程的)
              Any programmable device, like a PROM, that can be programmed just once by the end user. However, this term is used almost exclusively to refer to microcontrollers with on-chip PROM.
              任一可編程的設(shè)備,像PROM,僅僅能被最終用戶編程一次。然而,這個(gè)術(shù)語一般被專有地使用在擁有片上PROM的微控制器上。

               

              opcode
              A sequence of bits that is recognized by the processor as one of the instructions in its instruction set.
              一串被處理器驗(yàn)證過的二進(jìn)制位的序列,它作為其指令集的一個(gè)子集。

               

              operating system(操作系統(tǒng))
              A piece of software that makes multitasking possible. An operating system typically consists of a set of function calls, or software interrupts, and a periodic clock tick. The operating system is responsible for deciding which task should be using the processor at a given time and for controlling access to shared resources.
              使多任務(wù)能夠?qū)崿F(xiàn)的一個(gè)軟件。一個(gè)操作系統(tǒng)典型地由一個(gè)函數(shù)調(diào)用集、軟件中斷和定期時(shí)鐘周期組成。一個(gè)操作系統(tǒng)負(fù)責(zé)決定哪一個(gè)任務(wù)在給定的時(shí)間將使用處理器,并且控制對(duì)共享資源的訪問。

               

              Oscilloscope(示波器)
              A hardware debugging tool that allows you to view the voltage on one or more electrical lines. For example, you might use an oscilloscope to determine if a particular interrupt is currently asserted.
              一種硬件調(diào)試工具,它讓你能觀察到一個(gè)或更多電路上的電壓。例如:如果一個(gè)特殊的中斷發(fā)生,你可以用一個(gè)示波器去檢測(cè)它。

               

              P
              PROM(可編程只讀存儲(chǔ)器)
              Programmable Read-Only Memory. A type of ROM that can be written (programmed) with a device programmer. These memory devices can be programmed only once, so they are sometimes referred to as write-once or one-time programmable devices.
              可編程只讀存儲(chǔ)器。能被設(shè)備編程器寫的一種ROM。這種內(nèi)存設(shè)備可以被編程一次,所以它們有時(shí)被作為寫一次或一次性編程設(shè)備來看待。

               

              parallel processing(并行進(jìn)程)
              The ability to apply two or more processors to a single computation.
              一種在單個(gè)計(jì)算機(jī)上運(yùn)行兩個(gè)或多個(gè)程序的能力。

               

              Peripheral (外設(shè))
              A piece of hardware other than the processor, usually memory or an I/O device. The peripheral may reside within the same chip as the processor, in which case it is called an internal peripheral.
              一種不同于處理器的硬件設(shè)備,常指內(nèi)存或I/O設(shè)備。外設(shè)經(jīng)常和處理器在一片芯片上,在這種情況下,它被稱為集成外設(shè)。

               

              physical address(物理地址)
              The actual address that is placed on the address bus when accessing a memory location or register.
              當(dāng)訪問內(nèi)存位置或寄存器時(shí),在地址總線上的真實(shí)的地址。

               

              Preemptive(搶先)
              A scheduler is said to be preemptive if it allows the running task to be suspended when a higher-priority task becomes ready. Non-preemptive schedulers are easier to implement but less appropriate for embedded systems.
              當(dāng)一個(gè)高優(yōu)先級(jí)的任務(wù)準(zhǔn)備好時(shí),充許正在運(yùn)行的任務(wù)被掛起的調(diào)度策略被稱為優(yōu)先。無優(yōu)先的調(diào)度策略更容易實(shí)現(xiàn)一些但適合在嵌入式系統(tǒng)中使用。

               

              Polling(輪詢)
              A method of interfacing with hardware that involves repeatedly reading a status register until the device has reached the awaited state. Device drivers are either polling or interrupt-driven, with the latter being more generally preferred.本文由容源電子網(wǎng)(www.zskn.com.cn)整理提供,部分內(nèi)容來源于網(wǎng)絡(luò),如有侵犯到你的權(quán)利請(qǐng)與我們聯(lián)系更正。

              本文地址:http://www.zskn.com.cn/dz/22/2009618230711.shtml


              本文標(biāo)簽:


              .
              首頁 上一頁12345下一頁尾頁
              頂一下
              0%
              返回首頁
              0
              0%

              ------分隔線----------------------------
              發(fā)表評(píng)論
              請(qǐng)自覺遵守互聯(lián)網(wǎng)相關(guān)的政策法規(guī),嚴(yán)禁發(fā)布色情、暴力、反動(dòng)的言論。
              表情:
              名稱: E-mail: 驗(yàn)證碼: 匿名發(fā)表
              發(fā)布文章,推廣自己產(chǎn)品。
              熱門標(biāo)簽
               
              主站蜘蛛池模板: 亚洲最新版av无码中文字幕一区| 亚洲欧洲无卡二区视頻| 婷婷色综合视频在线观看| 欧美a在线播放| 国产亚洲精品第一综合| 丰满人妻AV无码一区二区三区| 中文字幕日韩精品亚洲一区| 老熟女激烈的高潮| 亚洲五月天一区二区三区| 久久精品人人做人人妻人人玩 | 老司机导航亚洲精品导航| 又爽又黄又无遮掩的免费视频| 亚洲五月天综合| 看黄a大片爽爽影院免费无码| 亚洲国产美女精品久久久| 97久久草草超级碰碰碰| 婷婷成人小说综合专区| 狠狠噜天天噜日日噜视频麻豆 | 亚洲中文字幕无码不卡电影| 亚洲人成电影网站色mp4| 色欲综合视频天天天综合网站| 一本大道久久a久久综合| 日韩成人无码| 国产在线码观看超清无码视频| 精品视频在线观看免费观看| 亚洲国产精品久久艾草| 一本久道视频无线视频| 无码人妻斩一区二区三区| 五月婷婷开心中文字幕| 女性自慰网站免费看ww| 国产成人综合欧美精品久久| 久久久久国产a免费观看rela| 日本一卡二卡四卡无卡国产| 巨胸不知火舞露双奶头无遮挡| 亚洲www啪成人一区二区麻豆| 欧美巨大黑人精品videos| 日韩在线观看中文字幕| 在线观看特色大片免费视频| 又污又黄又无遮挡的网站| 国产在线无码不卡播放| 久久精品国产亚洲av天海翼|