5-2的副本

Size: px
Start display at page:

Download "5-2的副本"

Transcription

1 操作系统 5. 输 入与输出 Input / Output (I/O) 任课教师 : 熊焰 黄 文超

2 I/O 硬件原理理 芯 片电路路电源 马达 硬件编程 软件接 口硬件指令调 用函数返回错误 电 子 工程师 Electrical Engineers 操作系统 程序员 Programers

3 I/O 硬件原理理 I/O 设备 I/O 设备的分类 块设备 (Block Devices) 块 大 小固定, 可寻址 硬盘 蓝光光盘 U 盘 字符设备 (Character Devices) 传输字符流, 不不可寻址 打印机,mice, rats, 其它看起来不不像磁盘的设备...

4 I/O 硬件原理理 I/O 设备 Device Data rate Ke yboard 10 bytes/sec Mouse 100 bytes/sec 56K modem 7 KB/sec Scanner at 300 dpi 1 MB/sec Digital camcorder 3.5 MB/sec 4x Blu-ray disc 18 MB/sec n Wireless 37.5 MB/sec USB MB/sec FireWire MB/sec Gigabit Ethernet 125 MB/sec SATA 3 disk drive 600 MB/sec USB MB/sec SCSI Ultra 5 bus 640 MB/sec Single-lane PCIe 3.0 bus 985 MB/sec Thunderbolt 2 bus 2.5 GB/sec SONET OC-768 networ k 5 GB/sec

5 I/O 硬件原理理 设备控制器器 (Device Controllers) Monitor Keyboard USB printer Hard disk drive CPU MMU Memory Video controller Keyboard controller USB controller Hard disk controller Bus 控制器器的作 用 : 设备的 bit 流 > 字节块 > 校验 例例 : LCD 控制器器 : 设定各参数, 然后传字符流

6 I/O 硬件原理理 内存映射 I/O (Memory-Mapped I/O) 控制器器中的组件 寄存器器 : 与 CPU 交互 数据缓存 : 用于 大量量数据读写, 例例如 : 显示像素点

7 I/O 硬件原理理内存映射 I/O (Memory-Mapped I/O) 控制器器中的寄存器器 每个寄存器器被分配 一个 I/O port number (8 位或 16 位 ) I/O port 集合构成了了 I/O port 空间 ( 仅操作系统可访问 ) 例例 : IN REG, PORT OUT PORT, REG MOV 与 IN 不不同!

8 I/O 硬件原理理 内存映射 I/O (Memory-Mapped I/O) Two address One address space Two address spaces 0xFFFF Memory I/O ports 0 (a) (b) (c) Figure 5-2. (a) Separate I/O and memory space. (b) Memory-mapped I/O. (c) Hybrid.

9 I/O 硬件原理理内存映射 I/O (Memory-Mapped I/O) 内存映射 I/O 与寄存器器访问相 比 ( 优点 ) 易易于编程 ( 权限问题 ) 不不需要特殊保护机制 带引 用的指令 LOOP: TEST PORT 4 // check if por t 4 is 0 BEQ READY // if it is 0, go to ready BRANCH LOOP // otherwise, continue testing READY:

10 I/O 硬件原理理 内存映射 I/O (Memory-Mapped I/O) 内存映射 I/O 与寄存器器访问相 比 ( 缺点 ) Cache 问题 ( 灾难性问题 ) 多总线问题 CPU reads and writes of memory go over this high-bandwidth bus CPU Memory I/O CPU Memory I/O All addresses (memory and I/O) go here (a) Bus (b) This memory port is to allow I/O devices access to memory Figure 5-3. (a) A single-bus architecture. (b) A dual-bus memory architecture.

11 I/O 硬件原理理 直接存储器器访问 (Direct Memory Access, DMA) 前两种 方案共有的问题 : CPU 发送 一次请求, 只能获取 一个字节! 直接存储器器访问 (Direct Memory Access, DMA) Drive CPU 1. CPU programs the DMA controller DMA controller Disk controller Buffer Main memory Address Count Control 4. Ack Interrupt when done 2. DMA requests transfer to memory 3. Data transferred Bus

12 I/O 硬件原理理 直接存储器器访问 (Direct Memory Access, DMA) DMA 的缺点 CPU 的速度 比 DMA 控制器器快 只使 用 CPU 会更更省钱 ( 比如嵌 入式系统 )

13 I/O 硬件原理理 中断 (Interrupts) 中断可以使 CPU 停 止当前 工作, 并开启另 一个 工作 CPU 3. CPU acks interrupt Interrupt controller 1. Device is finished Disk 2. Controller issues interrupt Clock Keyboard Printer Bus 如果没有其它中断在等待, 中断控制器器 马上处理理中断 如果有另 一个设备同时也发起中断, 则忽略略该中断

14 I/O 硬件原理理 中断 (Interrupts) 过程 1. Interrupt controller 在地址线上放置 一个数字, 表明 哪个设备需要关注 并置起 一个 Interrupt signal; 2. CPU 接受到 Interrupt signal 后停 止当前 工作 ; 3. CPU 根据地址线上的数字查找 interrupt vector table; 4. CPU 获得对应 interrupt vector 的 PC, 并执 行行 interrupt-service procedure ; 5. interrupt-service procedure 开始运 行行后, 将 一个确定的值写到 Interrupt controller 的某个 I/O 端 口作为响应 以告诉 Interrupt controller 可以继续发出中断

