Engineer-to-Engineer Note

Size: px
Start display at page:

Download "Engineer-to-Engineer Note"

Transcription

1 Engineer-to-Engineer Note EE-272 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t processor.support@nlog.com nd dsptools.support@nlog.com Or visit our on-line resources nd Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors Contributed by Mnik Arypdi Rev 1 July 11, 2005 Introduction This ppliction note describes how to mnge the booting of multiple executbles from externl memory t run-time, thus providing the flexibility to dynmiclly switch mong them. This project ws implemented on the ADSP- BF561 EZ-KIT Lite evlution system (ADDS-BF561-EZLITE, Rev 1.1) nd pplies to the ADSP-BF561 Blckfin processors with silicon revision 0.2 nd beyond. The softwre code ccompnying this project ws tested using VisulDSP tools. Synopsis This ppliction note ddresses the following topics: The ADSP-BF561 Blckfin processor booting process Multi-ppliction (multi-dxe) mngement for the ADSP-BF561 Blckfin processors Reconfiguring the C/C++ run-time heder Second-stge loder (SSL) memory mngement Booting multiple DXE files from 16-bit flsh memory nd swpping them t run time without hving to reset ADSP-BF561 Booting Mechnism The ADSP-BF561 Blckfin processor consists of multiprocessor configurtion feturing two Blckfin cores. Since the core rchitectures of the ADSP-BF561 processor nd the ADSP- BF533 processor re like, there re no significnt differences in the booting mechnism between the two devices. The booting process of the ADSP-BF533 processor is documented in ADSP-BF533 Blckfin Booting Process (EE-240) [1] ; therefore, only those detils unique to the ADSP-BF561 processor re detiled in this ppliction note. Boot modes supported on vrious silicon revisions nd the pproprite jumper nd DIP switch settings for ech re elucidted in the Appendix. The ADSP-BF561 Blckfin processor hs two cores: core A nd core B. After reset, the on-chip Boot ROM, which is locted t 0xEF , is executed. The first step in creting the boot code involves compiling nd linking the ppliction code into n executble file. The elfloder utility then converts the executble into boot strem file (.LDR), which is then burned into flsh or nother externl memory device (e.g., PROM, EEPROM, etc.). After reset, the Boot ROM reds the boot strem file from n externl memory device, prsing the heders nd moving blocks of dt to specified memory loctions. After the blocks re loded, Copyright 2005, Anlog Devices, Inc. All rights reserved. Anlog Devices ssumes no responsibility for customer product design or the use or ppliction of customers products or for ny infringements of ptents or rights of others which my result from Anlog Devices ssistnce. All trdemrks nd logos re property of their respective holders. Informtion furnished by Anlog Devices pplictions nd development tools engineers is believed to be ccurte nd relible, however no responsibility is ssumed by Anlog Devices regrding technicl ccurcy nd topiclity of the content provided in Anlog Devices Engineer-to-Engineer Notes.

2 the Boot ROM jumps to the strt of core A s L1 instruction SRAM (0xFFA0 0000) nd executes the code. This procedure is summrized in Figure 1. Source Files.ASM,.C,.CPP Assembler nd/or Compiler.DOJ(s) Linker.DXE(s) Loder.LDR Trget System ADSP-BF561 Processor Externl Memory Figure 1. ADSP-BF561 Booting Sequence Multi-Executble Mngement The ADSP-BF561 processor ppliction cretes two executble files (p0.dxe nd p1.dxe), one for core A nd one for core B, respectively. the SSL switch -l user kernel in the commnd line option or by chnging the Lod:Kernel pge settings in the Project Options dilog box. To fcilitte multi-dxe loding, the executble files must be included in the Additionl options box in the Lod:Kernel pge settings. The executbles re loded in the order specified in the commnd line. Figure 3. Additionl Options in the Lod:Kernel Pge Figure 2. Kernel Options for ADSP-BF561 Processor At ny given instnce, the Boot ROM cn lod only single executble before it jumps to the strt of core A s L1 instruction SRAM. In order to lod two or more executbles, second-stge loder (SSL) must be incorported. The SSL is used for pre-boot initiliztion nd multi-dxe mngement. The defult SSL, locted in the \ldr directory of the VisulDSP tools suite, cn be selected. Alterntively, customized kernel cn be utilized by invoking Booting The into core A scrtchpd memory (0xFFB xFFB0 0FFF) nd core B scrtchpd memory (0xFF xFF70 0FFF) is not supported by the processor Boot ROM..LDF file cn be modified to combine both cores into single executble. This is not recommended for projects tht utilize shred memory or use the C/C++ run-time heders. Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 2 of 11

3 The lst 1024 bytes of L2 memory re llocted to the SSL by defult. This prt of memory must be reserved while in the booting mode. Loder Opertions The loder utility converts the executble into boot-lodble formt (.LDR) tht is redble by the processor Boot ROM. It lso configures the output.ldr file ccording to user-specified boot formt (Intel hex-32, binry, ASCII) nd output width (8- or 16-bit). The loder utility is run by chnging the project type from n executble to loder file in the Project Options dilog box. Figure 6. Output File on the Lod:Options Pge ADSP-BF561 processors nd ADSP-BF533 processors shre the sme loder file structure. Refer to EE-240 for detiled description of the loder file structure. The ADSP-BF561 boot strem begins with 4-byte globl heder tht contins informtion bout the externl memory device nd signture tht prevents the Boot ROM from reding blnk device. The ADSP-BF533 processor s boot strem does not contin globl heder. Figure 4. Project options for ADSP-BF561 processors In order to ensure tht the boot strem file (.LDR) incorportes the SSL s well s the individul executbles, the elfloder commnd-line option in the Post-Build pge of the Project Options dilog box must be used. For further instructions regrding how to use the elfloder commnd-line option, refer to the VisulDSP Loder Mnul [2]. Figure 5. ADSP-BF561 Post-build Pge The file nme nd destintion of the loder file must lso be specified in the Lod:Options pge settings. Flsh Progrmmer Utility After the loder file is built, it cn then be progrmmed into flsh memory using the flsh progrmmer utility. Perform the following steps to burn the loder file into flsh: 1) In VisulDSP++ 4.0, choose Tools->Flsh Progrmmer to ctivte the flsh progrmmer utility. 2) Select the flsh progrmmer driver from the defult loction: C:\Progrm Files\Anlog Devices\ VisulDSP 4.0\ Blckfin\Flsh Progrmmer Drivers\ADSP-BF561 EZ-Kit Lite\BF561EzFlsh.DXE 3) After the driver hs been loded (sttus indictor turns green), the loder file present t the specified loction is loded into flsh nd verified. For more detils on flsh-bsed pplictions, plese refer to Running Progrms from Flsh on ADSP-BF533 Blckfin Processors (EE-239) [3]. The reminder of the ppliction note discusses how to switch between two or more executbles t runtime. Tsks include modifying the C/C++ run-time heder nd plcing memory sections Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 3 of 11

