Software Boot and PL Configuration

Size: px
Start display at page:

Download "Software Boot and PL Configuration"

Transcription

1 Xilinx All Programmable 客户技术培训 1Software Boot and PL Configuration

2 **slide Objectives After completing this module, you will be able to: Differentiate between program storage and execution memory options and when to use them State various mechanisms for system initialization and application loading Describe the Zynq All Programmable SoC programmable logic (PL) configuration process from an FSBL software application Describe the flash writer utility and its requirements Analyze flash writing and different boot loading usage scenarios Software Boot and PL Configuration - 2 Copyright 2014 Xilinx 40362

3 **slide Overview Overview Boot Loader Zynq All Programmable SoC PS Boot and PL Configuration Flash Programmer Utility Summary Software Boot and PL Configuration - 3 Copyright 2014 Xilinx 40362

4 **slide Introduction Embedded applications can range in size from a few kilobytes to a few megabytes Two types of external memory may be required Non-volatile memory for storing program and initialized data Memory for running the program If the application size and initialized data are small enough, they can then be downloaded into internal block RAM or OCM RAM A small application is needed to load the program from non-volatile memory into operational RAM Runs on power-on reset and soft resets Known as a boot loader Several mechanisms are available for loading large programs and data stored in non-volatile memory Software Boot and PL Configuration - 4 Copyright 2014 Xilinx 40362

5 5 Standard Zynq All Programmable SoC Boot Model PS is Boot Master Multi-stage boot process Stage 0: Runs from ROM; loads from non-volatile memory to OCM Provided by Xilinx; unmodifiable Stage 1: Runs from OCM; loads from non-volatile memory to DDRx memory User developed; Xilinx offers example code SDK project Initiates PS boot and PL configuration Stage 2: Optional; runs from DDR User developed; Xilinx offers example code Uboot Sourced from flash memory or through common peripherals, programmable logic I/O, etc. Programmable logic configuration can be performed in Stage 1 or 2 Software Boot and PL Configuration - 5 Copyright 2014 Xilinx 40362

6 **slide Zynq All Programmable SoC Program Loading and Initialization Mechanisms Debug mode: Configure PL with bitstream then run the application from XMD Boot mode: FSBL or SSBL configure PL with bitstream Size of application impacts where program can run from Very small applications can run from OCM (no DDR requirement) Small applications can run from BRAM (no DDR requirement) Applications can run from non-volatile or DDR memory Loading the application with a boot loader Use nonvolatile memory to store the application, initialize the processor memory from it, and execute it May execute application directly from flash or other non-volatile memory Software Boot and PL Configuration - 6 Copyright 2014 Xilinx 40362

7 7 Cortex-A9 Processor Memory Space in the Zynq-7000 AP SoC Processing system and programmable logic look the same from the processor's viewpoint Zynq All Programmable SoC PS-based peripherals have a fixed address map AMBA, AXI interfaces, memory-mapped I/O, register access Custom Peripheral Code Snippet Programmer s View of Custom Accelerators and Peripherals Software Boot and PL Configuration - 7 Copyright 2014 Xilinx 40362

8 **slide Configuring the PL through SDK Download the bitstream and then the application Select Xilinx Tools > Program FPGA Locate and select hardware bit file No BMM file as the ELF runs in PS DDR memory Click Program The programmable logic configures and starts executing the application in DDR memory When launched (later), the XMD debugger will halt the processor and load the actual application for debugging Software Boot and PL Configuration - 8 Copyright 2014 Xilinx 40362

9 9 Software Program Loading in the Zynq All Programmable SoC (1) Run configurations through SDK Select software application in the project explorer pane Select Run > Run Configurations Double-click Xilinx C/C++ ELF(GDB) to create a run configuration for application Click Run to download executables (.elf) and run application Software Boot and PL Configuration - 9 Copyright 2014 Xilinx 40362

10 **slide Software Program Loading in the Zynq All Programmable SoC (2) Debug using XMD If PL is used, select Xilinx Tools > Program FPGA Choose the.bit file and click Program; programmable logic configures Launch XMD and select Xilinx Tools > XMD Console Command console opens Connect to ARM hardware dow FSBL.elf to initialize PS dow <executable>.elf downloads executable Software Boot and PL Configuration - 10 Copyright 2014 Xilinx 40362

