嵌入式系统词汇表5
O
OTP
See one-time programmable.
object code(目标代码)
A set of processor-readable opcodes and data. The output of compilers,assemb
lers, linkers, and locators are files containing object code.
处理器能读的操作码和数据。编译器、汇编器、连接器和定位器的输出文件都含有目标
代码。
object file(目标文件)
A file containing object code. The output of a compiler or assembler.
包含目标代码的文件。编译器或汇编器的输出。
one-time programmable(一次可编程的)
Any programmable device, like a PROM, that can be programmed just once by th
e end user. However, this term is used almost exclusively to refer to microc
ontrollers with on-chip PROM.
任一可编程的设备,像PROM,仅仅能被最终用户编程一次。然而,这个术语一般被专有
地使用在拥有片上PROM的微控制器上。
opcode
A sequence of bits that is recognized by the processor as one of the instruc
tions in its instruction set.
一串被处理器验证过的二进制位的序列,它作为其指令集的一个子集。
operating system(操作系统)
A piece of software that makes multitasking possible. An operating system ty
pically consists of a set of function calls, or software interrupts, and a p
eriodic clock tick. The operating system is responsible for deciding which t
ask should be using the processor at a given time and for controlling access
to shared resources.
使多任务能够实现的一个软件。一个操作系统典型地由一个函数调用集、软件中断和定
期时钟周期组成。一个操作系统负责决定哪一个任务在给定的时间将使用处理器,并且
控制对共享资源的访问。
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 i
f a particular interrupt is currently asserted.
一种硬件调试工具,它让你能观察到一个或更多电路上的电压。例如:如果一个特殊的
中断发生,你可以用一个示波器去检测它。
P
PROM(可编程只读存储器)
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 d
evices.
可编程只读存储器。能被设备编程器写的一种ROM。这种内存设备可以被编程一次,所以
它们有时被作为写一次或一次性编程设备来看待。
parallel processing(并行进程)
The ability to apply two or more processors to a single computation.
一种在单个计算机上运行两个或多个程序的能力。
Peripheral (外设)
A piece of hardware other than the processor, usually memory or an I/O devic
e. The peripheral may reside within the same chip as the processor, in which
case it is called an internal peripheral.
一种不同于处理器的硬件设备,常指内存或I/O设备。外设经常和处理器在一片芯片上,
在这种情况下,它被称为集成外设。
physical address(物理地址)
The actual address that is placed on the address bus when accessing a memory
location or register.
当访问内存位置或寄存器时,在地址总线上的真实的地址。
Preemptive(抢先)
A scheduler is said to be preemptive if it allows the running task to be sus
pended when a higher-priority task becomes ready. Non-preemptive schedulers
are easier to implement but less appropriate for embedded systems.
当一个高优先级的任务准备好时,充许正在运行的任务被挂起的调度策略被称为优先。
无优先的调度策略更容易实现一些但适合在嵌入式系统中使用。
Polling(轮询)
A method of interfacing with hardware that involves repeatedly reading a sta
tus register until the device has reached the awaited state. Device drivers
are either polling or interrupt-driven, with the latter being more generally
preferred.
一种硬件交互方法,不断读状态寄存器,直到设备进入等待状态。设备驱动程序不是轮
询的就是中断驱动的,后一种越来越成为首选的。
Priority(优先)
The relative importance of one task compared to another.
一个任务与其他任务相比的重要关系。
priority inversion(优先转置)
An unwanted software situation in which a high-priority task is delayed whil
e waiting for access to a shared resource that is not even being used at the
time. For all practical purposes, the priority of this task has been lowere
d during the delay period.
一种不希望发生的软件状态,在此状态一个高优先级任务因为等待访问一个那时不再使
用的共享资源而被延迟。在所有的实践目标中,这个任务的优先级在延迟周期内都被降
低。
Process(进程)
A word that is often confused with task or thread. The crucial distinction i
s that all of the tasks in a system share a common memory space. Processes,
on the other hand, always have their own private memory space. Processes are
common in multi-user systems but are rarely, if ever, found in embedded sys
tems.
这个名词经常与任务或线程混淆。至关重要的差别在于系统中的所有任务共享公共的内
存空间。进程,另一方面,常常有它们自己的私有内存空间。进程在多用户系统中,但
少有地,如有可能,也可在嵌入式系统中。
Processor(处理器)
A generic term that does not distinction between microprocessor, microcontro
ller, and digital signal processor.
一个对于微处理器、微控制器他数字信号处器无差别的通用术语。
processor family(处理器族)
A set of related processors, usually successive generations from the same ma
nufacturer. For example, Intel"s 80x86 family began with the 8086 and now in
cludes the 80186, 286, 386, 486, Pentium, and many others. The later models
in a family are typically backwards-compatible with the ones that came befor
e.
一个相关的处理器集,常常连续地从一个生产商产生。例如:Intel"s 80x86族开始从8
086开始,现在有80186, 286, 386, 486, Pentium及其他。在一个族中,稍后的产品典
型地向后兼容在它以前生产的产品。
processor-independent(处理器无关)
A piece of software that is independent of the processor on which it will be
run. Most programs that can be written in a high-level language are process
or-independent. Contrast with processor-specific.
一个与处理器无关的,并能在其上运行的软件。大多数用高级语言编写程序是处理器无
关的。相对于处理器定制。
processor-specific(处理器定制)
A piece of software that is highly dependent on the processor on which it wi
ll be run. Such code must usually be written in assembly language. Contrast
with processor-independent.
一个高度依赖处理器的软件,在上其才能运行。一些代码必须用汇编语言编写。相对于
处理器无关。 |