4 into specific loctions using the Expert Linker. The softwre code ccompnying the project consists of the SSL nd two progrms tht scroll different sets of LEDs. 1 st Boot Strem 2 nd Boot Strem 3 rd Boot Strem 4-Byte Globl Heder 10-Byte Count Heder 4-Byte Next DXE Pointer Second Stge Loder (SSL) 10-Byte Count Heder 4-Byte Next DXE Pointer 1 st DXE Appliction 10-Byte Count Heder 4-Byte Next DXE Pointer 2 nd DXE Appliction ADSP-BF561 only 10-Byte Heder Block 1 10-Byte Heder Block 2 10-Byte Heder Block 3.. Loder File Figure 7. ADSP-BF561 Multi-DXE Loder File Structure Figure 8. Flsh Progrmmer Utility Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 4 of 11

5 Reconfiguring the C/C++ Run- Time Heder Attched to this EE-Note is multi-dxe boot exmple (see ssocited ZIP file). The ZIP file contins n SSL project nd two LED scroll ppliction projects. Upon RESET, the on-chip Boot ROM boots in the SSL. The SSL then wits until PF5 (SW6 push button) or PF6 (SW7 push button) re sserted. If PF5 is sserted, the first executble tht scrolls LEDs is booted in. If PF6 is sserted, the SSL skips the first executble nd boots in the second executble, which scrolls on LEDs Either of these executbles cn then be booted into the device, without resetting, by pressing the push-button switches. The 561_prom16 directory (in the ZIP file) consists of two sub-directories, blink_lower nd blink_upper, which contin the subprojects. Before the SSL is built, ech of these sub-projects must be built. These sub-directories contin project groups BF561_Blink1.dpg (to scroll LEDs 13-20) nd BF561_Blink2.dpg (to scroll LEDs 5-12). When the project groups re compiled nd built, they yield four executbles (p0.dxe nd p1.dxe for blink_lower nd p0.dxe nd p1.dxe for blink_upper). The C/C++ run-time heder (CRT) hs been included in ech of these projects. The CRT is used in projects tht re coded in the C/C++ progrmming lnguge nd, mong other tsks, initilizes stndrd librries such s stdio (stndrd input/output). Another of the primry functions of the CRT is to cll _min upon completion of execution. In ddition, the CRT lso sets up defult event hndlers, enbles interrupts, nd sets reserved registers to known vlues. For more detils on the CRT, refer to Configuring the C/C++ Run-Time Heder for Blckfin Processors-(EE-238) [4]. The CRT must be included in ech of the subprojects (tht generte the executbles) s prt of core A nd core B, s shown in Figure 9. Figure 9. CRT File Inclusion in the Sub-Project The Reconfigurtion Process By defult, the CRT sets ll the interrupt vector ddresses (except the supervisor mode interrupt, IVG15) locted in the Event Vector Tble (EVT) to generic hndler s ddress. For the purposes of booting executbles dynmiclly, this behvior compromises the vector ddress mpped to the flg interrupt used to switch pplictions. If the CRT overwrites the vlue ssigned to the selected interrupt (IVG11) with the generic hndler s ddress, it results in subsequent button-pushes vectoring to the defult hndler insted of the hndler instlled in the originl ppliction. To work round this, the bsiccrt.s file must be dded to ech of the sub-projects nd modified. Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 5 of 11

6 // Initilize the Event Vector tble. P0.H = IVBh; P0.L = IVBl; // Instll unknown_exception_occurred in EVT so tht // there is defined behvior. P0 += 2*4; // Skip Emultion nd Reset // P1 = 13; R1.L = unknown_exception_occurred; R1.H = unknown_exception_occurred;.ivt2: [P0++] = R1;.ivt3: [P0++] = R1;.ivt4: [P0++] = R1;.ivt5: [P0++] = R1;.ivt6: [P0++] = R1;.ivt7: [P0++] = R1;.ivt8: [P0++] = R1;.ivt9: [P0++] = R1;.ivt10: [P0++] = R1; //.ivt11: [P0++] = R1; // Not needed for mintining IVG 11 P0+=4; // Skipping IVG 11.ivt12: [P0++] = R1;.ivt13: [P0++] = R1;.ivt14: [P0++] = R1; Listing 1. EVT Modifiction in the bsiccrt.s File As noted in Listing 1, commenting out the code tht overwrites IVG11 nd, insted, skipping to IVG12 solves this problem nd mintins the originl vector ddress for IVG11. Additionlly, s shown in Listing 2, the IMASK register must lso be mnully preserved. By defult, the CRT enbles only the Supervisor mode interrupt (IVG15). For this ppliction, the IVG11 interrupt must lso remin enbled before clling _min (ppliction progrm). Since no reset event is tking plce, the System Interrupt Controller register context will be preserved through the executble switch. The core s IMASK register nd the EVTx registers, on the other hnd, re written by the CRT, nd thus, must be preserved. The steps shown in Listing 1 nd Listing 2 gurntee tht the processor s Core Event Controller register context is lso preserved. // At long lst, cll the ppliction progrm. cli r0; //disble interrupts bitset (r0,11); //copying the contents of IVG11 into r0 (user specified register) sti r0; //restoring the previous stte of the interrupt system CALL.X _min; Listing 2. Disbling nd Re-enbling Interrupts in the bsiccrt.s File SSL Memory Mngement The 561_prom directory contins the project group bf561_prom16.dpg, which consists of bf561_prom16.dsp (contining the min SSL code) nd cmds.c. Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 6 of 11