11 **slide Program Loading and Initialization Mechanisms (MicroBlaze Processor) Initializing bitstreams with the application Application is small enough to be contained within the programmable logic Downloading an application by using XMD Application resides in external memory, use XMD to download the application after the programmable logic has been configured with the bitstream Bitstreams must be initialized with the BootLoop program in order to place the processor in a proper state between bitstream downloading and application downloading through XMD Loading the application with a boot loader Use nonvolatile memory to store the application, initialize the processor memory from it, and execute it May be executing application from flash or other non-volatile memory Software Boot and PL Configuration - 11 Copyright 2014 Xilinx 40362

12 **slide Bitstream Initialization in SDK (MicroBlaze Processor) Initialize bitstreams with the application Select Xilinx Tools > Program FPGA Locate and select hardware bit and block RAM location bmm files Specify an ELF to download and click Program Initialize bitstreams with BootLoop BootLoop is a software application that keeps the processor in a defined state until the actual application is downloaded in a controlled manner by the debugger Select Xilinx Tools > Program FPGA, select BootLoop, and click Program The programmable logic configures and starts executing the BootLoop program in block RAM When launched (later), the XMD debugger will halt the processor and load the actual application for debugging Software Boot and PL Configuration - 12 Copyright 2014 Xilinx 40362

13 **slide Software Program Loading with XMD (MicroBlaze Processor) Processor hardware debug unit must already be instantiated (JTAG) For MicroBlaze-processor systems, the processor must be connected to a Microprocessor Debug Module (MDM) Select Xilinx Tools > Program FPGA, select BootLoop, and click Program; programmable logic configures in an infinite loop Select Xilinx Tools > Program FPGA to download and execute the selected BootLoop Select Xilinx Tools > XMD Console to launch XMD Command console opens dow <executable>.elf downloads executable Software Boot and PL Configuration - 13 Copyright 2014 Xilinx 40362

14 **slide Boot Loader Overview Boot Loader Zynq All Programmable SoC PS Boot and PL Configuration Flash Programmer Utility Summary Software Boot and PL Configuration - 14 Copyright 2014 Xilinx 40362

15 **slide Boot Loader What is a boot loader? First program run Runs on power up or reset Copies program from non-volatile memory to DDR/OCM/block RAM Could load application directly, an OS loader, or the OS itself When done transfers control to selected program Why? Final software system... Might not fit into ROM Might require some kind of run-time set up before it is launched Might be determined dynamically Boot loaders tend to range from simple to quite complex systems May include communication drivers to download application from remote location May include decompression/decryption engine for compressed/encrypted images Software Boot and PL Configuration - 15 Copyright 2014 Xilinx 40362

16 **slide Boot Load Scenarios Commonly used boot load scenarios Booting from flash devices Booting from PROMs Booting from a serial line Booting from Ethernet with BootP and TFTP Booting from PCIe or other communications interface Command line-based interactive boot load Each method has its advantages, disadvantages, and applicability Software Boot and PL Configuration - 16 Copyright 2014 Xilinx 40362

17 **slide Image Formats Boot loader must understand both Image format of the file (application, bitstream, or data) Organization of the images in the NV storage medium Formats Common: ELF, Intel MCS-86 file (.mcs),.bin, Motorola SREC, Intel I-hex, binary, gzip/bzipped images Less common: Custom formats are common as well Image formats have different processing complexities and sizes ELF, SREC/iHex, binary, compressed Decreasing order of size requirements Compressed, ELF, SREC/iHex, binary Decreasing order of processing complexity Software Boot and PL Configuration - 17 Copyright 2014 Xilinx 40362

18 18 Stage 0: ROM Based (Zynq All Programmable SoC) Processor boots from boot ROM (128KB) Xilinx provided Not viewable Copies First Stage Boot Loader (FSBL) from memory device to OCM static RAM (256KB) Maximum size is 192KB (rest can be used as stack, BSS, or non-initialized memory) Xilinx provided Starts executing FSBL from OCM RAM Software Boot and PL Configuration - 18 Copyright 2014 Xilinx 40362

