SkyEye 用户手册 版本 0.2 维护者 :Michael.Kang 邮件

Size: px
Start display at page:

Download "SkyEye 用户手册 版本 0.2 维护者 :Michael.Kang 邮件"

Transcription

1 SkyEye 用户手册 版本 0.2 维护者 :Michael.Kang 邮件

2 修订记录 版本号修订人意图

3 目录

4 1.1 介绍 第一章 SkyEye 的介绍和安装 skyeye 是一个支持多架构, 多核, 并且高度可扩展的硬件仿真平台, 当前主要由核心库 libcommon.so 和基于核心库的一系列插件组成 SkyEye 支持的体系结构有 Arm, Blackfin, Coldfire, PowerPC, MIPS 和 Sparc, 计划下一步支持 x86 的仿真 SkyEye 的官方网站为 目前由 wangyonghao 负责维护 SkyEye 的源代码通过 svn 仓库进行维护, 其地址为 : SkyEye 的源代码当前由 Michael.Kang 负责维护管理, 当前 SkyEye 的开发者论坛设为 可以在这个论坛上讨论 SkyEye 开发中碰到的各种问题和各种想法,SkyEye 的最新版本发布信息也会第一时间发布在上面 SkyEye 共包含了两个软件包, 一个为 skyeye 的发布版本包, 另外一个为 skyeye 的测试套件包 一般说来, 这两个包会同时发布, 并且拥有相同的版本号 测试套件包用来对相应版本的 skyeye 软件包进行测试 1.2 安装 二进制的 rpm 包安装 对于普通用户来说, 可以下载 skyeye 的二进制的 rpm 包进行安装 skyeye 默认的安装路径为 /opt/skyeye 从 SkyEye 官方网站 ( 下载 rpm 包, 然后进行安装 安装的命令如下, 需要用超级用户的权限 rpm -ivh skyeye rc1.i386.rpm 源代码安装 从 sourceforge 网站上下载 Skyeye 的 的源代码, 解压 tar xzvf skyeye-1.2.9_rc1.tar.gz 然后运行如下命令编译./configure make lib make 其中 make lib 来编译第三方的库,make 来编译 skyeye 的源代码 最后安装 SkyEye 到 /opt 目录下 make install_lib make install

5 1.3 安装后的目录和文件 安装之后,/opt/skyeye 应该有以下目录 : bin conf include info lib testsuite 其中 bin 目录存放了 skyeye 的二进制程序, 描述如下 : mknandflashdump : 用来制作 nandflash 的镜像文件 skyeye :skyeye 的命令行应用程序 Skyeye-gui : skyeye 的图形应用程序 uart_instance : 被 skyeye 调用的应用程序, 功能为通过一个 xterm 终端来显示串口的输出 conf 目录存放了针对已经支持的目标板的一些配置文件, 供参考 include 目录存放了 skyeye 开发插件时所用到的头文件, 这些头文件定义了 skyeye 提供的 API 函数的原型 info 目录存放了 info 格式的文档, 暂时没有提供 Lib 目录存放了 skyeye 的核心库 libcommon.so 和其他一些以动态库存在的插件 testsuite 目录存放了一个简单的测试用例, 用来演示 skyeye 的一些功能

6 2.1 运行 SkyEye 的命令行应用程序 第二章 SkyEye 快速入门 直接输入 /opt/skyeye/bin/skyeye 会启动 skyeye 的命令行应用程序, 并进入 skyeye 的命令行接口, 显示如下 : ksh@linux-gvai:/opt/skyeye> /opt/skyeye/bin/skyeye SkyEye is an Open Source project under GPL. All rights of different parts or modules are reserved by their author. Any modification or redistributions of SkyEye should note remove or modify the annoucement of SkyEye copyright. Get more information about it, please visit the homepage Type "help" to get command list. 在 skyeye 的安装目录中包含一个小的 testcase, 在目录 testsuite/arm_hello 中 这个测试用例会运行一个不依赖于操作系统的 helloworld, 我们可以通过运行这个 helloworld 来学习 skyeye 的基本用法 运行 skyeye -e arm_hello 命令, 进入 skyeye 命令行界面, 输出如下 : ksh@linux-gvai:/opt/skyeye/testsuite/arm_hello> /opt/skyeye/bin/skyeye -e arm_hello SkyEye is an Open Source project under GPL. All rights of different parts or modules are reserved by their author. Any modification or redistributions of SkyEye should note remove or modify the annoucement of SkyEye copyright. Get more information about it, please visit the homepage Type "help" to get command list. 然后运行 start 命令加载配置和初始化目标机, 命令显示如下 : start arch: arm cpu info: armv3, arm7tdmi, , fff8ff00, 0 In do_mach_option, mach info: name at91, mach_init addr 0xb68b2360 uart_mod:3, desc_in:, desc_out:, converter: In create_uart_console SKYEYE: use arm7100 mmu ops exec file "arm_hello"'s format is elf32-i386. load section.text: addr = 0x size = 0x

7 In tea_write, load_base=0x0,load_mask=0xffffffff load section.glue_7: addr = 0x size = 0x load section.glue_7t: addr = 0x size = 0x load section.data: addr = 0x size = 0x In tea_write, load_base=0x0,load_mask=0xffffffff not load section.bss: addr = 0x size = 0x not load section.debug_abbrev: addr = 0x size = 0x e. not load section.debug_info: addr = 0x size = 0x not load section.debug_line: addr = 0x size = 0x000000a9. not load section.debug_pubnames: addr = 0x size = 0x c. not load section.debug_aranges: addr = 0x size = 0x In SIM_start, Set PC to the address 0x 同时在主机上会显示一个 xterm 的窗口, 窗口标题为 "uart_instance" 截屏如下 :

8 然后我们可以输入 "run 命令来启动 helloworld 的测试用例, 输出如下 :

9 我们在 helloworld 运行过程中, 也可以随时输入 "stop 命令去停止目标板的运行, 也可以在运行过程中输入其他命令来显示目标板及其软件的各种信息 如我们输入 "stop 命令来停止目标板, 然后输入 info regitsters 查看当前的寄存器的数值, 如下 : (running)stop info registers R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 0xf4240 0xfffd001c 0xa 0x58b0e 0x0 0x0 0x0 0x0 0x0 0x0

10 R10 0x0 R11 0x1001ffc R12 0x R13 0x1001ff0 LR 0x PC 0x100004c 然后我们可以输入以下命令对当前 PC 之后的指令进行, 进行反汇编 : disassemble 0x100004c cmp r3, r0 bne mov r2, #0 ; 0x0 ldrb r3, [ip, r2] add r2, r2, #1 ; 0x1 cmp r2, #9 ; 0x9 str r3, [r1] ble b tsteq r0, r8, ror r0

11 第三章 SkyEye 命令列表 3.1 调试相关的命令 break 命令 :break [ 断点地址 ] 说明 : 对某一个地址下断点描述 : 用例 : break 0x Insert breakpoint at address 0x successfully list-bp 命令 :list-bp 说明 : 列出当前所有的断点描述 : 用例 : list-bp ID Address 1 0x show-step 命令 :show-step. 说明 : 显示当前运行的指令数目描述 : 用例 : stepi 命令 :stepi [number of instruction] 说明 : 单步运行, 可以指定运行多少条指令 描述 : stepi 100 In skyeye_stepi, stopped_step= show-step 命令 :stepi [number of instruction] 说明 : 显示当前运行的指令数目描述 : show-step steps:

12 3.1.6 x 命令 :x [the address of memory] 说明 : 显示某一物理内存地址的值描述 : x 0x129f798 0x129f798:0xac85fff disassemble 命令 :disassemble [the address of memory] 说明 : 反汇编某一物理内存的值为指令描述 : disassemble 0x129f798 stcge 15, cr15, [r5], {248} stcge 15, cr15, [r5], {252} strne pc, [r4, #-4078]! andeq r0, r0, r0 stfccd f0, [r9], {42} strcs pc, [r9, #-2044]! teqeq r8, r3, lsr #16 teqeq r0, r8 addeq r2, r8, r1, lsr #32 stcge 15, cr15, [r5], {192} info registers 命令 : infor registers 说明 : 显示当前处理器的寄存器的值 描述 : info registers R0 0x0 R1 0x R2 0x87ec8000 R3 0x812d0e50 R4 0x87ec8d00 R5 0x0 R6 0x1000 R7 0x400 R8 0x0 R9 0x87ec9000 R10 0xac R11 0x8f81801c R12 0x0 R13 0x400 R14 0xa R15 0x

13 R16 0x819cf710 R17 0x87ec8000 R18 0x0 R19 0x819cf710 R20 0x87fdfdec R21 0x400 R22 0x87fae420 R23 0x819cf710 R24 0x0 R25 0x2 R26 0x87febd08 R27 0x87febd08 R28 0x87fea000 R29 0x87febcc8 R30 0x87fae4cc R31 0x PC 0x8129f info registers 命令 : load-conf 说明 : 加载 skyeye 的配置文件并解析描述 : 3.2 显示目标板及运行环境 list-options 命令 :list-options 说明 : 显示当前 SkyEye 配置文件支持的选项描述 : 用例 :. list-options Option Name Description nandflash cpu Processor option for arm architecture. uart Uart settings net Netcard settings lcd mach machine option mem_bank arch support different architectures. cpu Do not need to provide cpu option any more.

14 3.2.2 show-map 命令 :show-map 说明 : 显示当前的地址分布, 以及不同设备所占的地址空间 描述 : show-map Start Addr Length Type 0xc xc memory 0xc xc memory 0xc xc memory 0x x IO 0x x IO show-pref 命令 :show-pref 说明 : 显示当前的 skyeye 的一些预置的运行选项描述 : 这些运行选项可以在 skyeye 命令行启动的时候传给 skyeye, 也可以通过 skyeye 的图形窗口进行设置 show-pref Module search directorys: /opt/skyeye/lib/skyeye/ Boot address: 0x0 Executable file: (null) Load base for executable file: 0x0 Load mask for executable file: 0x0 SkyEye config file: skyeye.conf Endian of exec file: Little endian list-modules 命令 :list-modules 说明 : 列出所有的已加载的模块名称以及模块的动态库文件 描述 : list-modules Module Name File Name nandflash /opt/skyeye/lib/skyeye/libnandflash.so arm /opt/skyeye/lib/skyeye/libarm.so log-pc /opt/skyeye/lib/skyeye/log.so bfin /opt/skyeye/lib/skyeye/libbfin.so log-pc /opt/skyeye/lib/skyeye/liblog.so uart /opt/skyeye/lib/skyeye/libuart.so disassemble /opt/skyeye/lib/skyeye/libdisasm.so mips /opt/skyeye/lib/skyeye/libmips.so

15 net code_cov sparc ppc touchscreen coldfire flash lcd gdbserver. /opt/skyeye/lib/skyeye/libnet.so /opt/skyeye/lib/skyeye/libcodecov.so /opt/skyeye/lib/skyeye/libsparc.so /opt/skyeye/lib/skyeye/libppc.so /opt/skyeye/lib/skyeye/libts.so /opt/skyeye/lib/skyeye/libcoldfire.so /opt/skyeye/lib/skyeye/libflash.so /opt/skyeye/lib/skyeye/liblcd.so /opt/skyeye/lib/skyeye/libgdbserver.so list-machines 命令 :list-machines 说明 : 列出当前模拟器支持的处理器类型描述 : list-machines Machine Name omap5912 ps7500 lpc2210 ns9750 sharp_lh7a400 s3c2440 s3c2410x at91rm92 pxa_mainstone pxa_lubbock sa1100 cs89712 ep9312 lh79520 ep7312 s3c3410x s3c4510b lpc at 目标板控制命令 start 命令 :start 说明 : 加载配置文件并初始化相应的数据结构

16 描述 : start arch: mips Error: Unkonw cpu name "mips" "cpu" option parameter error! In do_mach_option, mach info: name gs32eb1, mach_init addr 0xb7937d20 Unkonw option: log uart_mod:3, desc_in:, desc_out:, converter: In create_uart_console In skyeye_read_config, Config format is wrong. exec file "vmlinux"'s format is elf32-i386. load section.text: addr = 0x size = 0x000ad2a0. In tea_write, load_base=0x0,load_mask=0xfffffff load section.fixup: addr = 0x812ad2a0 size = 0x c. In tea_write, load_base=0x0,load_mask=0xfffffff load section.kstrtab: addr = 0x812ae31c size = 0x c. In tea_write, load_base=0x0,load_mask=0xfffffff load section ex_table: addr = 0x812b04a0 size = 0x In tea_write, load_base=0x0,load_mask=0xfffffff load section dbe_table: addr = 0x812b1aa8 size = 0x load section ksymtab: addr = 0x812b1aa8 size = 0x000010c8. In tea_write, load_base=0x0,load_mask=0xfffffff load section.data.init_task: addr = 0x812b4000 size = 0x In tea_write, load_base=0x0,load_mask=0xfffffff load section.text.init: addr = 0x812b6000 size = 0x000092f8. In tea_write, load_base=0x0,load_mask=0xfffffff load section.data.init: addr = 0x812bf2f8 size = 0x000003b0. In tea_write, load_base=0x0,load_mask=0xfffffff load section.setup.init: addr = 0x812bf6b0 size = 0x000000a0. In tea_write, load_base=0x0,load_mask=0xfffffff load section.initcall.init: addr = 0x812bf750 size = 0x c. In tea_write, load_base=0x0,load_mask=0xfffffff load section.data.cacheline_aligned: addr = 0x812c0000 size = 0x In tea_write, load_base=0x0,load_mask=0xfffffff load section.reginfo: addr = 0x812c1180 size = 0x In tea_write, load_base=0x0,load_mask=0xfffffff load section.data: addr = 0x812c2000 size = 0x In tea_write, load_base=0x0,load_mask=0xfffffff not load section.sbss: addr = 0x size = 0x not load section.bss: addr = 0x size = 0x0001f4f0. not load section.comment: addr = 0x000101f4 size = 0x00000ed6. not load section.pdr: addr = 0x size = 0x00012b60. not load section.mdebug.abi32: addr = 0x size = 0x In SIM_start, Set PC to the address 0x In gs32eb1_boot_linux, Set PC to the address 0x

17 3.3.2 run 命令 :run 说明 : 从目标板的 PC 地址开始执行描述 : run (running) continue 命令 :continue 说明 : 在模拟器停止状态下, 继续运行描述 : continue (running) stop 命令 :stop 说明 : 在模拟器运行状态下, 停止模拟器的运行描述 : (running)stop quit 命令 :quit 说明 : 退出模拟器, 整个 skyeye 软件退出描述 : q Destroy threads. Unload all modules. exit. 3.4 其它杂项命令 help 命令 :help 说明 : 获得命令的帮助描述 :

18 help No commands match ''. Possibilties are: log-pc : record the every pc to log file. log-pc : record the every pc to log file. disassemble : Disassemble the given address. list-bp : List all the breakpoint. break : set breakpoint for an address. show-step : Show the steps of current processor. x : display memory value at the address. info : show information for various objects. load-conf : load a config file and parse it for SkyEye. list-machines : List all the supported machines for SkyEye. list-options : List all the available options for SkyEye. show-map : Show the current memory map for the machine. show-pref : Show the current preference for SkyEye. list-modules : List all the loaded module. start : start simulator. stepi : step into. continue : Continue the running of interrupted simulator. stop : Stop the running of simulator. run : Start the simulator. q : Quit SkyEye quit : Quit SkyEye ls : Synonym for `list'? : Synonym for `help'. help : List all the category for the commands. help : List all the category for the commands.

19 4.1 skyeye 的配置文件 skyeye.conf 第四章 SkyEye 配置文件 skyeye.conf 是 skyeye 的配置文件, 用来描述模拟的目标板的类型, 内存分布, 以及 SkyEye 的运行配置等等信息 事实上, 你可以把想要让用户配置的选项都可以放在 skyeye 配置文件中 这样用户可以通过编辑 skyeye.conf 文件来比较灵活的选择仿真平台的功能和定制要模拟的目标板 下面是 skyeye.conf 的一个例子 : # skyeye config file for S3C2410X arch:arm cpu: arm920t mach: s3c2410x # physical memory mem_bank: map=m, type=rw, addr=0x , size=0x mem_bank: map=m, type=rw, addr=0x , size=0x , file=./initrd.img mem_bank: map=m, type=rw, addr=0x , size=0x # all peripherals I/O mapping area mem_bank: map=i, type=rw, addr=0x , size=0x mem_bank: map=i, type=rw, addr=0x , size=0x net: type=cs8900a, base=0x , size=0x20,int=9, mac=0:4:3:2:1:f, ethmod=tuntap, hostip= lcd: type=s3c2410x, mod=gtk load_addr:base=0x , mask=0xffffff #dbct:state=on

20 4.2 skyeye.conf 文件的格式 当前,skyeye.conf 中有两种格式的配置选项 第一种配置选项为简单的配置选项, 格式如下 : option_name: option_value 对于一些如 arch 选项,mach 选项都是这样的格式, 例如下面的 arch 选项 arch:arm arch 是选项的名称, 它的值为 arm 第二种选项的格式略微复杂, 用来设定更多的参数, 其格式如下 : option_name: arg_name=arg_value, arg_name=arg_value,... 其中 option_name 为选项的名称,arg_name 为选项的参数名称,arg_value 为选项的参数值 举例如下 : lcd: type=s3c2410x, mod=gtk lcd 是选项的名称 type 是 lcd 这个选项的一个参数, 这个参数的值为 s3c2410x 而 "mod 为 "lcd" 选项的另外一个参数的名称, 它的值为 gtk 如果配置文件中的一行以 # 开始, 则表明这一行为注释 SkyEye 在解析配置文件的时候会忽略这一行

21 4.3 skyeye.conf 中的不同选项 当前 SkyEye 支持非常多的选项, 通过这些选项我们可以比较容易的去定制和配置我们要模拟的目标硬件 下面我们分别对不同的选项进行比较详细的描述 arch 选项 选项名称 : arch 合法的参数值 : arm, blackfin, coldfire, ppc, mips, sparc 描述 : 用来指出我们要模拟的体系结构的名称. arch: arm cpu 选项 选项名称 : cpu 合法的参数值 : SkyEye 支持的不同体系结构支持的处理器系列, 例如 : arm7dmi, e500 等等. 描述 : cpu: e mach 选项 选项名称 :mach 合法的参数值 : 不同的应用处理器名称, 例如 :at91, mpc8572 etc. 描述 : mach: at mem_bank 选项 选项名称 : mem_bank 描述 : 用来描述目标机的地址空间分布, 例如 IO 空间, 内存空间等等 mem_bank 有很多参数用来描述地址空间的属性, 列举如下 : map 参数 参数名称 : map 合法的参数值 :M 代表内存空间,I 代表 IO 空间 描述 : 用来指出一段地址空间的属性 type 参数 参数名称 :type

22 合法的参数值 :RW, RO 描述 : 选项描述了一段地址空间是可读可写还是只读空间 addr 参数参数名称 :addr 合法的参数值 : 对于目标处理器的合法地址 描述 : 用来指出一段地址空间的起始地址 size 参数参数名称 :size 合法的参数值 : 一段连续地址空间的大小 描述 : mem_bank: map=m, type=rw, addr=0x , size=0x 上面的选项 mem_bank 描述了一段可读可写的地址空间, 类型为内存, 起始地址为 0x , 它的长度为 0x 网络选项 选项名称 :net 描述 : 用来描述目标系统的网卡配置 type 参数参数名称 : type 合法的参数值 :cs8900a, rtl8019 描述 :skyeye 模拟的网卡类型 base 参数参数名称 :base 合法的参数值 : 网卡的 IO 空间的起始地址描述 : 网卡的 IO 空间的起始地址 size 参数参数名称 :size 合法的参数值 : 网卡 IO 空间的长度描述 : 网卡 IO 空间的长度 int 参数参数名称 :int 合法的参数值 : 目标机器分配给网卡的中断号描述 : 目标机器分配给网卡的中断号 一般来说, 我们可以从硬件的原理图及相关文档上获得 mac 参数

23 参数名称 :mac 合法的参数值 : 网卡的 mac 地址描述 : 网卡的 mac 地址 ethmod 参数参数名称 :ethmod 合法的参数值 : tuntap 描述 : 网卡的连接方式 tuntap 是一种点对点的连接方式 hostip 参数参数名称 : hostip 合法的参数值 : 主机的 ip 地址 the ip address of host machine 描述 : 主机的 ip 地址, 用来和 SkyEye 莫你的目标板进行通讯 对于 tun 模式下的通信, 一般来说要和目标板网卡的 IP 地址在同一网段 lcd 选项 选项名称 : lcd 描述 : 用来描述 skyeye 模拟的 lcd 控制器的选项 type 参数参数名称 : type 合法的参数值 : s3c2410x, ep7312 参数描述 : 支持的 LCD 类型 mod 参数参数名称 : mod 合法的参数值 : gtk 描述 : 用来绘制 LCD 屏幕的底层的 GUI 库 当前我们只使用了 GTK uart 选项 选项名称 :uart 描述 : 用来描述和配置目标系统的 uart 硬件 mod 参数参数名称 : mod 合法的参数值 : term, stdio, net 描述 : 用来指出当前 uart 仿真使用的底层终端,term 表示另开一个终端窗口做为 uart 的输入和输出,stdio 表示把 uart 的输入和输出混合在 SkyEye 的命令行中,net 表示把 uart 的输入和输出重新定向到某个网络端口中

24 第五章 在 SkyEye 上运行和调试不同的程序 ( 暂无 )

25 6.1 代码覆盖率介绍 第六章 代码覆盖率分析 代码覆盖率分析是指统计代码中的执行范围的, 有那些地址的代码执行了, 哪些地址的代码没有执行 从代码测试的角度去分析, 没有被执行到的代码就没有被运行和测试 从一定程度上, 代码覆盖率的分析能够评判代码质量 6.2 配置文件选项 在 SkyEye 中使能代码覆盖率功能, 需要在 skyeye.conf 添加如下一行 : code_coverage:state=on,start=0x , end=0x , filename=./code_cov 其中 :code_coverage 为配置选项名称,state 是配置参数当 state=on, 表示使能代码覆盖率 ;state=off, 表示关闭代码覆盖率功能 start 参数表示开始进行代码覆盖率统计的起始地址 end: 参数代表进行代码覆盖率统计的结束地址 filename 参数是指出代码覆盖率所存放的数据文件名称 6.3 代码覆盖率数据文件代码覆盖率最终生成的数据文件由两部分组成 : 文件头和 Profiling 的数据 其中文件头的定义如下 : /* The header format of code coverage data file */ #define MAX_DESC_STR 32 typedef struct prof_header_s{ /* the version of header file */ int ver; /* The length of header */ int header_length; int prof_start; int prof_end; /* The description info for profiling file */ char desc[max_desc_str]; }prof_header_t; 6.4 利用 SkyEye 进行代码覆盖率统计

26 第七章 日志使用和解析 ( 暂无 )

27 第八章 性能分析模块 ( 暂无 )

untitled

untitled http://www.embedded-soc.com/ J-LINK J-Link Rev2.1 http://www.embedded-soc.com/ 2007-11-11 http://www.embedded-soc.com/ J-LINK J-Link ARM JTAG J-LINK J-LINKJLINK J-FLASH ARM F.A.Q jlink GDBserver J-Flash

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

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

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

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

MUGI Ver Copyright c 2001, 2002 Hitachi, Ltd. All rights reserved. 1

MUGI Ver Copyright c 2001, 2002 Hitachi, Ltd. All rights reserved. 1 MUGI Ver. 1.3 2002 5 8 1 1 3 2 3 2.1 Panama... 4 2.2... 5 3 5 3.1... 5 3.2... 5 3.3... 6 3.3.1... 6 3.3.2... 6 3.3.3... 7 3.3.4... 7 4 8 4.1... 8 4.2... 8 4.3... 9 4.3.1... 9 4.3.2... 9 4.4... 9 4.4.1

More information

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1.

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE Project Properties IDE makefile 1. Oracle Solaris Studio 12.2 IDE 2010 9 2 8 9 10 11 13 20 26 28 30 32 33 Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1. "File" > "New

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

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7.

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes 包管理理 工具 Helm 蔺礼强 Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes

More information

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

More information

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0 SDChain-Matrix 节点搭建指南 目录 1 环境要求... 3 2 软件下载... 4 3 安装部署... 4 3.1 部署可执行程序目录... 4 3.2 部署配置文件目录... 4 3.3 部署数据库文件目录... 4 3.4 部署日志文件目录... 4 3.5 部署依赖库文件目录... 4 4 配置参数... 5 5 启动运行... 7 5.1 普通模式启动... 7 5.2 加载启动模式...

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

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

Outline 1 SkyEye 简介 2 SkyEye 的安装 SkyEye 的安装试用 skyeye 下载 skyeye 源代码, 编译并安装 3 启动 Linux 执行自己的程序添加 hello 到 uclinux 的根文件系统中在 ArmLinux 中运行 hello 4 编译 linux

Outline 1 SkyEye 简介 2 SkyEye 的安装 SkyEye 的安装试用 skyeye 下载 skyeye 源代码, 编译并安装 3 启动 Linux 执行自己的程序添加 hello 到 uclinux 的根文件系统中在 ArmLinux 中运行 hello 4 编译 linux 嵌入式操作系统 4 SkyEye 简介 陈香兰 (xlanchen@ustceducn) 计算机应用教研室 @ 计算机学院嵌入式系统实验室 @ 苏州研究院中国科学技术大学 Fall 2014 November 28, 2014 陈香兰 (xlanchen@ustceducn) ( 计算机应用教研室 @ 计算机学院嵌入式系统实验室嵌入式操作系统 @ 苏州研究院中国科学技术大学 November 28,

More information

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "P

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE P Oracle Solaris Studio 12.3 IDE 2011 12 E26461-01 2 7 8 9 9 Oracle 10 12 14 21 26 27 29 31 32 33 Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "Project

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

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2 S3C44B0 SDT DRAGNBOY MICROSTAR ARM 51 ARM S3C44B0 ARM SDT2.51 IAR ADS SDT2.51 S3C44B0 LEDTEST SDT ARM 1 2 SDT embed.8800.org SDT2.51 SDT2.51 ARM ARM CPU ARM SDT ADS ADS MULTI-ICE SDT JTAG JTAG SDT SDT2.51

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

+00DE _01EN.book

+00DE _01EN.book TCS-NET MODBUS TCS-NET Modbus TCB-IFMB640TLE 1...... 2 2 RS 485... 3 3... 3 4... 4 5... 4 6... 5 7... 6 8... 16 TCS-NET Modbus 1 http://www.modbus-ida.org/ >=3.5 8 8 N*8 ( N = 252.) 16 >= 3.5 Modbus-Master

More information

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

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

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

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

目录

目录 ALTERA_CPLD... 3 11SY_03091... 3 12SY_03091...4....5 21 5 22...8 23..10 24..12 25..13..17 3 1EPM7128SLC.......17 3 2EPM7032SLC.......18 33HT46R47......19..20 41..20 42. 43..26..27 5151DEMO I/O...27 52A/D89C51...28

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

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

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

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc

Microsoft Word - 在VMWare-5.5+RedHat-9下建立本机QTopia-2.1.1虚拟平台a.doc 在 VMWare-5.5+RedHat-9 下建立 本机 QTopia-2.1.1 虚拟平台 张大海 2008-5-9 一 资源下载 1. 需要以下安装包 : tmake-1.13.tar.gz qtopia-free-source-2.1.1.tar.gz qt-embedded-2.3.10-free.tar.gz qt-x11-2.3.2.tar.gz qt-x11-free-3.3.4.tar.gz

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

How to Debug Tuxedo Server printf( Input data is: %s, inputstr); fprintf(stdout, Input data is %s, inputstr); fprintf(stderr, Input data is %s, inputstr); printf( Return data is: %s, outputstr); tpreturn(tpsuccess,

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

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

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

untitled

untitled 年度 路 IVI 劉 隆 年 597 598 IVI 錄... 601 行... 601... 601 1.... 601 2. 路... 602 3.... 603... 604 1.IPv4 to IPv6... 604 2.IPv6 to IPv4... 605 -... 606 ( )IVI Server... 606 ( )IVI Server... 610 ( )IVI DNS Server...

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

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

Sun Fire V440 Server Administration Guide - zh_TW

Sun Fire V440 Server Administration Guide - zh_TW Sun Fire V440 Server 管 理 指 南 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. 650-960-1300 文 件 號 碼 :817-2818-10 2003 年 7 月, 修 訂 版 A 將 您 對 此 文 件 的 意 見 傳 送 到 :http://www.sun.com/hwdocs/feedback

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

User’s Manual

User’s Manual V7 用 户 手 册 亿 图 为 您 专 业 图 表 设 计 提 供 最 佳 解 决 方 案 2004-2014 EdrawSoft. All right reserved. Edraw and Edraw logo are registered trademarks of EdrawSoft. 目 录 亿 图 怎 样 优 越 于 其 他 软 件... 5 亿 图 7 个 新 功 能... 6 为

More information

Application Note Format

Application Note Format USB 說 2 - AD PWM Office: 6F, No. 12, Innovation 1st. RD., Science-Based Industrial Park, Hsin-Chu City, Taiwan, R.O.C Tel: +886-3-6661766 ext.1672 Fax: +886-3-6661765 Etoms Electronics Corp. Publication

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

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

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File

1 Project New Project 1 2 Windows 1 3 N C test Windows uv2 KEIL uvision2 1 2 New Project Ateml AT89C AT89C51 3 KEIL Demo C C File 51 C 51 51 C C C C C C * 2003-3-30 pnzwzw@163.com C C C C KEIL uvision2 MCS51 PLM C VC++ 51 KEIL51 KEIL51 KEIL51 KEIL 2K DEMO C KEIL KEIL51 P 1 1 1 1-1 - 1 Project New Project 1 2 Windows 1 3 N C test

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

Tel: Fax: TTP-344M/246M /

Tel: Fax: TTP-344M/246M / TTP-344M/246M / True Type font David Turner, Robert Wilhelm Werner Lemberg The Free Type Project 235 16 8 2 i- TTP-344M/246M...1 1.1...1 1.2...1 1.2.1...1 1.2.2 /...2 1.2.3...2 1.2.4...2 1.3...3 1.4...3

More information

Progress Report of BESIII Slow Control Software Development

Progress Report of BESIII Slow Control Software Development BESIII 慢控制系统高压和 VME 监控 系统的设计和实现 陈锡辉 BESIII 慢控制组 2006-4-27 Outline Design and implementation of HV system Features Implementation Brief introduction to VME system Features Implementation of a demo Tasks

More information

PROFIBUS3.doc

PROFIBUS3.doc PLC PLC ProfiBus 3. PROFIBUS-DP PROFIBUS-DP PROFIBUS-DP PROFIBUS S7 STEP7 SIMATIC NET S5 COM PROFIBUS COM5431 PROFIBUS-DP GSD GSD *.GSD *. GSE GSD S7 STEP7 PROFIBUS DP S7-400 CPU416-2DP S7-200 PROFIBUS

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

<4D F736F F D20B5DAC8FDCBC4D5C2D7F7D2B5B4F0B0B82E646F63>

<4D F736F F D20B5DAC8FDCBC4D5C2D7F7D2B5B4F0B0B82E646F63> 第三章 Q3 1 1. 省略了 I/O 操作的复杂逻辑, 易实现, 耗费低 ; 2. 可以利用丰富的内存寻址模式实现灵活的 I/O 操作 Q3 2 假设存储单元 ds1 处寄存器地址为 0x2000, 代码如下 #define ds1 0x2000 while ( *ds1 == 0 ) ; Q3 3 假设设备 (dev1) 中有两个寄存器 ds1 和 dd1,dev1 的地址为 0x1000,ds1

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

PCM-3386用户手册.doc

PCM-3386用户手册.doc PCM-3386 BBPC-4x86 10/100M PC/104 (Lanry technology Co. Ltd. Zhuhai) 38 1012836 (Address: Room 1012,Linhai Building,No. 38,west of Shihua Road,Zhuhai City,Guangdong Province,China) (post code)519015 (phone)0756-3366659

More information

untitled

untitled MODBUS 1 MODBUS...1 1...4 1.1...4 1.2...4 1.3...4 1.4... 2...5 2.1...5 2.2...5 3...6 3.1 OPENSERIAL...6 3.2 CLOSESERIAL...8 3.3 RDMULTIBIT...8 3.4 RDMULTIWORD...9 3.5 WRTONEBIT...11 3.6 WRTONEWORD...12

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

言1.PDF

言1.PDF MSP430 WINDOWS WORKBENCH MSP430 Flash Green MCU Flash Flash MCU MSP430 16 RISC 27 125ns 1.8V~3.6V A/D 6 s MSP430 10 ESD MSP430 MSP430 10 MSP430 2001 MSP430 Windows Workbench Interface Guide Windows Workbench

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

劇情大綱 這是有關一對兄妹的故事 不過 所有的情節 必需先從一隻山羊說起 邱興傳 阿傳 在一次部隊的演習中撿到了一隻山羊 沒有烙印記號也 沒人招領 所以退伍時決定把羊帶回家 他攔了一台空的小貨車 央求對方 載他和羊到火車站去 也就在半路上 山羊講話了 山羊說 牠是鬼 卻被一個假裝是鬼的人給騙了 才逼

劇情大綱 這是有關一對兄妹的故事 不過 所有的情節 必需先從一隻山羊說起 邱興傳 阿傳 在一次部隊的演習中撿到了一隻山羊 沒有烙印記號也 沒人招領 所以退伍時決定把羊帶回家 他攔了一台空的小貨車 央求對方 載他和羊到火車站去 也就在半路上 山羊講話了 山羊說 牠是鬼 卻被一個假裝是鬼的人給騙了 才逼 電 影 變 羊 記 劇 本 2011 HUSISHI FILMS CO. All Rights Reserved. 劇情大綱 這是有關一對兄妹的故事 不過 所有的情節 必需先從一隻山羊說起 邱興傳 阿傳 在一次部隊的演習中撿到了一隻山羊 沒有烙印記號也 沒人招領 所以退伍時決定把羊帶回家 他攔了一台空的小貨車 央求對方 載他和羊到火車站去 也就在半路上 山羊講話了 山羊說 牠是鬼 卻被一個假裝是鬼的人給騙了

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

¬¬

¬¬ 2 年 第 9 周 2.2.2-2.2.27 26 年 第 7 周 : 受 春 节 影 响, 一 二 级 市 场 无 供 应 成 交 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 供 应 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 成 交 26 年 第 7 周 (26 年 2

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

Measurement Studio Expands Your Test and Measurement Programming Power

Measurement Studio Expands Your Test and Measurement Programming Power NI-DAQmx NI-DAQ NI-DAQmx NI-DAQ NI-DAQmx NI-DAQmx NI-DAQ NI-DAQmx NI-DAQmx LabVIEW LabWindows/CVI ANSI C Measurement Studio Visual Studio I/O 1. I/O API I/O NI NI NI NI ADE 1.NI-DAQmx NI & MAX DAQ Assistant

More information

自动化接口

自动化接口 基 于 文 件 的 数 据 交 换 的 注 意 事 项 1 SPI 2 COMOS Automation 操 作 手 册 通 用 Excel 导 入 3 通 过 OPC 客 户 端 的 过 程 可 视 化 4 SIMIT 5 GSD 6 05/2016 V 10.2 A5E37093378-AA 法 律 资 讯 警 告 提 示 系 统 为 了 您 的 人 身 安 全 以 及 避 免 财 产 损 失,

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

Cadence Poqi

Cadence Poqi Cadence Poqi055 2002-7-10 1 Allegro SI PCB 1 Cadence SI Allegro PCB *.brd SpecctreQuest *.brd SigXplore SigXplore 2 PowerPCB Aleegro PowerPCb PCB Export File Export ASCII *.asc 1.1 1.1 PowerPCB ASC 1.2

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

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

C语言的应用.PDF

C语言的应用.PDF AVR C 9 1 AVR C IAR C, *.HEX, C,,! C, > 9.1 AVR C MCU,, AVR?! IAR AVR / IAR 32 ALU 1KBytes - 8MBytes (SPM ) 16 MBytes C C *var1, *var2; *var1++ = *--var2; AVR C 9 2 LD R16,-X ST Z+,R16 Auto (local

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

“PC通”商业计划书.doc

“PC通”商业计划书.doc 91 Digital Net ( SHANGHHAI ) CO.,LTD. Copyright 91 Digital Net ( SHANGHHAI ) CO.,LTD.. All Rights Reserved. 1 2 / 3 YDJK0412 YDJK001... 4...4...4...5... 6... 6...6...7...7... 7... 8... 8... 8...

More information

untitled

untitled CPU!! 00-11-8 Liping zhang, Tsinghua 1 : ADD(r1, r, r) CMPLEC(r, 5, r0) MUL(r1, r, r) SUB(r1, r, r5) ADD r, ( ) r CMP. CMP r.. t t + 1 t + t + t + t + 5 t + 6 IF( ) ADD CMP MUL SUB RF NOP ADD CMP MUL SUB

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

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

f2.eps

f2.eps 前 言, 目 录 产 品 概 况 1 SICAM PAS SICAM 电 力 自 动 化 系 统 配 置 和 使 用 说 明 配 置 2 操 作 3 实 时 数 据 4 人 机 界 面 5 SINAUT LSA 转 换 器 6 状 态 与 控 制 信 息 A 版 本 号 : 08.03.05 附 录, 索 引 安 全 标 识 由 于 对 设 备 的 特 殊 操 作 往 往 需 要 一 些 特 殊 的

More information

V6800/V6600 3D

V6800/V6600 3D V6800/V6600 3D V6600/V6800 3D R 2000 2 3 4 5 R 6 7 8 The VIP (Video Interface Port) Connector are used for third party add-on modules, such as video capture cards or television tuners. DDR: Double Data

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

an153f

an153f 153 2016 1 Linduino Michael Jones (PSM) LTpowerPlay (BMC) PSM PSM PMBus PMBus SMBus SMBus I2C PSM BMC Linduino (API) PSM Linduino PSM BMC BMC Robust PMBus System Software for the LTC3880) I 2 C / SMBus

More information

Chapter 24 DC Battery Sizing

Chapter 24  DC Battery Sizing 26 (Battery Sizing & Discharge Analysis) - 1. 2. 3. ETAP PowerStation IEEE 485 26-1 ETAP PowerStation 4.7 IEEE 485 ETAP PowerStation 26-2 ETAP PowerStation 4.7 26.1 (Study Toolbar) / (Run Battery Sizing

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

P4Dual-915GL_BIOS_CN.p65

P4Dual-915GL_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date Total Memory DIMM 1 DIMM 2 [ 14:00:09] [Wed 01/05/2005] BIOS Version : P4Dual-915GL BIOS P1.00 Processor Type : Intel (R) Pentium

More information

「人名權威檔」資料庫欄位建置表

「人名權威檔」資料庫欄位建置表 ( version 0.2) 1 3 3 3 3 5 6 9.... 11 Entities - Relationship Model..... 12 13 14 16 2 ( ) Int Varchar Text byte byte byte Id Int 20 Name Surname Varchar 20 Forename Varchar 20 Alternate Type Varchar 10

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

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG --------------------------------------------TABLE OF CONTENTS------------------------------------------

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

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

1

1 SDT Uclinux SDT.alf.c 44blib.alf 44blib.c jtag ADS.alf.c make menuconfig make dep make clean make lib_only make user_only make romfs make image make uclinux ext2 cash lcd frambuffer 1 armsys-c uclinux

More information

CDWA Mapping. 22 Dublin Core Mapping

CDWA Mapping. 22 Dublin Core Mapping (version 0.23) 1 3... 3 3 3 5 7 10 22 CDWA Mapping. 22 Dublin Core Mapping. 24 26 28 30 33 2 3 X version 0.2 ( ) 4 Int VarcharText byte byte byte Id Int 10 Management Main Code Varchar 30 Code Original

More information

标题

标题 . 4 2013 年 湖 南 省 财 政 厅 电 子 政 务 发 展 形 势 分 析 及 2014 年 发 展 展 望 湖 南 省 财 政 厅 2013 年, 省 财 政 厅 高 度 重 视 电 子 政 务 工 作, 将 电 子 政 务 作 为 优 化 工 作 流 程 提 高 工 作 效 率 提 升 服 务 水 平 建 设 透 明 廉 洁 财 政 的 重 要 途 径, 信 息 化 水 平 不 断 提

More information

一、

一、 网 上 交 易 客 户 端 操 作 文 档 证 券 2014 年 免 责 申 明 因 客 户 端 软 件 升 级, 对 应 帮 助 文 件 中 的 图 片 及 文 字 可 能 存 在 未 同 步 更 新 的 情 况, 由 此 产 生 的 损 失 我 们 将 不 负 任 何 责 任, 请 大 家 以 最 新 版 本 的 客 户 端 软 件 为 准 索 引 一 委 托 功 能 区 说 明...1 二 委

More information

untitled

untitled niosii H:\DB2005\project\niosDK\Example\NiosSmall QuartusII4.2 File -> New Project Wizard Diectory,Name,Top-Level Entity Add Files EDA Tools Setting Finish, OK H:\DB2005\project\niosDK\Example\NiosSmall

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

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

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information