7 cmds.c is used to pss n rgument to the SSL. Since C file is included in the project, the C Appliction Binry Interfce (ABI) must be dhered to nd globl dt must be declred nd initilized ccording to C/C++ stndrds. cmds.c enbles prticulr.dxe file to be loded without specifying its ddress. The SSL will index into the boot strem to find the specified.dxe file. The cmds.c module lso gives the user the flexibility to lod, execute, nd switch.dxe files in prticulr order. The next step involves building the SSL nd creting the loder file with the multiple executbles (built in the previous step). This procedure is described on pge 2. Before building the SSL, the vrious sections need to plced into pproprite memory loctions. None of the executbles should hve ccess to these loctions nd, t the sme time, cores A nd B should be ble to ccess this prt of memory. This cn be ccomplished by reconfiguring the Linker Description File (.LDF) of ech of the executbles by using the Expert Linker to ensure tht there is no memory conflict with the SSL. As noted in Listing 3, L2 shred memory fulfills both these criteri nd, therefore, the interrupt sections in the cmds.c file were plced into this memory spce. #include <cdefbf561.h> #include <sysreg.h> #include <ccblkfn.h> #include <sys/exception.h> void loder_commnds(void); extern int SECOND_STAGE_LOADER(int, int); void Init_Interrupts_A(void); EX_INTERRUPT_HANDLER(A_ISR); /* plcing the Interrupts in L2 Shred memory */ /* plese note tht the following progrms re running on single core-core A */ section ("l2_shred") EX_INTERRUPT_HANDLER(A_ISR) { if(*pfio0_flag_c & 0x0020) //SW 5 is pressed { SECOND_STAGE_LOADER(0, 1);//(0-> indictes lod executble, 1-> DXE number) SECOND_STAGE_LOADER(1, 0);//(1-> execute the DXE) } else if(*pfio0_flag_c & 0x0040) //SW 6 is pressed { SECOND_STAGE_LOADER(0, 2);//lod the 2nd DXE in the boot strem SECOND_STAGE_LOADER(1, 0);//execute the 2nd DXE } } // end section ("l2_shred") void loder_commnds() { *pfio0_dir = 0x0000; *pfio0_inen = 0x01E0; *pfio0_maska_d = 0x01E0; Init_Interrupts_A(); Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 7 of 11

8 } while(1); section ("l2_shred") void Init_Interrupts_A(void) { *psica_imask1 = SIC_MASK(15); register_hndler(ik_ivg11, A_ISR); } Listing 3. cmds.c Source File Reconfiguring the SSL.LDF File After the sections of the cmds.c module hve been plced into L2 SRAM, the sme must be done for the bf561_prom16.dsp file. This file contins the min SSL code, consisting of two min sections (see Listing 4). The SSL must lwys strt in L1 memory of core A (0xFFA0 0000), hence jump to the min progrm is plced t 0xFFA to execute the code from nother destintion in memory. Therefore, the JMP_LDR section needs to be plced t the top of core A s L1 memory. The SEG_LDR section is lso plced t loction in L2 SRAM for resons outlined bove. The Expert Linker cn be used to view nd modify the.ldf source file to plce the pproprite sections in memory. #define HederBuffer GPStorge -12.extern _loder_commnds; // The 2nd stge boot loder must strt in Core A L1 // A jump to the progrm is plced t FFA00000, so we my execute in L2..section JMP_LDR; P0.L = START_OF_LOADER; P0.H = START_OF_LOADER; JUMP (P0); /////////////////////////////////////////////////////////////////////////////////.section SEG_LDR; MEM_DMA: // R0 = source ddress // R1 = destintion ddress // R2 = count // R3 = source config // R4 = dest config // modify registers hve lredy been set up Listing 4. bf561_prom16.dsp Source File The Expert Linker is powerful utility tht llows you to plce sections into memory grphiclly by drgging nd dropping the specified section. The SECTIONS {} commnd cn lso be used to plce the specified sections by mnully modifying the source file. For more Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 8 of 11

9 detils on the syntx, refer to the description of LDF commnds in the VisulDSP++4.0 Linker nd Utilities Mnul [5]. After incorporting the chnges detiled bove, compile nd execute the project group fter loding the desired executbles. Appendix: Boot Modes Supported on Silicon Revisions Silicon Revision 0.2 Silicon revision 0.2 supports true 16-bit flsh/prom mode. BMODE[2:0] Description 000 Reserved. Executes from externl 16-bit memory connected to ASYNC Bnk0 ( Bypss mode ) 001 Boot from 8/16-bit flsh/prom 010 Boot from 8-bit ddressble SPI0 seril EEPROM in SPI Mster mode 011 Boot from 16-bit ddressble SPI0 seril EEPROM in SPI Mster mode Tble 1. Silicon Revision 0.2 Boot Modes Silicon Revision 0.3 Silicon revision 0.3 introduced SPI slve booting. BMODE[2:0] Description 000 Bypss 001 Boot from 8/16-bit flsh/prom 010 Boot from n SPI host in SPI Slve mode Boot from 16-bit ddressble SPI0 seril EEPROM in SPI Mster mode Tble 2. Silicon Revision 0.3 Boot Modes 1 In silicon revision 0.3, the 8-bit SPI ws replced with slve SPI mode, but it ws non-functionl due to n nomly; therefore, only silicon revision 0.3 supports 16-bit SPI nd 8/16 flsh. Silicon Revision 0.4 BMODE[2:0] Description 000 Bypss 001 Boot from 8/16-bit flsh/prom 010 Boot from n SPI host in SPI Slve mode Boot from 16-bit ddressble SPI0 seril EEPROM in SPI Mster mode Tble 3. Silicon Revision 0.4 Boot Modes 2 Silicon revision 0.4 includes support for slve SPI booting, nd the bug tht ws found in rev 0.3 ws fixed; therefore, silicon revision 0.4 supports slve SPI booting, 16-bit SPI nd 8/16 flsh prt from bypss mode. Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 9 of 11

10 Appendix: Jumper nd DIP Switch Settings This section describes jumper nd DIP switch settings on the ADSP-BF561 EZ-KIT Lite evlution system. The softwre code ccompnying this ppliction note will run successfully only if these settings re implemented. Figure 10. DIP Switch Loctions on the ADSP-BF561 EZ-KIT Lite Evlution System As observed in Figure 10, the switch settings control different modes of opertion for push buttons, video configurtions, nd PPI clock selections. There is no need to chnge ny of the defult settings for these switches; however, you must modify SW3, which controls the boot mode settings to ccommodte this project. Boot Mode Reserved Flsh memory 8-bit SPI PROM 16-bit SPI PROM Position OFF ON ON ON or OFF Tble 4. Boot Mode Select Switches for Current Project. Positions 1 nd 2 set the boot mode, wheres position 3 sets the processor s PLL in bypss mode, which is essentil for this project. Position 4 cn be ON or OFF, s it does not ffect the functionlity of the softwre. Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 10 of 11