19 19 Stage 1: First Stage Boot Loader (FSBL) (Zynq All Programmable SoC) Example FSBL provided by Xilinx as an SDK example project Otherwise user developed Copies next stage of code into DDRx or static memory (OCM) And/or enables an external device for Stage 2 Further initialization of PS components and peripherals Optionally configures programmable logic Upon completion, launches application or Second Stage Boot Load Software Boot and PL Configuration - 19 Copyright 2014 Xilinx 40362

20 20 Stage 2: Second Stage Boot Loader (SSBL) (Optional) (Zynq All Programmable SoC) Example U-Boot provided by Xilinx Otherwise user developed Loaded from user-selected external device Flexibility in boot sources Static memory Dynamic memory PS peripherals such as USB, Ethernet, or SD Programmable logic I/Os Initializes rest of PS Optionally configures PL Software Boot and PL Configuration - 20 Copyright 2014 Xilinx 40362

21 **slide Boot Loader Flow in SDK (MicroBlaze Processor) Build the target software application as an ELF executable file Use the Flash Writer utility to Convert the application ELF to a Motorola S-Record format, an industry-standard format mostly used for flash programming Generate boot loader application Explained in the next section Select Xilinx Tools > Program FPGA, specify the boot loader application to be used, and click Program The programmable logic configures with the launch of the boot loader application On system start up, the boot loader fetches image from the boot load target Copies/unpacks the image to external memory Performs other initialization, if needed Transfers control to the entry point of the final application Software Boot and PL Configuration - 21 Copyright 2014 Xilinx 40362

22 22 Processor Boot Sequence (MicroBlaze Processor) Software Boot and PL Configuration - 22 Copyright 2014 Xilinx 40362

23 **slide Zynq All Programmable SoC PS Boot and PL Configuration Overview Boot Loader Zynq All Programmable SoC PS Boot and PL Configuration Flash Programmer Utility Summary Software Boot and PL Configuration - 23 Copyright 2014 Xilinx 40362

24 24 Zynq-7000 All Programmable SoC Boot and Configuration Zynq-7000 All Programmable SoC devices can be booted and/or configured in Secure mode via static memories only (JTAG excluded) Ability to have secure software and protects bitstream and IP Non-secure mode via JTAG or static memories (debug and development environment) Standard boot model Three master boot devices QSPI: serial memory, linear addressing NAND: complex parallel memory NOR: parallel memory, linear addressing SD: Flash memory card JTAG: download cable Secondary boot devices USB, Ethernet, and most other peripherals Software Boot and PL Configuration - 24 Copyright 2014 Xilinx 40362

25 25 Non-Secure OS Boot Example Software Boot and PL Configuration - 25 Copyright 2014 Xilinx 40362

26 26 Secure Boot Example Software Boot and PL Configuration - 26 Copyright 2014 Xilinx 40362

27 27 Secure Linux Boot Example Software Boot and PL Configuration - 27 Copyright 2014 Xilinx 40362

28 28 Processing System (PS) Boot Configuration Handoff The Zynq All Programmable SoC is a processor first, programmable logic second Most options, features, and configurations are controlled by software setup Clock generation MIO usage Processor cache and memory configuration The Vivado Design Suite Export to SDK utility generates the PS configuration code Used by FSBL Various *.c and *.h files Software Boot and PL Configuration - 28 Copyright 2014 Xilinx 40362

29 **slide Software Drivers Xilinx provides drivers for all primary boot interfaces Linux driver Standalone driver Example FSBL provided Example SSBL provided Software Boot and PL Configuration - 29 Copyright 2014 Xilinx 40362

30 **slide PL Device Configuration Services Used by FSBL Set of Standalone library services The device configuration interface has three main functionalities AXI-PCAP Security policy System monitor Currently not implemented Supports the downloading of the programmable logic bitstream and readback of the decrypted image Services are detailed in the Software Developers Guide (UG821) Software Boot and PL Configuration - 30 Copyright 2014 Xilinx 40362