15 I/O 硬件原理理 中断 (Interrupts) 问题 1: 如何保存信息 方法 1: 放 入寄存器器? 缺点 : 需等待很 长时间, 直 至所有的信息被读取 方法 2: 放 入栈? 用户栈? 可能导致错误 内核栈? 需要切换到内核模式, 很多 TLB 和 cache 将失效

16 I/O 硬件原理理 中断 (Interrupts) 问题 2: 现代 CPU 多使 用流 水线 (Pipeline) 和超纯量量 (Superscalar) 优化问题 : 从前的模型 : 每个指令按顺序执 行行 优化的模型 :Program Counter 不不再有效 指令已预先被执 行行 (Pipeline) 或多指令并 行行执 行行 (Superscalar)

17 I/O 硬件原理理 中断 (Interrupts) Precise Interrupt VS Imprecise Interrupt PC Not executed Not executed Not executed Not executed Fully executed Fully executed Fully executed Fully executed (a) PC Not executed 10% executed 40% executed 35% executed 20% executed 60% executed 80% executed Fully executed (b) Figure 5-6. (a) A precise interrupt. (b) An imprecise interrupt.

18 I/O 硬件原理理中断 (Interrupts) 各 自的优缺点 Precise Interrupt 高兼容性 芯 片设计难度变 高 Imprecise Interrupt 由于芯 片设计难度降低, 多余的空间可 用于提 高CPU 性能 但操作系统的设计难度变 高

19 I/O 软件原理理 目标 设备独 立性 (Device independence) 统 一命名 (Uniform naming) 错误处理理 (Error handling) 同步 (synchronous) 与 非同步 (asynchronous) 大多物理理设备为 非同步 但同步程序更更易易于编写 缓冲 (buffering) 例例 Audio recording 可共享 (Sharable) 设备 V.S. 独享 (dedicated) 设备 Printer. VS disk

20 I/O 软件原理理 种类 编程 I/O (Programmed I/O) 中断驱动 I/O (Interrupt-Driven I/O) 使 用 DMA 的 I/O

21 让 CPU 做所有的 工作 I/O 软件原理理 Programmed I/O User space Kernel space String to be printed ABCD EFGH Printed page Next ABCD EFGH Printed page A Next ABCD EFGH AB (a) (b) (c) Figure 5-7. Steps in printing a string.

22 让 CPU 做所有的 工作 I/O 软件原理理 Programmed I/O copy from user(buffer, p, count); / * p is the ker nel buffer * / for (i = 0; i < count; i++) { / * loop on every character * / while ( * pr inter status reg!= READY) ; / * loop until ready * / * pr inter data register = p[i]; / * output one character * / } retur n to user( );

23 I/O 软件原理理 Interrupt-Driven I/O copy from user(buffer, p, count); if (count == 0) { enable interr upts( ); unblock user( ); while ( * pr inter status reg!= READY) ; } else { * pr inter data register = p[0]; * pr inter data register = p[i]; scheduler( ); count = count 1; i = i + 1; } acknowledge interr upt( ); retur n from interr upt( ); (a) (b) Figure 5-9. Writing a string to the printer using interrupt-driven I/O. (a) Code executed at the time the print system call is made. (b) Interrupt service procedure for the printer.

24 I/O 软件原理理 I/O Using DMA copy from user(buffer, p, count); acknowledge interr upt( ); set up DMA controller( ); unblock user( ); scheduler( ); retur n from interr upt( ); (a) (b) Figure Printing a string using DMA. (a) Code executed when the print system call is made. (b) Interrupt-service procedure.

25 I/O 的软件层次 User-level I/O software Device-independent operating system software Device drivers Interrupt handlers Hardware

26 I/O 的软件层次 中断处理理程序 (Interrupt Handlers) 操作系统需完成如下复杂的任务 : 1. 保存没有被中断硬件保存的所有寄存器器 (PSW) 2. 为中断服务过程设置上下 文 3. 为中断服务过程设置堆栈 4. 应答中断控制器器 5. 将寄存器器从被保存的地 方复制到进程表 6. 运 行行中断服务过程 7. 选择下 一次运 行行哪个进程 8. 为下个进程设置 MMU 上下 文 9. 装 入新进程的寄存器器 10. 运 行行新进程

27 I/O 的软件层次设备驱动程序 (Device Drivers) 每个连接到计算机的 I/O 设备都需要某些特定的代码来对其进 行行控制, 这样的代码称之为设备驱动程序 驱动程序 一般由设备制造商提供 设备驱动程序通常是必须是操作系统内核的 一部分 ( 现阶段如此, 但不不安全 ) 那么操作系统的任务是什什么? 提供 一种体系结构来允许驱动程序的安装 : 驱动程序可以做什什么事情 该驱动程序如何与操作系统的其余部分相互作 用

28 I/O 的软件层次 设备驱动程序 (Device Drivers) User process User space User program Rest of the operating system Kernel space Printer driver Camcorder driver CD-ROM driver Hardware Printer controller Camcorder controller CD-ROM controller Devices

29 I/O 的软件层次 设备驱动程序 (Device Drivers) 驱动程序的类别 字符设备 (character device) 键盘 打印机 块设备 (block device) 磁盘

30 I/O 的软件层次 设备驱动程序 (Device Drivers) 某些系统中, 操作系统是 一个 二进制程序 它包含所有驱动程序 目前的计算机系统 内核与驱动程序分离