11 References [1] ADSP-BF533 Blckfin Booting Process (EE-240) Rev 3.0, Jnury Anlog Devices, Inc. [2] VisulDSP Loder Mnul. Rev 1.0, Jnury Anlog Devices, Inc. [3] Running Progrms from Flsh on ADSP-BF533 Blckfin Processors (EE-239). Rev 1, My Anlog Devices Inc. [4] Configuring the C/C++ Run-time heder for Blckfin Processors (EE-238). Rev 1, My Anlog Devices Inc. [5] VisulDSP Linker nd Utilities Mnul. Rev 1.0, Jnury Anlog Devices, Inc. Document History Revision Rev 1 July 11, 2005 by M.Arypdi nd J. Beuchemin Description Initil Relese Mnging Multiple DXEs on ADSP-BF561 Blckfin Processors (EE-272) Pge 11 of 11

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-188 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Enginner To Engineer Note

Enginner To Engineer Note Technicl Notes on using Anlog Devices DSP components nd development tools from the DSP Division Phone: (800) ANALOG-D, FAX: (781) 461-3010, EMAIL: dsp_pplictions@nlog.com, FTP: ftp.nlog.com Using n ADSP-2181

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-069 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-245 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our

More information

a Technical Notes on using Analog Devices' DSP components and development tools

a Technical Notes on using Analog Devices' DSP components and development tools Engineer To Engineer Note EE-146 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

16 Bit Software Tools ADDU-21xx-PC-1 Code Generation and Simulation

16 Bit Software Tools ADDU-21xx-PC-1 Code Generation and Simulation 16 Bit Softwre Tools ADDU-21xx-PC-1 Code Genertion nd Simultion ADDS-21xx-PC-1 Version 6.1 Contents The entire softwre cretion tool chin in one pckge System Builder Assembler C Compiler Linker Softwre

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-186 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-167 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-204 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

pdfapilot Server 2 Manual

pdfapilot Server 2 Manual pdfpilot Server 2 Mnul 2011 by clls softwre gmbh Schönhuser Allee 6/7 D 10119 Berlin Germny info@cllssoftwre.com www.cllssoftwre.com Mnul clls pdfpilot Server 2 Pge 2 clls pdfpilot Server 2 Mnul Lst modified:

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-208 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-232 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-148 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

vcloud Director Service Provider Admin Portal Guide vcloud Director 9.1

vcloud Director Service Provider Admin Portal Guide vcloud Director 9.1 vcloud Director Service Provider Admin Portl Guide vcloud Director 9. vcloud Director Service Provider Admin Portl Guide You cn find the most up-to-dte technicl documenttion on the VMwre website t: https://docs.vmwre.com/

More information

EasyMP Multi PC Projection Operation Guide

EasyMP Multi PC Projection Operation Guide EsyMP Multi PC Projection Opertion Guide Contents 2 Introduction to EsyMP Multi PC Projection 5 EsyMP Multi PC Projection Fetures... 6 Connection to Vrious Devices... 6 Four-Pnel Disply... 6 Chnge Presenters

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-295 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Epson iprojection Operation Guide (Windows/Mac)

Epson iprojection Operation Guide (Windows/Mac) Epson iprojection Opertion Guide (Windows/Mc) Contents 2 Introduction to Epson iprojection 5 Epson iprojection Fetures... 6 Connection to Vrious Devices... 6 Four-Pnel Disply... 6 Chnge Presenters nd Projection

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-169 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

EasyMP Network Projection Operation Guide

EasyMP Network Projection Operation Guide EsyMP Network Projection Opertion Guide Contents 2 Introduction to EsyMP Network Projection EsyMP Network Projection Fetures... 5 Disply Options... 6 Multi-Screen Disply Function... 6 Movie Sending Mode...

More information

Address/Data Control. Port latch. Multiplexer

Address/Data Control. Port latch. Multiplexer 4.1 I/O PORT OPERATION As discussed in chpter 1, ll four ports of the 8051 re bi-directionl. Ech port consists of ltch (Specil Function Registers P0, P1, P2, nd P3), n output driver, nd n input buffer.

More information

McAfee Network Security Platform

McAfee Network Security Platform Mnger Applince Quick Strt Guide Revision B McAfee Network Security Pltform This guide is high-level description of how to instll nd configure the Mnger Applince. For more detiled instlltion informtion,

More information

File Manager Quick Reference Guide. June Prepared for the Mayo Clinic Enterprise Kahua Deployment

File Manager Quick Reference Guide. June Prepared for the Mayo Clinic Enterprise Kahua Deployment File Mnger Quick Reference Guide June 2018 Prepred for the Myo Clinic Enterprise Khu Deployment NVIGTION IN FILE MNGER To nvigte in File Mnger, users will mke use of the left pne to nvigte nd further pnes

More information

IZT DAB ContentServer, IZT S1000 Testing DAB Receivers Using ETI

IZT DAB ContentServer, IZT S1000 Testing DAB Receivers Using ETI IZT DAB ContentServer, IZT S1000 Testing DAB Receivers Using ETI Appliction Note Rel-time nd offline modultion from ETI files Generting nd nlyzing ETI files Rel-time interfce using EDI/ETI IZT DAB CONTENTSERVER

More information

Data sharing in OpenMP

Data sharing in OpenMP Dt shring in OpenMP Polo Burgio polo.burgio@unimore.it Outline Expressing prllelism Understnding prllel threds Memory Dt mngement Dt cluses Synchroniztion Brriers, locks, criticl sections Work prtitioning

More information

OPERATION MANUAL. DIGIFORCE 9307 PROFINET Integration into TIA Portal

OPERATION MANUAL. DIGIFORCE 9307 PROFINET Integration into TIA Portal OPERATION MANUAL DIGIFORCE 9307 PROFINET Integrtion into TIA Portl Mnufcturer: 2018 burster präzisionsmesstechnik gmbh & co kg burster präzisionsmesstechnik gmbh & co kg Alle Rechte vorbehlten Tlstrße