31 **slide SDK FSBL Support SDK software project Complete FSBL boot application Software application load PL configuration from bit file Support for golden image Requires *.bif file for image generation All source code is included Can be modified for other boot sources Ethernet USB Serial Software Boot and PL Configuration - 31 Copyright 2014 Xilinx 40362

32 **slide Building the FSBL Software Application Project Created with an SDK software project template Automatically loads program and bit file images from flash Requires a special FSBL partition image in flash BootGen tool builds flash image binary Software Boot and PL Configuration - 32 Copyright 2014 Xilinx 40362

33 **slide Programming the PL from SDK Configure PL from SDK Select Xilinx Tools > Program FPGA Specify hardware BIT file Files typically located in the Vivado Design Suite project No BMM file as the ELF file runs in DDR memory Once PS is configured, use RUN command to download new ELF file Software Boot and PL Configuration - 33 Copyright 2014 Xilinx 40362

34 **slide Creating a Single Boot Image File Creating a Zynq All Programmable SoC boot image file using SDK Right-click the software application project and select Create Boot Image Add the FSBL ELF file Add the PL bitstream file (if PL design available) Add the software application ELF file Select the output file name Click Create Image to create the image file Output files (based on extension.bin or.mcs) Creates Intel MCS-86 file (.mcs) for programming flash Creates.BIN image for booting the application from the SD card Software Boot and PL Configuration - 34 Copyright 2014 Xilinx 40362

35 35 PS Boot and PL Configuration Example 1 Enclosed System 1. PS runs Stage 0 boot from OCM-ROM, which loads the First Stage Boot Loader from Flash into OCM-RAM 2. PL bitstream may be loaded into the PL under FSBL control at this time or may be deferred until later 3. FSBL loads Second Stage Boot Loader or Application into DDRx memory and runs SSBL / Application When SSBL is complete, the OS begins execution out of DDRx memory Optionally, PL may be configured from SSBL now or even later under user software control Software Boot and PL Configuration - 35 Copyright 2014 Xilinx 40362

36 36 PS Boot and PL Configuration Example 2 Using Flash Memory and an SD Card 1. PS runs Stage 0 boot from OCM-ROM, which loads the First Stage Boot Loader from Flash into OCM-RAM 2. PL bitstream may come from SD card or Flash and is loaded into the PL under FSBL control at this time or may be deferred until later 3. FSBL loads Second Stage Boot Loader or Application from the SD card into DDRx memory and runs SSBL / Application When SSBL is complete, the OS begins execution out of DDRx memory Optionally, PL may be configured from SSBL now or even later under user software control Software Boot and PL Configuration - 36 Copyright 2014 Xilinx 40362

37 37 PS Boot and PL Configuration Example 3 Networked System 1. PS runs Stage 0 boot from OCM-ROM, which loads the First Stage Boot Loader from Flash into OCM-RAM 2. FSBL may configure the PL at this time or defer configuration 3. FSBL configures Ethernet MAC and loads Second Stage Boot Loader or Application from the remote server into DDRx memory and runs SSBL / Application When SSBL is complete, the OS begins execution out of DDRx memory Optionally, PL may be configured during FSBL or SSBL or even later under user software control Software Boot and PL Configuration - 37 Copyright 2014 Xilinx 40362

38 **slide Configuring and Re-Configuring the PL The PL is configured via the device configuration interface module Accessed via a software application using an AXI port in the PS Supported by Xilinx-provided APIs in SDK Recommended methodology Separate DMA port into the Central interconnect for simultaneous PL configuration with software download Accessed from the PL via a GPx master AXI port Not recommended Software Boot and PL Configuration - 38 Copyright 2014 Xilinx 40362

39 **slide Flash Programmer Utility Overview Boot Loader Zynq All Programmable SoC PS Boot and PL Configuration Flash Programmer Utility Summary Software Boot and PL Configuration - 39 Copyright 2014 Xilinx 40362

40 40 Flash Image Generation Flow (Zynq All Programmable SoC) Software Boot and PL Configuration - 40 Copyright 2014 Xilinx 40362