31 I/O 的软件层次 设备驱动程序 (Device Drivers) 驱动程序的运 行行过程 启动 : 检查输 入参数是否有效 检查设备是否在使 用 控制 : 接收 一系列列命令 将命令写了了控制寄存器器 检测控制器器状态, 并写 入下 一条命令

32 I/O 的软件层次 设备驱动程序 (Device Drivers) 驱动程序的两种运 行行模式 阻塞 非阻塞 如发送滚动屏幕的命令 ( 发送字节少, 不不需阻塞 )

33 I/O 的软件层次 与设备 无关的 I/O 软件 设备驱动程序的统 一接 口 Operating system Operating system SATA disk driver USB disk driver SCSI disk driver (a) SATA disk driver USB disk driver SCSI disk driver (b)

34 I/O 的软件层次与设备 无关的 I/O 软件 设备驱动程序的统 一接 口 优点 : 无需不不断修改操作系统 减少驱动编程难度 工作 方式 : 操作系统定义 一组驱动程序所必须 支持的函数 驱动程序提供 一张表格 : 每个函数的指针地址

35 I/O 的软件层次 与设备 无关的 I/O 软件 缓冲 User process User space Kernel space Modem Modem Modem Modem (a) (b) (c) (d)

36 I/O 的软件层次 与设备 无关的 I/O 软件 错误报告 编程错误 实际的 I/O 错误 分配与释放专 用设备 与设备 无关的块 大 小

37 I/O 的软件层次 用户空间的 I/O 软件 两种形式 库过程 (library procedure) count = write(fd, buffer, nbytes); printf("the square of %3d is %6d\n", i, i*i); 守护进程 (Daemon) Spooling 技术

38 I/O 的软件层次 总结 Layer I/O reply I/O functions I/O request User processes Device-independent software Device drivers Make I/O call; format I/O; spooling Naming, protection, blocking, buffering, allocation Set up device registers; check status Interrupt handlers Wake up driver when I/O completed Hardware Perform I/O operation

39 盘 (Disks) 磁盘 (Magnetic Disks) 柱 面 :cylinder 磁道 :Track 扇区 :Sector

40 盘 (Disks) 磁盘 (Magnetic Disks) Parameter IBM 360-KB floppy disk WD 3000 HLFS hard disk Number of cylinders 40 36,481 Tr acks per cylinder Sectors per track 9 63 (avg) Sectors per disk ,072,368 Bytes per sector Disk capacity 360 KB 300 GB Seek time (adjacent cylinders) 6 msec 0.7 msec Seek time (average case) 77 msec 4.2 msec Rotation time 200 msec 6 msec Time to transfer 1 sector 22 msec 1.4 µsec 柱 面 :cylinder 磁道 :Track 扇区 :Sector

41 盘 (Disks) 磁盘 (Magnetic Disks)

42 盘 (Disks) 磁盘阵列列 (RAID) CPU 性能与磁盘性能的巨 大差距 同时使 用多个磁盘, 以提 高磁盘性能 : RAID Redundant Array of Inexpensive Disks Redundant Array of Independent Disks 反 面例例 子 : SLED (Single Large Expensive Disk)

43 盘 (Disks) 磁盘阵列列 (RAID)

44 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 0) 优点 : 速度快 缺点 : 不不容错

45 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 1) 优点 : 容错 缺点 : 空间和时间开销 大

46 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 2) 优点 : 时空开销 小 缺点 : 校验计算开销 大

47 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 3) 优点 : 校验计算开销相当较 小 缺点 : 需要多个磁盘 高度同步

48 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 4) 优点 : 批量量校验 缺点 : 负载不不均

49 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 5) 优点 : 负载均衡 缺点 : 可进 一步提 高稳定性

50 盘 (Disks) 磁盘阵列列 (RAID) 多种不不同类型的 Raid (Level 6) 优点 : 稳定性更更 高, 读取速度影响不不 大 缺点 : 写 入速度降低

51 盘 (Disks) 磁盘格式化 低级格式化 : Preamble Data ECC Figure A disk sector. 磁盘可使 用容量量为什什么 比标配容量量 小? 取决于前导码 扇区间间隙和 ECC 的 大 小

52 盘 (Disks) 磁盘格式化 低级格式化 : 优化布局 Direction of disk rotation

53 低级格式化 : 优化布局 盘 (Disks) 磁盘格式化 考虑将数据传送 至主存的时间差 (a) (b) (c) Figure (a) No interleaving. (b) Single interleaving. (c) Double interleaving.

54 盘 (Disks) 磁盘格式化 高级格式化 分区 : 分配每个区的起始扇区和 大 小 标记活动分区 再 高级格式化 : 设置分区格式

55 盘 (Disks) 磁盘臂调度算法 影响磁盘读取速度的三个因素 寻道时间 ( 磁盘臂移动到指定柱 面的所需时间 ) 旋转延迟 ( 等待指定扇区旋转到磁头下所需时 间 ) 实际数据传输时间

56 盘 (Disks) 磁盘臂调度算法 不不做优化 : 先来先服务 (First-Come First-Served, FCFS)

57 盘 (Disks) 磁盘臂调度算法 最短寻道优先 (Shortest Seek First) 缺点 : 不不公平 Initial position Pending requests X X X X X X X Cylinder Time Sequence of seeks Figure Shortest Seek First (SSF) disk scheduling algorithm.