More information

Information regarding

Information regarding Informtion regrding LANCOM Advnced VPN Client 3.13 Copyright (c) 2002-2017 LANCOM Systems GmbH, Wuerselen (Germny) LANCOM Systems GmbH does not tke ny gurntee nd libility for softwre not developed, mnufctured

More information

Zenoss Service Impact Installation and Upgrade Guide for Resource Manager 5.x and 6.x

Zenoss Service Impact Installation and Upgrade Guide for Resource Manager 5.x and 6.x Zenoss Service Impct Instlltion nd Upgrde Guide for Resource Mnger 5.x nd 6.x Relese 5.3.1 Zenoss, Inc. www.zenoss.com Zenoss Service Impct Instlltion nd Upgrde Guide for Resource Mnger 5.x nd 6.x Copyright

More information

Coprocessor memory definition. Loic Pallardy / Arnaud Pouliquen

Coprocessor memory definition. Loic Pallardy / Arnaud Pouliquen Coprocessor memory definition Loic Pllrdy / Arnud Pouliquen Objective 2 The gol of following slides is to sum up on-going discussion in OpenAP weekly bout Remoteproc/Rpmsg memory lloction. Following proposl

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-270 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t processor.support@nlog.com nd dsptools.support@nlog.com Or visit

More information

pdftoolbox Server 4 Manual

pdftoolbox Server 4 Manual pdftoolbox Server 4 Mnul Mnul Pge 2 Mnul Lst modified: 27 Februry 2009 2009 by clls softwre gmbh, Berlin, Germny All rights reserved All trdemrks re the property of their respective owners. Mnul Pge Content

More information

NOTES. Figure 1 illustrates typical hardware component connections required when using the JCM ICB Asset Ticket Generator software application.

NOTES. Figure 1 illustrates typical hardware component connections required when using the JCM ICB Asset Ticket Generator software application. ICB Asset Ticket Genertor Opertor s Guide Septemer, 2016 Septemer, 2016 NOTES Opertor s Guide ICB Asset Ticket Genertor Softwre Instlltion nd Opertion This document contins informtion for downloding, instlling,

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-312 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Polycom RealPresence Media Editor Quick Start

Polycom RealPresence Media Editor Quick Start Polycom RelPresence Medi Editor Quick Strt Version 5.5 Novemer 2011 3725-75201-001/A Trdemrk Informtion Polycom, the Polycom Tringles logo, nd the nmes nd mrks ssocited with Polycom s products re trdemrks

More information

Mid-term exam. Scores. Fall term 2012 KAIST EE209 Programming Structures for EE. Thursday Oct 25, Student's name: Student ID:

Mid-term exam. Scores. Fall term 2012 KAIST EE209 Programming Structures for EE. Thursday Oct 25, Student's name: Student ID: Fll term 2012 KAIST EE209 Progrmming Structures for EE Mid-term exm Thursdy Oct 25, 2012 Student's nme: Student ID: The exm is closed book nd notes. Red the questions crefully nd focus your nswers on wht

More information

JCM TRAINING OVERVIEW DBV Series DBV-500 Banknote Validator

JCM TRAINING OVERVIEW DBV Series DBV-500 Banknote Validator November, 2016 JCM TRAINING OVERVIEW DBV Series DBV-500 Bnknote Vlidtor Phone (800) 683-7248 (702) 651-0000 Fx (702) 651-0214 E-mil support@jcmglobl.com www.jcmglobl.com 1 DBV-500 Bnknote Vlidtor Tble

More information

Epson Projector Content Manager Operation Guide

Epson Projector Content Manager Operation Guide Epson Projector Content Mnger Opertion Guide Contents 2 Introduction to the Epson Projector Content Mnger Softwre 3 Epson Projector Content Mnger Fetures... 4 Setting Up the Softwre for the First Time

More information

McAfee Network Security Platform

McAfee Network Security Platform Revision D McAfee Network Security Pltform (NS5x00 Quick Strt Guide) This quick strt guide explins how to quickly set up nd ctivte your McAfee Network Security Pltform NS5100 nd NS5200 Sensors in inline

More information

Welch Allyn CardioPerfect Workstation Installation Guide

Welch Allyn CardioPerfect Workstation Installation Guide Welch Allyn CrdioPerfect Worksttion Instlltion Guide INSTALLING CARDIOPERFECT WORKSTATION SOFTWARE & ACCESSORIES ON A SINGLE PC For softwre version 1.6.6 or lter For network instlltion, plese refer to

More information

McAfee Network Security Platform

McAfee Network Security Platform NTBA Applince T-200 nd T-500 Quick Strt Guide Revision B McAfee Network Security Pltform 1 Instll the mounting rils Position the mounting rils correctly nd instll them t sme levels. At the front of the

More information

MIPS I/O and Interrupt

MIPS I/O and Interrupt MIPS I/O nd Interrupt Review Floting point instructions re crried out on seprte chip clled coprocessor 1 You hve to move dt to/from coprocessor 1 to do most common opertions such s printing, clling functions,

More information

TSGS#15(02)0025. Technical Specification Group Services and System Aspects Meeting #15, Cheju Island, Korea, March 2002

TSGS#15(02)0025. Technical Specification Group Services and System Aspects Meeting #15, Cheju Island, Korea, March 2002 Technicl Specifiction Group Services nd System Aspects Meeting #15, Cheju Islnd, Kore, 11-14 Mrch 2002 TSGS#15(02)0025 Source: SA5 (Telecom Mngement) Title: 2 Rel-5 CR 32.205 & 32.215 (CS & PS chrging)

More information

Sage CRM 2018 R1 Software Requirements and Mobile Features. Updated: May 2018

Sage CRM 2018 R1 Software Requirements and Mobile Features. Updated: May 2018 Sge CRM 2018 R1 Softwre Requirements nd Mobile Fetures Updted: My 2018 2018, The Sge Group plc or its licensors. Sge, Sge logos, nd Sge product nd service nmes mentioned herein re the trdemrks of The Sge

More information

Tool Vendor Perspectives SysML Thus Far

Tool Vendor Perspectives SysML Thus Far Frontiers 2008 Pnel Georgi Tec, 05-13-08 Tool Vendor Perspectives SysML Thus Fr Hns-Peter Hoffmnn, Ph.D Chief Systems Methodologist Telelogic, Systems & Softwre Modeling Business Unit Peter.Hoffmnn@telelogic.com