41 41 Flash Programming Support (Zynq All Programmable SoC) Use of the Vivado hardware manager to program flash Assign flash image to flash memory attached to the Zynq device Connect to the JTAG chain containing the ARM DAP of the Zynq device Download the flash programming application into the PS of the Zynq device using the hardware manager Procedure Erase: the hardware manager tells the Zynq device application to erase flash memory Program: the hardware manager loads the flash image into the PS buffer of the Zynq device; Zynq device application writes the image to flash memory Verify: Zynq device reads the flash contents and writes into buffer; reads the buffer and compares against the original flash image Use of SDK to program flash Creates a flash Image using a flash image generator The flash writer uses the same programming engine as hardware manager Software Boot and PL Configuration - 41 Copyright 2014 Xilinx 40362

42 42 Creating a First Stage Bootload Software Application (Zynq All Programmable SoC) SDK supports an example FSBL software application project Target application must be in Zynq device FSBL format in flash RAM must exist at location targeted by flash image format Selection of target hardware processor(s) FSBL May configure the programmable logic with hardware bitstream May load OS image or standalone image or SSBL image from the non-volatile memory to RAM (DDR) Transfers program control to the newly loaded application/os Xilinx FSBL supports multiple partitions; each partition can be a code image or a bitstream Software Boot and PL Configuration - 42 Copyright 2014 Xilinx 40362

43 **slide Flash Programming Utility (Zynq All Programmable SoC) Select Xilinx Tools > Program Flash Select the image file and offset A full flash image offset will always be 0 Click Program to "flash" the image Software Boot and PL Configuration - 43 Copyright 2014 Xilinx 40362

44 **slide Parallel Flash Memory Boot (MicroBlaze Processor) SDK provides a Program Flash Memory dialog box for programming flash devices Supports flash devices that support Intel command sets Supports most all physical flash arrangements Supports flash bootloader software application creation Supports an executable file as an input format and provides the option of converting it into SREC format Flash devices must interface through the EMC peripheral Requires XMD to execute a Tcl file to perform programming and verification functions Software Boot and PL Configuration - 44 Copyright 2014 Xilinx 40362

45 45 Creating a Boot Load Software Application (MicroBlaze Processor) SDK supports an example boot load software application project Target application must be in SREC format in flash (as provided by the flash programming utility) RAM must exist at location targeted by SREC format All source is provided and can be modified Address of flash memory must be specified in blconfig.h Boot messages sent to STDout if VERBOSE symbol defined Software Boot and PL Configuration - 45 Copyright 2014 Xilinx 40362

46 **slide Flash Writer Utility (MicroBlaze Processor) Object file to be programmed Object in ELF or SREC format Hardware instance of flash memory Base address, size, and data width automatically determined from hardware platform specification Storage offset from beginning of flash memory Programming scratchpad RAM is required Software Boot and PL Configuration - 46 Copyright 2014 Xilinx 40362

47 **slide Summary Overview Boot Loader Zynq All Programmable SoC PS Boot and PL Configuration Flash Programmer Utility Summary Software Boot and PL Configuration - 47 Copyright 2014 Xilinx 40362

48 48 Apply Your Knowledge 1. Where are the different places in which a user application can reside and when will you use them? 2. What is the Flash Programmer utility? What are some of the requirements? Software Boot and PL Configuration - 48 Copyright 2014 Xilinx 40362

49 **slide Summary SDK supports various mechanisms for initializing an application. The choice depends on the size of the application, how it will be stored, and the memory technology environment in which it will execute FSBL application provided in SDK features PS boot PL configuration SDK provides a Flash Programmer utility that you can use to program flash devices SDK provides a sample bootloader software application project Software Boot and PL Configuration - 49 Copyright 2014 Xilinx 40362

50 **slide Lab 6: Boot Loading from Flash Memory (Zynq All Programmable SoC) Introduction The lab illustrates the steps involved in booting an application from QSPI flash Objectives Open the Vivado Design Suite project and re-configure to Zynq All Programmable SoC PS settings Export to SDK and launch the software project Create a Zynq All Programmable SoC boot image file using the ELF and BIT files Program the flash by copying the MCS file to flash Boot the system by loading the actual application stored in flash Software Boot and PL Configuration - 50 Copyright 2014 Xilinx 40362

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

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.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