58 盘 (Disks) 磁盘臂调度算法 电梯算法 考虑了了公平性 Initial position X X X X X X X Cylinder Time Sequence of seeks Figure The elevator algorithm for scheduling disk requests.

59 时钟 时钟硬件 一般两种类型 交流电的电压 Crystal oscillator 特殊部件 : 可编程时钟 晶体振荡器器 计数器器 存储寄存器器

60 时钟 时钟软件 时钟驱动程序 维护 日时间 防 止进程超时运 行行 对 CPU 使 用情况进 行行审计 处理理 用户的 alarm 系统调 用 为系统各部分提供监视定时器器 完成概要剖析 监视和统计信息收集

61 时钟软定时器器 中断依然具有 一定开销 有些情况下, 不不需要定时间器器产 生中断 : 操作系统有 大量量定时任务 操作系统经常切换 至内核态 方案 每次从内核态切换 至 用户态前, 检查时钟, 判断是否可以执 行行某些到期的过程

62 图形 用户接 口 Graphic User Interface (GUI) (0, 0) (1023, 0) (200, 100) Menu bar Tool bar Title bar File Edit View Tools Options Help Thumb Client area Scroll bar Window (0, 767) (1023, 767)

63 图形 用户接 口 Graphic User Interface (GUI) #include <windows.h> int WINAPI WinMain(HINSTANCE h, HINSTANCE, hprev, char * szcmd, int icmdshow) { WNDCLASS wndclass; / * class object for this window * / MSG msg; / * incoming messages are stored here * / HWND hwnd; / * handle (pointer) to the window object * / / * Initialize wndclass * / wndclass.lpfnwndproc = WndProc; / * tells which procedure to call * / wndclass.lpszclassname = "Program name"; / * text for title bar * / wndclass.hicon = LoadIcon(NULL, IDI APPLICATION); / * load program icon * / wndclass.hcursor = LoadCursor(NULL, IDC ARROW); / * load mouse cursor * / RegisterClass(&wndclass); / * tell Windows about wndclass * / hwnd = CreateWindow (... ) / * allocate storage for the window * / ShowWindow(hwnd, icmdshow); / * display the window on the screen * / UpdateWindow(hwnd); / * tell the window to paint itself * / } while (GetMessage(&msg, NULL, 0, 0)) { / * get message from queue * / Tr anslatemessage(&msg); / * translate the message * / DispatchMessage(&msg); / * send msg to the appropriate procedure * / } retur n(msg.wparam);

64 图形 用户接 口 Graphic User Interface (GUI) long CALLBACK WndProc(HWND hwnd, UINT message, UINT wparam, long lparam) { / * Declarations go here. * / } switch (message) { case WM CREATE:... ; retur n... ; / * create window * / case WM PAINT:... ; retur n... ; / * repaint contents of window * / case WM DESTROY :... ; retur n... ; / * destroy window * / } retur n(defwindowproc(hwnd, message, wparam, lparam)); / * default * /

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

03243AA_CH05.indd

03243AA_CH05.indd CHAPTER 5 週 資 訊 科 技 概 論 電 腦 的 週 邊 設 備 邊 設 備 泛 指 主 機 以 外 的 相 關 硬 體 設 備, 這 些 設 備 依 其 用 途, 可 區 分 為 輔 助 儲 存 設 備 ( 輔 助 記 憶 體 ) 輸 入 設 備 及 輸 出 設 備 等 3 大 類 ( 圖 5-1) 筆 記 型 電 腦 則 為 了 攜 帶 方 便, 會 將 常 用 的 週 邊 設 備 整

More information

1 CPU

1 CPU 2000 Tel 82316285 82317634 Mail liuxd@buaa.edu.cn 1 CPU 2 CPU 7 72 A B 85 15 3 1/2 M301 2~17 : 3/4 1/2 323 IBM PC 1. 2. 3. 1. 2. 3. 1.1 Hardware Software 1.2 M3 M2 M1 1.2 M3 M1 M2 M2 M1 M1 M1 1.2 M3 M1

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

P4VM800_BIOS_CN.p65

P4VM800_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Fri 02/25/2005] BIOS Version : P4VM800 BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( )

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) ( ) ( ) Windows USB 1 SATA A. SATASATAIntel SATA (SATA3

More information

P4V88+_BIOS_CN.p65

P4V88+_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Wed 12/22/2004] BIOS Version : P4V88+ BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1 21 , 7, Windows,,,, : 010-62782989 13501256678 13801310933,,,, ;,, ( CIP) /,,. : ;, 2005. 11 ( 21 ) ISBN 7-81082 - 634-4... - : -. TP316-44 CIP ( 2005) 123583 : : : : 100084 : 010-62776969 : 100044 : 010-51686414

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

投影片 1

投影片 1 4 1 4-1 類 料, 兩 類 2 類 RAM (Random Access Memory, ) ROM (Read Only Memory, 讀 ) 兩, 類, 見 3 類 4 說 CPU, 料都, CPU 行 理 不 力 料, 料便, 料便, 料, CPU 料, 便 料, CPU 行 理 5 料 索 了 便 錄 讀 錄 度 量 量 6 (Virtual Memory) 數 Windows Linux

More information

投影片 1