More information

Migrating vrealize Automation to 7.3 or March 2018 vrealize Automation 7.3

Migrating vrealize Automation to 7.3 or March 2018 vrealize Automation 7.3 Migrting vrelize Automtion to 7.3 or 7.3.1 15 Mrch 2018 vrelize Automtion 7.3 You cn find the most up-to-dte technicl documenttion on the VMwre website t: https://docs.vmwre.com/ If you hve comments bout

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-164 Technicl Notes on using Anlog Devices' DSP components nd development tools Contct our technicl support by phone: (800) ANALOG-D or e-mil: dsp.support@nlog.com Or visit

More information

vcloud Director Tenant Portal Guide vcloud Director 9.1

vcloud Director Tenant Portal Guide vcloud Director 9.1 vcloud Director Tennt Portl Guide vcloud Director 9.1 You cn find the most up-to-dte technicl documenttion on the VMwre website t: https://docs.vmwre.com/ If you hve comments bout this documenttion, submit

More information

Geometric transformations

Geometric transformations Geometric trnsformtions Computer Grphics Some slides re bsed on Shy Shlom slides from TAU mn n n m m T A,,,,,, 2 1 2 22 12 1 21 11 Rows become columns nd columns become rows nm n n m m A,,,,,, 1 1 2 22

More information

Release Notes for. LANCOM Advanced VPN Client 4.10 Rel

Release Notes for. LANCOM Advanced VPN Client 4.10 Rel Relese Notes for LANCOM Advnced VPN Client 4.10 Rel Copyright (c) 2002-2018 LANCOM Systems GmbH, Wuerselen (Germny) LANCOM Systems GmbH does not tke ny gurntee nd libility for softwre not developed, mnufctured

More information

vcloud Director Service Provider Admin Portal Guide 04 OCT 2018 vcloud Director 9.5

vcloud Director Service Provider Admin Portal Guide 04 OCT 2018 vcloud Director 9.5 vcloud Director Service Provider Admin Portl Guide 04 OCT 208 vcloud Director 9.5 You cn find the most up-to-dte technicl documenttion on the VMwre website t: https://docs.vmwre.com/ If you hve comments

More information

Sage CRM 2017 R3 Software Requirements and Mobile Features. Updated: August 2017

Sage CRM 2017 R3 Software Requirements and Mobile Features. Updated: August 2017 Sge CRM 2017 R3 Softwre Requirements nd Mobile Fetures Updted: August 2017 2017, The Sge Group plc or its licensors. Sge, Sge logos, nd Sge product nd service nmes mentioned herein re the trdemrks of The

More information

E201 USB Encoder Interface

E201 USB Encoder Interface Dt sheet Issue 4, 24 th ugust 2015 E201 USB Encoder Interfce E201-9Q incrementl E201-9S bsolute bsolute SSI BiSS-C mode (unidirectionl) B Z Clock Dt M SLO The E201 is single chnnel USB encoder interfce

More information

Voluntary Product Accessibility Template. Summary Table Voluntary Product Accessibility Template

Voluntary Product Accessibility Template. Summary Table Voluntary Product Accessibility Template U.S. Generl Services Administrtion Dte: 11/2/2015 Nme of Product: MindView 6 Voluntry Product Accessibility Templte Version 1.2 Summry Tble Voluntry Product Accessibility Templte Criteri Section 1194.21

More information

How to Design REST API? Written Date : March 23, 2015

How to Design REST API? Written Date : March 23, 2015 Visul Prdigm How Design REST API? Turil How Design REST API? Written Dte : Mrch 23, 2015 REpresenttionl Stte Trnsfer, n rchitecturl style tht cn be used in building networked pplictions, is becoming incresingly

More information

Sage CRM 2017 R2 Software Requirements and Mobile Features. Revision: IMP-MAT-ENG-2017R2-2.0 Updated: August 2017

Sage CRM 2017 R2 Software Requirements and Mobile Features. Revision: IMP-MAT-ENG-2017R2-2.0 Updated: August 2017 Sge CRM 2017 R2 Softwre Requirements nd Mobile Fetures Revision: IMP-MAT-ENG-2017R2-2.0 Updted: August 2017 2017, The Sge Group plc or its licensors. Sge, Sge logos, nd Sge product nd service nmes mentioned

More information

UT1553B BCRT True Dual-port Memory Interface

UT1553B BCRT True Dual-port Memory Interface UTMC APPICATION NOTE UT553B BCRT True Dul-port Memory Interfce INTRODUCTION The UTMC UT553B BCRT is monolithic CMOS integrted circuit tht provides comprehensive MI-STD- 553B Bus Controller nd Remote Terminl

More information

LCI/USB LonWorks Commissioning Interface

LCI/USB LonWorks Commissioning Interface Works Commissioning Interfce Importnt: Retin these instructions CONTENTS 1 Unpcking... 1 2 Storing... 1 3 Instlltion... 1 4 Uninstlling the USB Drivers... 8 5 Disposl... 8 1 UNPACKING Instlltion Instructions

More information

Lab 1 - Counter. Create a project. Add files to the project. Compile design files. Run simulation. Debug results

Lab 1 - Counter. Create a project. Add files to the project. Compile design files. Run simulation. Debug results 1 L 1 - Counter A project is collection mechnism for n HDL design under specifiction or test. Projects in ModelSim ese interction nd re useful for orgnizing files nd specifying simultion settings. The

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-179 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our eb resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Simrad ES80. Software Release Note Introduction

Simrad ES80. Software Release Note Introduction Simrd ES80 Softwre Relese 1.3.0 Introduction This document descries the chnges introduced with the new softwre version. Product: ES80 Softwre version: 1.3.0 This softwre controls ll functionlity in the

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-328 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

c360 Add-On Solutions

c360 Add-On Solutions c360 Add-On Solutions Functionlity Dynmics CRM 2011 c360 Record Editor Reltionship Explorer Multi-Field Serch Alerts Console c360 Core Productivity Pck "Does your tem resist using CRM becuse updting dt

More information

Installation Guide AT-VTP-800

Installation Guide AT-VTP-800 Velocity 8 Touch Pnel The Atlon -BL nd -WH re 8 touch pnels in blck nd white, respectively, for the Atlon Velocity Control System. They feture contemporry, refined styling for modern presenttion environments