Designing a Custom AXI Peripheral

Designing a Custom AXI Peripheral 1 2014 Xilinx All Programmable 客户技术培训 1Designing a Custom AXI Peripheral 2014.1 2 16252**slide Introduction What AXI signals do I need and what are their names? How do I design an AXI peripheral? How does

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

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

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

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

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

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

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

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

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

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

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

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

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

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

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

(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

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

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

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

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

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

Debugging the Zynq All Programmable SoC

Debugging the Zynq All Programmable SoC 2014 Xilinx All Programmable 客户技术培训 1Debugging the Zynq All Programmable SoC 2014.1 36300**slide Objectives After completing this module, you will be able to Explain the various JTAG chain configurations

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

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

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

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

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

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

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

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

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

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

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

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

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

Embargoed until May 4, 2004 EXPRESS 40 NI HQ 3000 1000 5000 ~ 500 10% / 500 85% NI LabVIEW 7 Express Express EXPRESS : #1 GPS Navigation PC/WWW/Email CD+RW Mobile Phone PDA DVD+RW Satellite Car Alarm/Radio

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

Logitech Wireless Combo MK45 English

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

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

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

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Microsoft PowerPoint - ARC110_栾跃.ppt

Microsoft PowerPoint - ARC110_栾跃.ppt ARC110 软 件 构 架 设 计 的 原 则 和 指 南 课 程 内 容 概 述 介 绍 和 引 言 软 件 构 架 和 构 架 师 软 件 构 架 的 设 计 模 式 框 架 和 参 照 设 计 自 我 介 绍 第 一 代 自 费 留 学 生 : 美 国 南 伊 利 诺 州 立 大 学 (SIUE) 电 机 工 程 学 士 (1984) 及 硕 士 学 位 (1985) 历 任 OwensIllinois,

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

14 建筑环境设计模拟分析软件DeST--辅助商业建筑设计应用实例.doc

14 建筑环境设计模拟分析软件DeST--辅助商业建筑设计应用实例.doc DeST 15 DeST DeST DeST DeST Building environment design simulation software DeST(15): Practical application of the commercial buildings models of DeST By Zhang Ye, Yan Da, Liu Ye and Jiang Yi Abstract

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

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica

ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplica CP Chip Power ARM Cortex-M3 (STM32F) ARM Cortex-M3 (STM32F) STMicroelectronics ( ST) STM32F103 Core: ARM 32-bit Cortex -M3 CPU 72 MHz, 90 DMIPS with 1.25 DMIPS/MHz Single-cycle multiplication and hardware

More information

SST SPAC SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD / SoftICE SoftICE MCU SoftICE SS

SST SPAC SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD / SoftICE SoftICE MCU SoftICE SS SST SoftICE SST89C5x/SST89x554RC /564RD /SST89x516/5xRD2 1...2 1.1...2 1.2...2 1.3 /...2 2 SoftICE...2 3 SoftICE MCU...2 4 SoftICE...3 4.1 SST BootLoader SOFTICE...3 4.2 SoftICE SST MCU...6 5 SoftICE...7

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

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

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

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

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

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

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

目次 

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

More information

5in1_eDVR_Manual_Chinese.cdr

5in1_eDVR_Manual_Chinese.cdr 02 English User Manual 29 User Manual Contents 2 5 6 7 8 9 10 11 12 14 17 18 19 20 21 22 23 24 25 26 27 Quick start Controls Accessories Minimum System Requirements Battery Charge Power On/Off LCM Indicator

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 T200 3020 Windows 2000 Advanced Server /Windows NT 4.0 Server /Redhat Linux7.3 SCO UnixWare7.1.1 Novell NetWare5.0 1. Windows 2000 Advanced Server / 2. Windows NT 4.0 Server / 3. Redhat Linux7.3 4. SCO

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

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

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

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

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 题 目 : 农 村 电 工 岗 位 培 训 考 核 与 鉴 定 ( 理 论 部 分 ) 的 计 算 机 远 程 考 试 系 统 ( 服 务 器 端 ) 的 开 发 与 实 现 英 文 题 目 :The Realization of Authenticating Examination System With Computer & Web for

More information

j_xilinx-training-courses_2012.pdf

j_xilinx-training-courses_2012.pdf Xilinx Training Catalog ... 2... 3-7 FPGA ISE... 8 FPGA... 9 FPGA... 10 FPGA... 11 Spartan-6... 12 Virtex-6... 13 7 FPGA... 14 PlanAhead... 15 PlanAhead... 16 ChipScope Pro... 17... 18... 19... 20 LogiCORE

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

ansoft_setup21.doc

ansoft_setup21.doc Cadence Cadence Cadence 1000 (1) (2) CIC (3).. CIC Cadence (a) CIC license license server license CIC license CIC license (b) 2000 Cadence license 92 1 1 license server CIC 92 1 1 Cadence license licenser

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

1505.indd

1505.indd 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 2015.05 总 第 148 期 图 片 新 闻 2015 年 9 月 22 日, 由 上 海 孙 中 山 故 居 纪 念 馆 台 湾 辅 仁 大 学 和 台 湾 图 书 馆 联 合 举 办 的 世 纪 姻 缘 纪 念 孙 中 山 先 生 逝 世 九 十 周 年 及 其 革 命 历 程 特 展

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

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

PLC Simulative Control of an Elevator by PLC POWER SUPPLY ii iii ABSTRACT In the modern time, elevator is very popular and based. Most techniques of elevator are owned by foreigners. A simple introduction

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

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

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

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

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

Microsoft PowerPoint ARIS_Platform_en.ppt

Microsoft PowerPoint ARIS_Platform_en.ppt ARIS Platform www.ixon.com.tw ARIS ARIS Architecture of Integrated Information System Prof. Dr. Dr. h.c. mult. August-Wilhelm Scheer ARIS () 2 IDS Scheer AG International Presence >> Partners and subsidiaries

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11 Latches and Flip-Flops 11.1 Introduction 11.2 Set-Reset Latch 11.3 Gated D Latch 11.4 Edge-Triggered D Flip-Flop 11.5 S-R Flip-Flop 11.6 J-K Flip-Flop 11.7 T Flip-Flop 11.8 Flip-Flops with additional Inputs

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

HCD0174_2008

HCD0174_2008 Reliability Laboratory Page: 1 of 5 Date: December 23, 2008 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified

More information

10384 199928010 UDC 2002 4 2002 6 2002 2002 4 DICOM DICOM 1. 2. 3. Canny 4. 5. DICOM DICOM DICOM DICOM I Abstract Eyes are very important to our lives. Biologic parameters of anterior segment are criterions

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 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

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

rz_Newsletter2016_en_160111.indd

rz_Newsletter2016_en_160111.indd 2016 Android AUTOSAR Linux AUTOSARAU Reverse ging Target Communication Framework ARM CoreSight TM Requirements Analysis Nexus Timing Tools Intel Trace Hub GDB Infineon MCDS Unit Testing PIL Simulation

More information

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订 白 皮 书 Robert Müller-Albrecht 开 发 人 员 产 品 部 门 支 持 移 动 互 联 网 设 备 的 Intel C++ Software Development Tool Suite for Linux* OS 文 档 编 号 :319332-001US 简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device)

More information

Microsoft Word - 103-4 記錄附件

Microsoft Word - 103-4 記錄附件 國 立 虎 尾 技 大 103 年 度 第 4 次 教 務 會 議 記 錄 附 件 中 華 民 國 104 年 6 月 16 日 受 文 者 : 國 立 虎 尾 技 大 發 文 日 期 : 中 華 民 國 104 年 5 月 28 日 發 文 字 號 : 臺 教 技 ( 二 ) 字 第 1040058590 號 速 別 : 最 速 件 密 等 及 解 密 條 件 或 保 密 期 限 : 附 件 :

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

SPHE8202R Design Guide Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provi

SPHE8202R Design Guide Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provi SPHE8202R Design Guide V2.0 JUN, 2007 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 SPHE8202R Design Guide Important Notice

More information