投影片 1 9 1 9-1 Windows XP Windows Server 2003 Mac OS Linux, 都 (OS, Operating System ) 2 3 , 來, 行 3 理 行 4 ,, (UI, User Interface), 滑, 令 列 (CLI, Command-Line Interface) (GUI, Graphical User Interface) 2 5 令 列,

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( Nvidia nforce430)

More information

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) (

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) ( SATA... 2 RAID/AHCI... 16 Intel Optane... 19 Intel Virtual RAID on CPU (Intel VROC)... 21 RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

Microsoft Word - ws-chp06輸入輸出notes.doc

Microsoft Word - ws-chp06輸入輸出notes.doc 6.1 輸 入 設 備 : 輸 入 設 備 Purpose 目 的 Applications 應 用 1 鍵 盤 keyboard 輸 入 文 本 text 文 書 處 理 ( 編 制 書 信 文 件 ) 程 式 編 寫 programming 讀 取 卡 背 磁 帶 上 的 資 料 讀 取 信 用 咭 資 料 讀 取 銀 行 ATM 卡 背 面 的 磁 帶 資 料 地 鐵 車 票 背 面 的 磁

More information

提纲 1 I/O Hardware Polling ( 轮询方式 ) Interrupts ( 中断方式 ) Direct Memory Access (DMA 方式 ) I/O hardware summary 2 Application I/O Interface Block and Chara

提纲 1 I/O Hardware Polling ( 轮询方式 ) Interrupts ( 中断方式 ) Direct Memory Access (DMA 方式 ) I/O hardware summary 2 Application I/O Interface Block and Chara 操作系统原理与设计 第 13 章 IO Systems(IO 管理 ) 陈香兰 中国科学技术大学计算机学院 May 28, 2014 陈香兰 ( 中国科学技术大学计算机学院 ) 操作系统原理与设计 May 28, 2014 1 / 41 提纲 1 I/O Hardware Polling ( 轮询方式 ) Interrupts ( 中断方式 ) Direct Memory Access (DMA 方式

More information

r_09hr_practical_guide_kor.pdf

r_09hr_practical_guide_kor.pdf PRACTICAL GUIDE TO THE EDIROL R-09HR 3 4 PRACTICAL GUIDE TO THE EDIROL R-09HR 5 Situation 1 6 1 2 3 PRACTICAL GUIDE TO THE EDIROL R-09HR WAV MP3 WAV 24 bit/96 khz WAV 16 bit/44.1 khz MP3 128 kbps/44.1

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( nvidia

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

IT (1) IDE... 2 (2) BIOS IDE RAID... 3 (3) RAID BIOS RAID... 5 (4) R A I D (5) ID E RA ID... 15

IT (1) IDE... 2 (2) BIOS IDE RAID... 3 (3) RAID BIOS RAID... 5 (4) R A I D (5) ID E RA ID... 15 IT8212...2 (1) IDE... 2 (2) BIOS IDE RAID... 3 (3) RAID BIOS RAID... 5 (4) R A I D... 13 (5) ID E RA ID... 15 Ác Åé å IT8212 (1) IDE (2) BIOS IDE RAID (3) RAID BIOS RAID (4) RAID (5) RAID (a) ( )IDE (

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

!!

!! !! Noise Suppression by EMIFILr Application Guide Application Manual Cat.No.C35C !! 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 YYYYYYYYYYYYYYYYYYYYYY........................ YYYYYYYYYYYYYYYYYYYY........................

More information

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++;

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; Memory & Pointer trio@seu.edu.cn 2.1 2.1.1 1 int *p int a 0x00C7 0x00C7 0x00C7 2.1.2 2 int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; 2.1.3 1. 2. 3. 3 int A,

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

Microsoft Word - 正文.doc

Microsoft Word - 正文.doc 1 2 1 2 3 4 5 6 7 8 9 10 3 1 150 2 150 1 1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.2 1.4 1.4.1 CPU 1.4.2 I/O 1.4.3 I/O 1.5 1.5.1 CISC RISC 1.5.2 1.5.3 1.6 1.6.1 1.6.2 N 1.6.3 2 2.1 2.1.1 2.1.2 2.1.3

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

01CP-WX3030WNetc_CO_ENG.indd

01CP-WX3030WNetc_CO_ENG.indd Data Video Projector User s Manual (Concise) ModelS: 8928A/8930A/8931WA/ 8933W Information in this Guide may change due to product improvements. To obtain the latest manuals, literature, and software please

More information

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

Microsoft PowerPoint 輸入輸出裝置(I_O Devices).pptx

Microsoft PowerPoint 輸入輸出裝置(I_O Devices).pptx 作業系統 Operating Systems 靜宜大學資訊傳播工程學系 劉國有助理教授 kyliu@pu.edu.tw 輸入 / 輸出裝置 (I/O Devices) 裝置控制器 (Device Controllers) I/O Devices I/O devices can be roughly divided into two categories: Block devices: stores

More information

USB - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - DES Module FSM CONTROLLER 8 6 8 Key ROM 8 8 Data_in RAM Data_out RAM 8 USB Board - 8 - - 9 - - 10 - - 11 - - 12 - USB device INF Windows INF Device Function

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

USB解决方案.ppt

USB解决方案.ppt USB USB? RS232 USB USB HID U modem ADSL cable modem IrDA Silabs USB CP210x USB UART USB RS-232 USB MCU 15 USB 12 FLASH MCU 3 USB MCU USB MCU C8051F32x 10 ADC 1.5%, Vref CPU 25MIPS 8051 16KB Flash -AMUX

More information

Microsoft Word - 3D手册2.doc

Microsoft Word - 3D手册2.doc 第 一 章 BLOCK 前 处 理 本 章 纲 要 : 1. BLOCK 前 处 理 1.1. 创 建 新 作 业 1.2. 设 定 模 拟 控 制 参 数 1.3. 输 入 对 象 数 据 1.4. 视 图 操 作 1.5. 选 择 点 1.6. 其 他 显 示 窗 口 图 标 钮 1.7. 保 存 作 业 1.8. 退 出 DEFORMTM3D 1 1. BLOCK 前 处 理 1.1. 创 建

More information

SA-DK2-U3Rユーザーズマニュアル

SA-DK2-U3Rユーザーズマニュアル USB3.0 SA-DK2-U3R 2007.0 2 3 4 5 6 7 8 System Info. Manual Rebuild Delete RAID RAID Alarm Rebuild Rate Auto compare Temp Management Load Default Elapse time Event Log 0 2 3 4 2 3 4 ESC 5

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

TCA Linux 相容性認證測試流程步驟

TCA Linux 相容性認證測試流程步驟 年 度 流 -Linux 行 北 年 錄...2 說...4 2.1...4 2.2...4 2.3...4 2.4 行...5...6 3.1...6 3.2...6 3.3...7 3.4 列...7 Linux...8 4.1...8 4.1.1 CD-ROM...8 4.1.2 滑...10 4.1.3...14 4.1.4 路...19 4.1.5 Linux...22 4.1.6...27

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

Microsoft Word - OPIGIMAC 譯本.doc

Microsoft Word - OPIGIMAC 譯本.doc OPISYSTEMS OPIGIMAC 系 統 使 用 說 明 使 用 者 手 冊 OPI 版 本 7.0.X 140705 翻 譯 版 本 V1.0 Table of Contents 頁 數 1. 簡 介 3 2. 系 統 需 求 4 3. 安 裝 4 4. 開 始 OPIGIMAC 5 5. 功 能 列 7 6. 功 能 圖 示 鍵 10 7. 重 點 操 作 說 明 13 7-1. 設 定

More information

C10_ppt.PDF

C10_ppt.PDF C11-101 101 ( ) 1 15 2000 20% 20MB 170000 19 7% 3% 14% 32% 44% Disaster Recovery Journal ( ) UPS - (Fault Tolerance Capability) (Avoid Single point of failure) (High Availability) (RAID) (Cluster) (Backup)

More information

68369 (ppp quickstart guide)

68369 (ppp quickstart guide) Printed in USA 04/02 P/N 68369 rev. B PresencePLUS Pro PC PresencePLUS Pro PresencePLUS Pro CD Pass/Fails page 2 1 1. C-PPCAM 2. PPC.. PPCAMPPCTL 3. DB9D.. STPX.. STP.. 01 Trigger Ready Power 02 03 TRIGGER

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

投影片 1

投影片 1 2 理 1 2-1 CPU 2-2 CPU 理 2-3 CPU 類 2 什 CPU CPU Central Processing Unit ( 理 ), 理 (Processor), CPU 料 ( 例 ) 邏 ( 例 ),, 若 了 CPU, 3 什 CPU CPU 了, 行, 利 CPU 力 來 行 4 什 CPU 5 2-2-1 CPU CPU 了 (CU, Control Unit) / 邏

More information

Cover-YP-35-ch

Cover-YP-35-ch AH68-01283C (Rev 0.0) PC USB USB CD Ripper yepp MP3 EQ File Direct Play DISPLAY BACK LIGHT BEEP CONTRAST SCROLL SPEED POWER OFF TIME DEFAULT VOLUME WOW LEVEL ENCODE MENU yepp 2 SRS 3 0 0 35-5/ 0 0 0 /

More information

MATLAB 1

MATLAB 1 MATLAB 1 MATLAB 2 MATLAB PCI-1711 / PCI-1712 MATLAB PCI-1711 / PCI-1712 MATLAB The Mathworks......1 1...........2 2.......3 3................4 4. DAQ...............5 4.1. DAQ......5 4.2. DAQ......6 5.

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

User’s Manual

User’s Manual SNAP 500 打 印 机 用 户 手 册 1 用 户 手 册 SNAP TM 500 打 印 机 2015 年 8 月 24 日 AVERY DENNISON Manual Edition 2.5 2 SNAP 500 打 印 机 用 户 手 册 WARNING This device complies with Part 15 of the FCC Rules. Operation is subject

More information

工程师培训

工程师培训 .1 TCP/IP TCP/IP 1 .2.2.1 Host 1960 S 1970 S Host Low Speed Lines 1970 S 1980 S pc Server Local Interneting 1980 S 1990 S Branch. pc Branch. WAN Branch. pc pc IBM SNA IBM X.25 2 .2.2 OSI OSI Application

More information

典型自编教材

典型自编教材 河 南 科 技 大 学 计 算 机 实 验 教 学 中 心 1. 计 算 机 文 化 基 础 实 验 指 导 书 2. 数 据 结 构 实 验 指 导 书 3. 操 作 系 统 实 验 指 导 书 4. 面 向 对 象 程 序 设 计 实 验 指 导 书 5. 数 据 库 原 理 实 验 指 导 书 6. 编 译 原 理 实 验 指 导 书 7. JAVA 程 序 设 计 实 验 指 导 书 8.

More information

Ác Åé å Serial ATA ( nvidia nforce4 SLI) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c)

Ác Åé å Serial ATA ( nvidia nforce4 SLI) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Serial ATA ( nvidia nforce4 SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( nvidia nforce4

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

<4D6963726F736F667420576F7264202D203230303930373037B9E3B6ABCAA1CBAEC0FBB9A4B3CCCAD3C6B5BCE0BFD8CFB5CDB3BCBCCAF5B9E6B7B6A3A8CAD4D0D0A3A9C7A9B7A22E646F63>

<4D6963726F736F667420576F7264202D203230303930373037B9E3B6ABCAA1CBAEC0FBB9A4B3CCCAD3C6B5BCE0BFD8CFB5CDB3BCBCCAF5B9E6B7B6A3A8CAD4D0D0A3A9C7A9B7A22E646F63> 广 东 省 水 利 信 息 化 技 术 规 范 广 东 省 水 利 工 程 视 频 监 控 系 统 技 术 规 范 ( 试 行 ) 二 九 年 七 月 广 东 省 水 利 厅 前 言 广 东 省 水 利 工 程 视 频 监 控 系 统 技 术 规 范 ( 下 称 本 规 范 ) 是 广 东 省 水 利 信 息 化 技 术 规 范 之 一, 根 据 广 东 省 水 利 信 息 化 发 展 的 需 要

More information

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP TCP/IP : TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP 1. ASCII EBCDIC Extended Binary-Coded Decimal Interchange Code 2. / (1) (2) Single System Image SSI) (3) I/O (4) 3.OSI OSI Open System Interconnection

More information

普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进

普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进 科 学 出 版 社 普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进 参 编 北 京 内 容 简 介 本 书 由 浅 入 深 系 统 全 面 地 介 绍

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Microsoft PowerPoint - Sens-Tech WCNDT [兼容模式]

Microsoft PowerPoint - Sens-Tech WCNDT [兼容模式] X-ray data acquisition systems for NDT applications 技股份有限公司 先锋科技股份有限公司 科技股份有限公司 先锋科技股份有限公司 www Sens-Tech Ltd UK based company 40 Staff Specialise in detection and data acquisition systems for light and

More information

3.1 num = 3 ch = 'C' 2

3.1 num = 3 ch = 'C' 2 Java 1 3.1 num = 3 ch = 'C' 2 final 3.1 final : final final double PI=3.1415926; 3 3.2 4 int 3.2 (long int) (int) (short int) (byte) short sum; // sum 5 3.2 Java int long num=32967359818l; C:\java\app3_2.java:6:

More information

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344>

<4D F736F F D D342DA57CA7DEA447B14D2DA475B57BBB50BADEB27AC3FEB14DA447B8D5C344> 1. 請 問 誰 提 出 積 體 電 路 (IC) 上 可 容 納 的 電 晶 體 數 目, 約 每 隔 24 個 月 (1975 年 更 改 為 18 個 月 ) 便 會 增 加 一 倍, 效 能 也 將 提 升 一 倍, 也 揭 示 了 資 訊 科 技 進 步 的 速 度? (A) 英 特 爾 (Intel) 公 司 創 始 人 戈 登. 摩 爾 (Gordon Moore) (B) 微 軟 (Microsoft)

More information

逢 甲 大 學

逢  甲  大  學 益 老 年 不 易更 例 不 異 列 - I - 錄 錄 流 錄 六 來 錄 - II - 錄 錄 錄 錄 錄 錄 參 料 錄 - III - 料 讀 讀 錄 讀 數 錄 錄 錄 錄 錄 - IV - 錄 錄 行 錄 錄 錄 錄 讀 錄 錄 錄 讀 錄 錄 - V - 了 說 力 兩 了 - 1 - 列 邏 路 列 不 不 FLEX 10K Devices at a Glance Feature

More information

提纲 1 2 OS Examples for 3

提纲 1 2 OS Examples for 3 第 4 章 Threads2( 线程 2) 中国科学技术大学计算机学院 October 28, 2009 提纲 1 2 OS Examples for 3 Outline 1 2 OS Examples for 3 Windows XP Threads I An Windows XP application runs as a seperate process, and each process may

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 2 1 Windows 95/98 Windows 2000 3.5 Windows NT Server 4.0 2 Windows DOS 3.5 T200 2002 RAID RAID RAID 5.1 Windows 2000 Server T200 2002 Windows 2000 Server Windows 2000 Server Windows 2000 Server 3.5 for

More information

2 : ; :

2 : ; : 4 CH 1 2 : ; : 1 2 2 3 3 4 4 5 5 6 1 6 2 8 3 11 6 13 1 13 2 14 14 1 15 2 16 3 17 4 18 5 22 6 23 7 24 7 CF 32 8 46 9 : 80GB HD 48 3 3 1 : 4 / / 4 9 2 CHANNEL 1 : 1 3 CHANNEL 2 : 2 4 CHANNEL 3 : 3 5 CHANNEL

More information

目次 

目次  軟 體 工 程 期 末 報 告 網 路 麻 將 91703014 資 科 三 黃 偉 嘉 91703024 資 科 三 丘 祐 瑋 91703030 資 科 三 江 致 廣 1 目 次 壹 前 言 (Preface) P.4 貳 計 畫 簡 述 及 預 期 效 益 (Project Description and Expected Results) P.4 參 系 統 開 發 需 求 (System

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

概述

概述 OPC Version 1.6 build 0910 KOSRDK Knight OPC Server Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOS_Init...5 2.2.2 KOS_InitB...5 2.2.3

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

1500XA Daniel Danalyzer 1500XA Rosemount Analytical 1500XA P/N 3-9000-757 A 2010 5 ii 1500XA 1500XA iii iv 1500XA : 1-2 1500XA - 1500XA 1-3 1-4 1500XA 1500XA 1-5 1-6 1500XA 1500XA 1-7 1-8 1500XA

More information

52C-14266-5

52C-14266-5 逻 辑 分 析 仪 基 础 知 识 入 门 手 册 www.tektronix.com.cn/logic_analyzers 15 入 门 手 册 目 录 引 言 3-4 起 源 3 数 字 示 波 器 3 逻 辑 分 析 仪 4 逻 辑 分 析 仪 操 作 5-13 连 接 被 测 系 统 5 探 头 5 设 置 逻 辑 分 析 仪 7 设 置 时 钟 模 式 7 设 置 触 发 7 采 集 状

More information

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac Dell EMC Dell EMC IT Dell EMC IT Dell EMC https://www. dellemc.com/ Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost

More information

科学计算的语言-FORTRAN95

科学计算的语言-FORTRAN95 科 学 计 算 的 语 言 -FORTRAN95 目 录 第 一 篇 闲 话 第 1 章 目 的 是 计 算 第 2 章 FORTRAN95 如 何 描 述 计 算 第 3 章 FORTRAN 的 编 译 系 统 第 二 篇 计 算 的 叙 述 第 4 章 FORTRAN95 语 言 的 形 貌 第 5 章 准 备 数 据 第 6 章 构 造 数 据 第 7 章 声 明 数 据 第 8 章 构 造

More information

VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2

VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2 VHDL (Statements) VHDL(Statements) (Sequential Statement) (Concurrent Statement) VHDL (Architecture)VHDL (PROCESS)(Sub-program) 2 (Assignment Statement) (Signal Assignment Statement) (Variable Assignment

More information

Microsoft Word - 8011_TC_Lemel_new.doc

Microsoft Word - 8011_TC_Lemel_new.doc 筆 記 型 電 腦 使 用 手 冊 P/N: 5615 6854 0002 R00 (2004 年 10 ) 註 冊 商 標 所 品 牌 及 產 品 稱 所 登 記 之 商 標 屬 於 各 品 牌 及 產 品 稱 之 登 記 公 司 所 注 意 本 手 冊 之 內 容 本 公 司 享 隨 時 修 改 之 權 利, 且 不 另 行 通 知 目 錄 前 言... v 第 1 章 開 始 工 作...1-1

More information

Microsoft Word - 出國報告_BEMAC_.doc.docx

Microsoft Word - 出國報告_BEMAC_.doc.docx 出 國 報 告 ( 出 國 類 別 : 洽 公 ) 配 合 105 年 新 船 交 船 之 裝 備 熟 悉, 至 日 本 渦 潮 電 機 進 行 技 術 交 流 報 告 服 務 機 關 : 台 灣 中 油 股 份 有 限 公 司 姓 名 職 稱 : 黃 戊 辰 葉 仁 富 工 程 師 派 赴 國 家 : 日 本 出 國 期 間 :104 年 12 月 14 日 至 19 日 報 告 日 期 :105

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

S7-1200 可编程控制器

S7-1200 可编程控制器 www.plcworld.cn 前 言 SIMATIC S7 系 统 手 册 产 品 概 述 1 安 装 2 PLC 概 念 3 设 备 配 置 4 编 程 概 念 5 编 写 指 令 6 PROFINET 7 点 对 点 (PtP) 通 信 8 在 线 和 诊 断 工 具 9 A 技 术 规 范 B 计 算 功 率 预 算 C 订 货 号 11/2009 A5E02486685-02 法 律 资

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

一个开放源码的嵌入式仿真环境 ― SkyEye

一个开放源码的嵌入式仿真环境 ― SkyEye SkyEye SkyEye http://hpclab.cs.tsinghua.edu.cn/~skyeye/ I hear and I forget, I see and I remember, I do and I understand. SkyEye SkyEye SkyEye SkyEye SkyEye 1. SkyEye PC pervasive computing PC I O PDA

More information

Microsoft Word - MSP430 Launchpad 指导书.docx

Microsoft Word - MSP430 Launchpad 指导书.docx Contents 3... 9... 14 MSP430 LAUNCHPAD 指导书 3 第一部分第一个工程 New Project File > New > CCS Project Project name: ButtonLED Device>Family: MSP430 Variant: MSP430G2553 Project templates and examples : Empty Project

More information

实践课堂成都站-0609.key

实践课堂成都站-0609.key 青云 QingCloud 容器器及 Kubernetes 实践 王渊命 青云 QingCloud 容器器平台负责 人 当我们谈论容器器时我们在谈论什什么? 容器器的两个视 角 资源隔离 应 用封装 容器器 生态圈现状 容器器技术 一家独 大百花 齐放 Docker, Rocket, Mesos Universal container, LXC, Hyper Container 调度系统三 足鼎 立

More information