More information

LINX MATRIX SWITCHERS FIRMWARE UPDATE INSTRUCTIONS FIRMWARE VERSION

LINX MATRIX SWITCHERS FIRMWARE UPDATE INSTRUCTIONS FIRMWARE VERSION Overview LINX MATRIX SWITCHERS FIRMWARE UPDATE INSTRUCTIONS FIRMWARE VERSION 4.3.1.0 Due to the complex nture of this updte, plese fmilirize yourself with these instructions nd then contct RGB Spectrum

More information

EasyMP Network Projection Operation Guide

EasyMP Network Projection Operation Guide EsyMP Network Projection Opertion Guide Contents 2 About EsyMP Network Projection Functions of EsyMP Network Projection... 5 Vrious Screen Trnsfer Functions... 5 Instlling the Softwre... 6 Softwre Requirements...6

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-302 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

In the last lecture, we discussed how valid tokens may be specified by regular expressions.

In the last lecture, we discussed how valid tokens may be specified by regular expressions. LECTURE 5 Scnning SYNTAX ANALYSIS We know from our previous lectures tht the process of verifying the syntx of the progrm is performed in two stges: Scnning: Identifying nd verifying tokens in progrm.

More information

05-247r2 SAT: Add 16-byte CDBs and PIO modes 1 September 2005

05-247r2 SAT: Add 16-byte CDBs and PIO modes 1 September 2005 To: T10 Technicl Committee From: Robert Sheffield, Intel (robert.l.sheffield@intel.com) Dte: 1 September 2005 Subject: 05-247r2 SAT: Add 16-byte CDBs nd PIO modes Revision history Revision 0 (16 June 2005)

More information

COMPUTER EDUCATION TECHNIQUES, INC. (MS_W2K3_SERVER ) SA:

COMPUTER EDUCATION TECHNIQUES, INC. (MS_W2K3_SERVER ) SA: In order to lern which questions hve een nswered correctly: 1. Print these pges. 2. Answer the questions. 3. Send this ssessment with the nswers vi:. FAX to (212) 967-3498. Or. Mil the nswers to the following

More information

Midterm 2 Sample solution

Midterm 2 Sample solution Nme: Instructions Midterm 2 Smple solution CMSC 430 Introduction to Compilers Fll 2012 November 28, 2012 This exm contins 9 pges, including this one. Mke sure you hve ll the pges. Write your nme on the

More information

JCM TRAINING OVERVIEW ivizion Banknote Acceptor

JCM TRAINING OVERVIEW ivizion Banknote Acceptor ivizion Bnknote Acceptor JCM Trining Overview Februry, 2018 Februry, 2018 ivizion-100 Prts List Prt Number - Description 701-000269R ivizion/uba Power Supply 701-100112R ivizion/tbv UAC Kit (lternte power

More information

Functor (1A) Young Won Lim 10/5/17

Functor (1A) Young Won Lim 10/5/17 Copyright (c) 2016-2017 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version 1.2 or ny lter version published

More information

Zenoss Core Installation Guide

Zenoss Core Installation Guide Zenoss Core Instlltion Guide Relese 6.1.0 Zenoss, Inc. www.zenoss.com Zenoss Core Instlltion Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, nd the Zenoss logo re trdemrks or registered

More information

vcloud Director Tenant Portal Guide vcloud Director 9.0

vcloud Director Tenant Portal Guide vcloud Director 9.0 vcloud Director Tennt Portl Guide vcloud Director 9.0 vcloud Director Tennt Portl Guide You cn find the most up-to-dte technicl documenttion on the VMwre We site t: https://docs.vmwre.com/ The VMwre We

More information

Zenoss Core Installation Guide

Zenoss Core Installation Guide Zenoss Core Instlltion Guide Relese 5.2.1 Zenoss, Inc. www.zenoss.com Zenoss Core Instlltion Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss nd the Zenoss logo re trdemrks or registered trdemrks

More information

McAfee Network Security Platform

McAfee Network Security Platform NS7x00 Quick Strt Guide Revision D McAfee Network Security Pltform This quick strt guide explins how to quickly set up nd ctivte your McAfee Network Security Pltform NS7100, NS7200, nd NS7300 Sensors in

More information

TECHNICAL NOTE MANAGING JUNIPER SRX PCAP DATA. Displaying the PCAP Data Column

TECHNICAL NOTE MANAGING JUNIPER SRX PCAP DATA. Displaying the PCAP Data Column TECHNICAL NOTE MANAGING JUNIPER SRX PCAP DATA APRIL 2011 If your STRM Console is configured to integrte with the Juniper JunOS Pltform DSM, STRM cn receive, process, nd store Pcket Cpture (PCAP) dt from

More information

View, evaluate, and publish assignments using the Assignment dropbox.

View, evaluate, and publish assignments using the Assignment dropbox. Blckord Lerning System CE 6 Mnging Assignments Competencies After reding this document, you will e le to: Crete ssignments using the Assignment tool. View, evlute, nd pulish ssignments using the Assignment

More information

Zenoss Resource Manager Installation Guide

Zenoss Resource Manager Installation Guide Zenoss Resource Mnger Instlltion Guide Relese 6.1.1 Zenoss, Inc. www.zenoss.com Zenoss Resource Mnger Instlltion Guide Copyright 2018 Zenoss, Inc. All rights reserved. Zenoss, Own IT, nd the Zenoss logo

More information

Functor (1A) Young Won Lim 8/2/17

Functor (1A) Young Won Lim 8/2/17 Copyright (c) 2016-2017 Young W. Lim. Permission is grnted to copy, distribute nd/or modify this document under the terms of the GNU Free Documenttion License, Version 1.2 or ny lter version published

More information

McAfee Network Security Platform

McAfee Network Security Platform 10/100/1000 Copper Active Fil-Open Bypss Kit Guide Revision E McAfee Network Security Pltform This document descries the contents nd how to instll the McAfee 10/100/1000 Copper Active Fil-Open Bypss Kit

More information

Registering as an HPE Reseller

Registering as an HPE Reseller Registering s n HPE Reseller Quick Reference Guide for new Prtners Mrch 2019 Registering s new Reseller prtner There re four min steps to register on the Prtner Redy Portl s new Reseller prtner: Appliction

More information

Dixie Narco Retrofit Kit

Dixie Narco Retrofit Kit PERSONAL NOTES AND COMMENT AREA Write ny pertinent notes or comments regrding your prticulr instlltion here. Optipy BV/RC/CC into Pepsi Vending Mchine This document contins informtion for instlling nd

More information

Agenda & Reading. Class Exercise. COMPSCI 105 SS 2012 Principles of Computer Science. Arrays

Agenda & Reading. Class Exercise. COMPSCI 105 SS 2012 Principles of Computer Science. Arrays COMPSCI 5 SS Principles of Computer Science Arrys & Multidimensionl Arrys Agend & Reding Agend Arrys Creting & Using Primitive & Reference Types Assignments & Equlity Pss y Vlue & Pss y Reference Copying

More information

Zenoss Resource Manager Installation Guide

Zenoss Resource Manager Installation Guide Zenoss Resource Mnger Instlltion Guide Relese 5.2.5 Zenoss, Inc. www.zenoss.com Zenoss Resource Mnger Instlltion Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss nd the Zenoss logo re trdemrks

More information

Zenoss Resource Manager Installation Guide

Zenoss Resource Manager Installation Guide Zenoss Resource Mnger Instlltion Guide Relese 5.3.0 Zenoss, Inc. www.zenoss.com Zenoss Resource Mnger Instlltion Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, nd the Zenoss logo

More information

Setup Guide. Before Setting Up the Printer

Setup Guide. Before Setting Up the Printer Introduction Cution Series Series Setup Guide Series Introductory Informtion Instructions in this Setup Guide show the ipf840 printer. Note tht your printer my look different from these illustrtions in

More information

CSE 401 Midterm Exam 11/5/10 Sample Solution

CSE 401 Midterm Exam 11/5/10 Sample Solution Question 1. egulr expressions (20 points) In the Ad Progrmming lnguge n integer constnt contins one or more digits, but it my lso contin embedded underscores. Any underscores must be preceded nd followed

More information

Agilent Mass Hunter Software

Agilent Mass Hunter Software Agilent Mss Hunter Softwre Quick Strt Guide Use this guide to get strted with the Mss Hunter softwre. Wht is Mss Hunter Softwre? Mss Hunter is n integrl prt of Agilent TOF softwre (version A.02.00). Mss

More information

Royal RVHV Retrofit Kit

Royal RVHV Retrofit Kit Optipy BV/RC/CC into Royl Vending Mchine This document contins informtion for instlling nd configuring the JCM Optipy DBV-01 Bill Vlidtor, RC-10 Bill Recycler nd A-66 Coin Chnger into Royl RVHV 768-12

More information

SoC Architecture Design Approaches

SoC Architecture Design Approaches Wireless Informtion Trnsmission System Lb. SoC Architecture Design Approches Hung-Chih Ching Institute of Communictions Engineering Ntionl Sun Yt-sen University IP-Bsed System IC Design Block-Bsed Architecture

More information

x )Scales are the reciprocal of each other. e

x )Scales are the reciprocal of each other. e 9. Reciprocls A Complete Slide Rule Mnul - eville W Young Chpter 9 Further Applictions of the LL scles The LL (e x ) scles nd the corresponding LL 0 (e -x or Exmple : 0.244 4.. Set the hir line over 4.

More information

Zenoss Resource Manager Installation Guide

Zenoss Resource Manager Installation Guide Zenoss Resource Mnger Instlltion Guide Relese 5.3.2 Zenoss, Inc. www.zenoss.com Zenoss Resource Mnger Instlltion Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, nd the Zenoss logo

More information

ECE 468/573 Midterm 1 September 28, 2012

ECE 468/573 Midterm 1 September 28, 2012 ECE 468/573 Midterm 1 September 28, 2012 Nme:! Purdue emil:! Plese sign the following: I ffirm tht the nswers given on this test re mine nd mine lone. I did not receive help from ny person or mteril (other

More information

EasyMP Multi PC Projection Operation Guide

EasyMP Multi PC Projection Operation Guide EsyMP Multi PC Projection Opertion Guide Contents 2 About EsyMP Multi PC Projection Meeting Styles Proposed by EsyMP Multi PC Projection... 5 Holding Meetings Using Multiple Imges... 5 Holding Remote Meetings

More information

CKX-CCSW Confluency checker INSTRUCTIONS. Software for research/education This software is designed to use in research and or education fields.

CKX-CCSW Confluency checker INSTRUCTIONS. Software for research/education This software is designed to use in research and or education fields. INSTRUCTIONS Confluency checker NOTE: This instruction mnul is for the Olympus confluency checker. To ensure the sfety, obtin optimum performnce nd to fmilirize yourself fully with the use of this softwre,

More information

Beginner s Guide to the Environment

Beginner s Guide to the Environment Beginner s Guide to the Environment by Len Ssso for Version 3.0 e October 1997 E Soft- und Hrdwre GmbH Tble of Contents Chpter 1 Overview of the Environment Chpter 2 Some Things Chnge Some Things Sty The

More information

Software Release Note

Software Release Note Softwre Relese Note Softwre Nme: DSU Version No. Build Code Supported OS Apply to (full model nme) New Feture(s) Chnge(s) Enhncement(s) Bug(s) Fixed Additionl Note(s) 2.2 Build 17051810 2003 NPort M12

More information

E201 USB Encoder Interface

E201 USB Encoder Interface Dt sheet Issue 3, 14 th July 2014 E201 USB Encoder Interfce E201-9Q - incrementl E201-9S - bsolute bsolute SSI BiSS-C mode (unidirectionl) B Z Clock Dt M SLO The E201 is single chnnel USB encoder interfce

More information

Troubleshooting Guide

Troubleshooting Guide IBM System Storge SAN Volume Controller Troubleshooting Guide GC27-2284-06 Note Before using this informtion nd the product it supports, red the informtion in Notices on pge 351. This edition pplies to

More information

Registering as a HPE Reseller. Quick Reference Guide for new Partners in Asia Pacific

Registering as a HPE Reseller. Quick Reference Guide for new Partners in Asia Pacific Registering s HPE Reseller Quick Reference Guide for new Prtners in Asi Pcific Registering s new Reseller prtner There re five min steps to e new Reseller prtner. Crete your Appliction Copyright 2017 Hewlett

More information