Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003

Size: px
Start display at page:

Download "Introduction. APPLICATION NOTE 712 DS80C400 Ethernet Drivers. Jun 06, 2003"

Transcription

1 Mxim > Design Support > Technicl Documents > Appliction Notes > Microcontrollers > APP 712 Keywords: DS80C400, ethernet drivers, ethernet controller, TCP/IP router, source code, MII, MAC, PHY, ethernet driver, specil function register, SFR, control sttus register, CSR, MAC ddress, high speed microcontroller, micros APPLICATION NOTE 712 DS80C400 Ethernet Drivers Jun 06, 2003 Abstrct: The DS80C400 high-speed microcontroller hs built-in Ethernet medi-ccess controller (MAC) with n industry-stndrd medi independent interfce (MII). This ppliction note presents design considertions nd fully tested exmple ssembly code for n Ethernet interrupt hndler, nd code for sending nd receiving Ethernet pckets. Using these routines, you cn develop custom pplictions such s TCP/IP routers. Introduction The DS80C400 high-speed microcontroller hs built-in Ethernet medi-ccess controller (MAC) with n industry-stndrd medi independent interfce (MII). Plese refer to the High-Speed Microcontroller User's Guide: DS80C400 Supplement nd the DS80C400 dt sheet for detils. This ppliction note presents design considertions nd fully tested exmple ssembly code for n Ethernet interrupt hndler, nd code for sending nd receiving Ethernet pckets. Using these routines, you cn develop custom ppliction such s TCP/IP routers. Full source code nd the heder files defining the symbolic constnts cn be found on the Dlls Semiconductor ftp site t Pge 1 of 13

2 Figure 1. DS80C400 Ethernet Buffer. The DS80C400 MAC Hrdwre Ethernet Buffer Memory The DS80C400 communictes with the network vi set of specil function registers (SFRs) nd 8kB of dul port buffer memory. The buffer memory is divided into the receive nd send memory nd cn be ddressed in blocks of 256 bytes ("pges"). The receive pges re orgnized in circulr fshion, mnged by the DS80C400 hrdwre. The send buffer is mnged by the user's ppliction. The loction for the Ethernet buffer is usully ddress 0FFE000h (defult configurtion estblished by ROM loder), ssigned to the constnt ETH_RECEIVE_BUFFER. Ethernet Control Sttus Registers The primitives RedCSR nd WriteCSR re used to red nd write the DS80C400 Ethernet control sttus registers (CSRs). Note tht the exmple code does not sve the processor registers cross function clls. When using this code, ensure tht you don't destroy the processor stte (this is especilly importnt when using interrupt driven dt trnsfer). Pge 2 of 13

3 Red CSR RedCSR reds control sttus register. *************************************************************************** Function Nme: ETH_RedCSR Description: Red from specified register. Input(s): -> register ddress Outputs(s): r3:r2:r1:r0 -> 32 bit register byte vlue *************************************************************************** ETH_RedCSR: push eie clr eie.5 csr, ; Lod CSRA SFR with the LSB of the ; 16-bit ddress of the trgeted CSR nl bcuc, #0f0h ; Cler BCUC commnd bits orl bcuc, #BCU_READ_CSR ; Write red CSR commnd to BCUC SFR push cc eth_redcsr_busy: ; Wit until Busy bit in BCUC SFR is reset, bcuc ; Move to cc since BCUC is not bit cp. jb cc.7, eth_redcsr_busy pop cc r3, csrd ; Red CSRD SFR for MSB of 32 bit dt r2, csrd r1, csrd r0, csrd ; LSB pop eie Listing 1. RedCSR Reds Control Sttus Register Note tht this code sves, disbles, nd restores the Ethernet ctivity interrupt enble (eie.5) to mke sure tht write to the CSR is not interrupted by n Ethernet ctivity interrupt. The definition for the bcuc, csrd nd csr SFRs cn be found in the include file ds80c400.inc. Constnt vlues such s BCUC_READ_CSR re defined in eth400.inc. Write CSR The WriteCSR function writes 32 bit vlue to control sttus register. *************************************************************************** Function Nme: ETH_WriteCSR Description: Write to specified register. Input(s): -> register ddress r3:r2:r1:r0 -> 32 bit vlue Outputs(s): N/A Pge 3 of 13

4 *************************************************************************** ETH_WriteCSR: push eie clr eie.5 csrd, r3 ; Write CSRD SFR for MSB of 32 bit dt csrd, r2 csrd, r1 csrd, r0 ; LSB csr, ; Lod CSRA SFR with the LSB of the ; 16-bit ddress of the trgeted CSR nl bcuc, #0f0h ; Cler bcuc commnd bits 0-3 orl bcuc, #BCU_WRITE_CSR ; Write write CSR commnd to bcuc SFR push cc eth_writecsr_busy: SFR is reset, bcuc jb pop cc pop eie cc.7, eth_writecsr_busy Listing 2. WriteCSR Writes Control Sttus Register Initiliztion MAC Address ; Wit until Busy bit in BCUC In order to use the DS80C400 on the network, globlly unique MAC ddress needs to be progrmmed into the device. The MAC ddress cn either be cquired from the DS2502-E48 MAC ddress 1-Wire prt (Dlls Semiconductor hs registered rnge of redy-to-go MAC ddresses in order to simplify building embedded devices) or from nother IEEE registered source. Very importnt: Under NO circumstnces select rndom MAC ddress or the ddress of nother existing device. MAC ddresses re globlly unique nd network stbility depends on well behved devices! *************************************************************************** Function Nme: ETH_LodEthernetAddress Description: Lod the 48 bit ethernet ddress into the controller. Input(s): dptr0 -> pointer to the Ethernet ddress (big-endin) ; for exmple Outputs(s): N/A *************************************************************************** ETH_LodEthernetAddress: r0, inc dptr r1, inc dptr r2, Pge 4 of 13

5 inc dptr r3, inc dptr cll x inc x clr cll, #CSR_MAC_LO r0, r1, r2, r3,, #CSR_MAC_HI ETH_WriteCSR Listing 3. LodEthernetAddress Lods the MAC Address into the DS80C400 Note tht two CSR writes re required to fully lod the 6-byte Ethernet MAC ddress. Since this code is only clled during initiliztion, it is not protected ginst Ethernet ctivity interrupts. Initilizing the Ethernet MAC further requires configurtion of the prtition between receive buffer (incoming pckets) nd send buffer (outgoing pckets). Figure 1 shows this prtition between pge n-1 nd pge n. To simplify code nd void dropping inbound pckets, most pplictions will benefit from prtitioning the buffer memory in fshion tht reserves most of the pges for inbound pckets nd only lloctes enough pges for one outbound pcket. The reson for this is tht Ethernet is shred medium nd even in switched networks only frction of incoming pckets re of interest to n ppliction. Therefore, we define the constnts ETH_TRANSMIT_PAGE to 17h nd ETH_SEND_BUFFER to ETH_RECEIVE_BUFFER + 17h x 256. Constnt ETH_TRANSMIT_PAGE ETH_SEND_BUFFER Vlue 17h 0FFF700h The following code first disbles the trnsmitter nd then initilizes the DS80C400 buffer memory to select the 23:9 receive:send prtition. The code then sets the hlf/full duplex sttus (this sttus cn be cquired from the MII, see below) nd enbles the trnsmitter. Enbling the Trnsceiver *************************************************************************** Function Nme: ETH_EnbleTrnsceiver Description: Enble receiver nd trnsmitter for Ethernet controller. Input(s): N/A Outputs(s): N/A Pge 5 of 13

6 *************************************************************************** ETH_EnbleTrnsceiver: push eie clr eie.5 ; First, disble trnsmitter nd receiver (full duplex bit is ; not settble if they re on) clr r3, r2, r1, r0,, #CSR_MAC_CTRL cll ETH_WriteCSR ; Set Ethernet buffer sizes TIMEDACCESS ebs, #ETH_TRANSMIT_PAGE ; Also clers the flush filter filed bit r3, #00h ; Select non-byte swp mode dptr, #ETH_DUPLEX_STATUS swp ; Move bit to position 4 (20:F) jnz eth_et_fullduplex orl, #80h ; Disble receive own (23:DRO) eth_et_fullduplex: orl, #08h ; Pss ll multicst (19:PM) OPTIONAL r2, ; Set duplex mode ccording to PHY detection r1, #10h ; Perfect filtering of multicst, ; lte collision control, no uto pd strip r0, #0ch ; Block-off limit 10, no deferrl check, ; enble trnsmitter nd receiver, #CSR_MAC_CTRL cll ETH_WriteCSR pop eie Listing 4. EnbleTrnsceiver Prtitions the Buffer Memory nd Enbles the Trnsceiver Note tht this code ssumes the duplex sttus informtion is stored t loction ETH_DUPLEX_STATUS in MOVX memory. Flushing the Buffer Next, the Ethernet buffer is flushed to ensure clen strtup. *************************************************************************** Function Nme: ETH_Flush Description: Relese ll resources. Input(s): N/A Outputs(s): N/A *************************************************************************** ETH_Flush: Pge 6 of 13

7 nl bcuc, #0f0h ; Cler bcuc commnd bits orl bcuc, #BCU_INV_CURR ; Write relese commnd to bcuc SFR Listing 5. Flush Flushes the Receive Buffer Sending nd Receiving Sending Pcket To send pcket, the user's ppliction must first plce the pcket dt in the Ethernet send buffer. If previous pcket ws plced t the sme ddress, the ppliction must wit for the trnsmit to be complete before modifying the buffer memory. Note tht the first four bytes of the send buffer re reserved for the send sttus word. The first byte tht will be trnsmitted is t loction ETH_SEND_BUFFER+4. *************************************************************************** Function Nme: ETH_Trnsmit Description: Trnsmit the rw Ethernet pcket currently in the Ethernet send buffer Input(s): r5:r4 = totl pcket length in bytes Outputs(s): N/A *************************************************************************** ETH_Trnsmit: ; Ethernet frme is in trnsmit buffer (Strting t ; pge offset = 4). Byte count is in r5:r4 bcuc SFR ; Lod MSB of byte count to bcud SFR bcud, r5 ; Lod LSB of byte count to bcud SFR bcud, r4 ; Lod strting pge ddress to bcud SFR bcud, #ETH_TRANSMIT_PAGE ; XXX Set trnsmit in progress flg in your softwre here ; XXX so you cn void interrupting trnsmit in progress. ; XXX e.g.: setb ds400_xmit ; Write trnsmit request to bcuc SFR nl bcuc, #0f0h ; Cler bcuc commnd bits orl bcuc, #BCU_XMIT ; Write trnsmit commnd to Listing 6. Trnsmit Sends Pcket Onto the Network Receiving Pcket When pcket is received (usully indicted by n interrupt, see below), the user code needs to unlod the pcket from the Ethernet buffer memory nd then relese the buffer memory, unlike the send buffer, which is mnged by the user, the receive buffer is mnged by the DS80C400. Pge 7 of 13

8 Unloding the Pcket Dt Note tht received pcket cn spn severl pges in the receive buffer nd it cn wrp from the lst pge in the receive buffer to the first pge in the receive buffer. Ensure tht your pcket copy routine properly hndles this cse. *************************************************************************** Function Nme: ETH_Receive Description: Strt unloding the lst pcket from the Ethernet controller. Input(s): N/A Outputs(s): N/A *************************************************************************** ETH_Receive: ; Get loction of buffer nd set dptr0 ccordingly, bcud nl, #1fh ; we re not interested in the pge count ; so now contins the strting pge number ; (1 pge is 256 bytes) dptr, #ETH_RECEIVE_BUFFER ; receive buffer strting ddress b, ; "multiply" pge by 256 to get byte count clr cll Add_Dptr0_16 ; nd dd it to receive buffer strting ddress ; dptr0 now points to the receive sttus word of the pcket inc dptr r2, ; sve LSB of frme length inc dptr r3, ; sve this ; check runt frme, wtchdog time-out nl, #(80h or 40h) jnz eth_ueh_relese, r3 ; restore nd get frme length nl, #3fh r3, ; sve HSB of frme length x dptr ; check CRC error, MII error, collision seen, frme too long nl, #(20h or 08h or 02h or 01h) jnz eth_ueh_relese ; MSB of sttus word ; check for length error, control frme, unsupported ctrl frme ; missed frme b, Pge 8 of 13

9 frme! nl, #(80h or 20h or 04h or 02h or 01h) jnz eth_ueh_relese ; bd bd bd, b nl, #40h ; check for filter mtch jz eth_ueh_relese ; XXX Copy the pcket into your buffer here. ; XXX r3:r2 contin the length of the pcket, ; XXX dptr0 points to the beginning of the dt. ; XXX Note tht the buffer cn wrp! eth_ueh_relese: Listing 7. Receive Receives Pcket from the Network Relesing the Buffer After processing n incoming pcket, the user code needs to relese the buffer memory in the Ethernet receive buffer. *************************************************************************** Function Nme: ETH_Relese Description: Relese resources. Input(s): N/A Outputs(s): N/A *************************************************************************** ETH_Relese: nl bcuc, #0f0h ; Cler bcuc commnd bits orl bcuc, #BCU_INV_CURR ; Write relese commnd to bcuc SFR Listing 8. Relese Releses Pcket from the Receive Buffer Interrupt Driven Opertion Insted of polling the bit flgs in the bcuc SFR, n ppliction should use the Ethernet ctivity interrupt for better performnce. There is one interrupt hndler for both receive nd trnsmit complete interrupts. The Ethernet ctivity interrupt clls loction h. Since there re only 8 bytes per interrupt, we suggest instlling long jump to the ctul function: org 73h ljmp ETH_ProcessInterrupt Processing Interrupts The following code hndles both receive nd trnsmit complete interrupts. *************************************************************************** Function Nme: ETH_ProcessInterrupt Description: ISR for Ethernet interrupt Pge 9 of 13

10 Input(s): N/A Outputs(s): N/A Destroyed: Nothing. *************************************************************************** ETH_ProcessInterrupt: push cc, bcuc nl, #rif ; Received dt? jz eth_pi_no_receive ; XXX Cll your receive pcket hndler here. ; XXX Ensure it sves nd restores ll registers! ; XXX E.g.: cll ETH_ProcessPcket eth_pi_no_receive:, bcuc nl, #tif jz eth_pi_exit ; Trnsmitted dt? ; XXX If you keep trck of send in progress, here's the plce ; XXX to cler the flg. ; XXX E.g.: clr ds400_xmit nl bcuc, #(not(tif) nd 0f0h) ; nd NOOP commnd ; XXX If you keep trnsmit queue, send next pcket from queue ; XXX E.g.: cll ETH_SendNextFromQueue eth_pi_exit: pop cc i Listing 9. ProcessInterrupt Hndles Ethernet Activity Interrupts Enbling Interrupts Finlly, fter enbling the Ethernet interrupt, the DS80C400 is redy to receive nd send pckets. *************************************************************************** Function Nme: ETH_EnbleInterrupts Description: Enble Ethernet trnsmit/receive interrupts. Input(s): Outputs(s): Destroyed: *************************************************************************** ETH_EnbleInterrupts: ; XXX If you keep trck of trnsmits in progress, cler ; XXX the flg here. ; XXX E.g.: clr ds400_xmit nl bcuc, #(not(rif or tif) nd 0f0h) ; Cler interrupt flgs setb eie.5 ; Enble Ethernet ctivity interrupt clr eip ; Set network interrupt priority low Listing 10. EnbleInterrupts Enbles the Ethernet Activity Interrupt Medi Independent Interfce (MII) The Medi Independent Interfce (MII) defines I/O lines tht llow the DS80C400 to communicte with Pge 10 of 13

11 the physicl lyer interfce (PHY). Even though mny PHYs hve vendor-specific commnd set, there re common commnds tht most PHYs shre, defined in the IEEE Std Communictions with PHY cn be used to query PHY for its uto negotition nd duplex stte, nd to isolte nd "unisolte" PHYs (in the cse of multiple PHYs) nd reconfigure PHY. The MII on the DS80C400 is ccessed through CSR registers. The following routines red nd write n MII register in given PHY. Red MII Register *************************************************************************** Function Nme: ETH_RedMII Description: Red MII register Input(s): -> register number, b -> PHY number Outputs(s): r1:r0 -> contents of MII register Notes: MII ddress Register (14h): reserved PHY ddress MII register reserved 1 -- MII write 0 -- MII busy *************************************************************************** ETH_RedMII: push eie clr eie.5 r7, ; Sve register number ; Wit until MII is not busy eth_rmii_busy:, #CSR_MII_ADDR cll ETH_RedCSR jb, r0 cc.0, eth_rmii_busy clr r3, ; Reserved - lwys cler r2,, r7 ; Restore register number rr rr ; And shift to pos 10:8 r7, ; Sve result of shift nl, #07h ; Select bits 0:2 r1,, b ; Lod PHY ddress nl, #1fh rl rl rl ; shift to 7:3 orl, r1 r1,, r7 ; Restore result of shift nl, #0c0h ; Select bits 7:6 r0, cll, #CSR_MII_ADDR ETH_WriteCSR Pge 11 of 13

12 ; Wit until MII is not busy eth_rmii_busy2:, #CSR_MII_ADDR cll ETH_RedCSR, r0 jb cc.0, eth_rmii_busy2 ; Red MII dt register, #CSR_MII_DATA cll ETH_RedCSR pop eie Listing 11. RedMII Reds n MII Register from Given PHY Write MII Register *************************************************************************** Function Nme: ETH_WriteMII Description: Write MII register Input(s): -> register number, b -> PHY number, r1:r0 -> dt Outputs(s): N/A *************************************************************************** ETH_WriteMII: push eie clr eie.5 push 0 ; Sve r1 nd r0 push 1 r7, ; Sve register number ; Wit until MII is not busy eth_wmii_busy:, #CSR_MII_ADDR cll ETH_RedCSR jb pop 1 pop 0, r0 cc.0, eth_wmii_busy clr r3, ; Reserved - lwys cler r2, ; Write MII dt register, #CSR_MII_DATA cll ETH_WriteCSR, r7 ; Restore register number rr rr ; And shift to pos 0:2 r7, ; Sve result of shift nl, #07h ; Select bits 0:2 r1,, b ; Lod PHY ddress nl, #1fh rl rl rl ; shift to 7:3 Pge 12 of 13

13 orl, r1 r1,, r7 ; Restore result of shift nl, #0c0h ; Select bits 7:6 orl, #2 ; Select write bit :1: r0, cll pop, #CSR_MII_ADDR ETH_WriteCSR eie Listing 12. WriteMII Writes n MII Register to Given PHY MII Exmple The following code reds the MII sttus register of PHY: b, #0, #MII_STATUS cll ETH_RedMII Relted Prts DS80C400 Network Microcontroller Free Smples More Informtion For Technicl Support: For Smples: Other Questions nd Comments: Appliction Note 712: APPLICATION NOTE 712, AN712, AN 712, APP712, Appnote712, Appnote Mxim Integrted Products, Inc. Additionl Legl Notices: Pge 13 of 13

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load

ECE 274 Digital Logic. Digital Design. Datapath Components Registers. Datapath Components Register with Parallel Load ECE 274 igitl Logic Multifunction Registers igitl esign 4. 4.2 igitl esign Chpter 4: Slides to ccompny the textbook igitl esign, First Edition, by Frnk Vhid, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com

More information

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM

GRABLINKTM. FullTM. - DualBaseTM. - BaseTM. GRABLINK Full TM. GRABLINK DualBase TM. GRABLINK Base TM GRLINKTM FullTM - DulseTM - setm Full-Fetured se, Medium nd Full Cmer Link Frme Grbbers GRLINK Full TM GRLINK Dulse TM GRLINK se TM www.euresys.com info@euresys.com Copyright 011 Euresys s.. elgium. Euresys

More information

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from

Application Support. Product Information. Omron STI. Support Engineers are available at our USA headquarters from Omron STI Appliction Support Thnk you for your interest in Omron STI products. Plese contct Omron STI with your ppliction questions. Support Engineers re vilble t our U hedqurters from 4:00.m. until 5:00

More information

Engineer To Engineer Note

Engineer To Engineer Note Engineer To Engineer Note EE-203 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

INPUT CAPTURE WITH ST62 16-BIT AUTO-RELOAD TIMER

INPUT CAPTURE WITH ST62 16-BIT AUTO-RELOAD TIMER APPLICATION NOTE INPUT CAPTURE WITH ST62 -BIT AUTO-RELOAD TIMER by -bit Micro Appliction Tem 1 INTRODUCTION This note presents how to use the ST62 -bit Auto-Relod Timer (ARTimer) to mesure durtions or

More information

Avaya P460. Quick Start Guide. Important Information. Unpack the Chassis. Position the Chassis. Install the Supervisor Module and PSU

Avaya P460. Quick Start Guide. Important Information. Unpack the Chassis. Position the Chassis. Install the Supervisor Module and PSU Avy P460 Modulr Multilyer Switch Quick Strt Guide Importnt Informtion Unpck the Chssis Position the Chssis 1 2 3 Note: Refer to Importnt Informtion before strting the instlltion Instll the Supervisor Module

More information

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the

The Official IDENTITY SYSTEM. A Manual Concerning Graphic Standards and Proper Implementation. As developed and established by the The Officil ISKCON IDENTITY SYSTEM A Mnul Concerning Grphic Stndrds nd Proper Implementtion As developed nd estlished y the COMMUNICATIONS DEPARTMENT of the INTERNATIONAL SOCIETY FOR KRISHNA CONSCIOUSNESS

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_4_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

WE SERIES DIRECTIONAL CONTROL VALVES

WE SERIES DIRECTIONAL CONTROL VALVES WE SERIES DIRECTIONL CONTROL VLVES ISO4401 Size 03 ulletin 80340- DESIGNTION PGE Fetures nd Generl Description 3 Specifictions 4 Operting Limits 5 Tle of Contents Performnce Dt 6 Stndrd Models 7-8 Dimensions

More information

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1

SeSSION 9. This session is adapted from the work of Dr.Gary O Reilly, UCD. Session 9 Thinking Straight Page 1 G N I K N I THmily TrHeeT FSTRAIG SeSSION 9 This session is dpted from the work of Dr.Gry O Reilly, UCD Session 9 Thinking Stright Pge 1 Lerning Objectives ful thinking tht To look t how we cn spot unhelp

More information

ViaLiteHD RF Fibre Optic Link

ViaLiteHD RF Fibre Optic Link ViLiteHD RF Fibre Optic Link User Guide HRx-HB-7 CR3567 24/01/2017 Pulse Power & Mesurement Ltd, 65 Shrivenhm Hundred Business Prk, Wtchfield, Swindon, Wiltshire SN68TY, UK Tel +44 (0)1793 784389 Fx +44

More information

VISUAL IDENTITY GUIDE

VISUAL IDENTITY GUIDE VISUAL IDENTITY GUIDE contents Bsic Section Visul Identity System Bsic Prt Appliction Section Visul Identity System Appliction Prt 1.1 Logo System Design 1.1.1 Stndrd Color Grphics of The Logo 1.1.2 Stndrd

More information

Explosion protected add-on thermostat

Explosion protected add-on thermostat Dt Sheet 605051 Pge 1/7 Explosion protected dd-on thermostt ATH-EXx type series Prticulrities 10 A contct rting cn be directly fitted in zone 1, 2, 21 nd 22 optionl -50 C used Control rnges from -20 to

More information

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS:

CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION UNIVERSITY OF NEVADA, LAS VEGAS GOALS: CPE 200L LABORATORY 2: DIGITAL LOGIC CIRCUITS BREADBOARD IMPLEMENTATION DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOALS: In this l, the sic logic circuits will e

More information

Panel-mounted Thermostats

Panel-mounted Thermostats sles@jumo.co.uk info.us@jumo.net Dt Sheet 602010 Pge 1/7 Pnel-mounted Thermostts ETH Series Specil fetures Version ccording to DIN EN 14597 Pressure Equipment Directive 97/23/EC Brief description Pnel-mounted

More information

Contents 2. Notations Used in This Guide 7. Introduction to Your Projector 8. Using Basic Projector Features 34. Setting Up the Projector 17

Contents 2. Notations Used in This Guide 7. Introduction to Your Projector 8. Using Basic Projector Features 34. Setting Up the Projector 17 User's Guide Contents 2 Nottions Used in This Guide 7 Introduction to Your Projector 8 Projector Fetures... 9 Long-life Lser Light Source... 9 Quick nd Esy Setup... 9 Esy Wireless Projection... 9 Projecting

More information

Corporate Logo Guidelines

Corporate Logo Guidelines Corporte Logo Guidelines The llpy logo Inspirtion The logo is inspired by llpy s commitment to the world of secure nd complete pyment services. The solid circle surrounding the nme represents bullet proof

More information

Chapter 1: Introduction

Chapter 1: Introduction Chpter : Introduction Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 7. http://www.ddvhid.com Copyright 7 Instructors of courses requiring Vhid's textbook (published

More information

Safety Relay Unit G9SB

Safety Relay Unit G9SB Sfety Rely Unit CSM DS_E_6_1 Ultr Slim Sfety Rely Unit Models of width 17.5 mm vilble with 2 or 3 poles. Models of width 22.5 mm with 3 poles lso vilble. Conforms to EN stndrds. (TÜV pprovl) DIN trck mounting

More information

A New Concept of Providing Telemetry Data in Real Time

A New Concept of Providing Telemetry Data in Real Time The Spce Congress Proceedings 1967 (4th) Spce Congress Proceedings Apr 3rd, 12: AM A New Concept of Providing Telemetry Dt in Rel Time John M. Bllock Pn Americn World Airwys, GMRD, Ptrick Air Force Bse,

More information

Contents. English. English. Your remote control 2

Contents. English. English. Your remote control 2 English Contents Your remote control 2 Instlltion Preprtion 3 Connect your computer 4 Switch on 5 Select your enu lnguge 5 Serch for nd Store chnnels Automtic instlltion 7 nul instlltion 8 Reshuffle the

More information

Pitch I. I. Lesson 1 : Staff

Pitch I. I. Lesson 1 : Staff Pitch Lesson 1 : Stff n this lesson you will lern bout the five-line stff, pitches nd notes, noteheds, scending nd descending motion, steps nd leps, ledger lines. Music is written on five-line stff: five

More information

Notations Used in This Guide

Notations Used in This Guide User's Guide Nottions Used in This Guide Sfety indictions The documenttion nd the projector use grphicl symbols to show how to use the projector sfely. The indictions nd their mening re s follows. Mke

More information

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk.

Before Reading. Introduce Everyday Words. Use the following steps to introduce students to Nature Walk. Nture Wlk Objectives 15 Before Reding Demonstrte understnding of the orgniztion nd bsic fetures of print Recognize nd red grde-pproprite irregulrly spelled words Red on-level text orlly with ccurcy pproprite

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 28. Setting Up the Projector 15

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 28. Setting Up the Projector 15 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Prts nd Functions... 8 Projector Prts - Front/Side... 8 Projector Prts - Top/Side... 9 Projector Prts -

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 30. Setting Up the Projector 17

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 30. Setting Up the Projector 17 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

CPSC 121: Models of Computation Lab #2: Building Circuits

CPSC 121: Models of Computation Lab #2: Building Circuits CSC 121: Models of Computti L #2: Building Circuits Ojectives In this l, ou will get more eperience with phsicl logic circuits using The Mgic Bo. You will lso get our first eposure to Logisim, tool for

More information

Applications to Transistors

Applications to Transistors CS/EE1012 INTRODUCTION TO COMPUTER ENGINEERING SPRING 2013 LAYERED COMPUTER DESIGN 1. Introduction CS/EE1012 will study complete computer system, from pplictions to hrdwre. The study will e in systemtic,

More information

Your KIM. characters, along with a fancy. includes scrolling, erase to end of screen, full motions, and the usual goodies. The

Your KIM. characters, along with a fancy. includes scrolling, erase to end of screen, full motions, and the usual goodies. The Don Lncster SYNERGETCS A TVT For Your KM... t price you won't believe Here is the gret hppening in TVT technology you hve long been witing for. Tke smll, single-sided PC crd with SX integrted circuits

More information

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example

ECE 274 Digital Logic. Digital Design. Sequential Logic Design Controller Design: Laser Timer Example ECE 274 Digitl Logic Sequentil Logic Design Sequentil Logic Design Process Digitl Design 3.4 3.5 Digitl Design Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the tetook Digitl Design,

More information

Notations Used in This Guide

Notations Used in This Guide User's Guide Nottions Used in This Guide Sfety indictions The documenttion nd the projector use grphicl symbols to show how to use the projector sfely. Plese understnd nd respect these cution symbols in

More information

CMST 220 PUBLIC SPEAKING

CMST 220 PUBLIC SPEAKING CMST 220 PUBLIC SPEKING RED G. METZGER, INSTRUCTOR OICE: RINIER 213 PHONE: 253-964-6659 fmetzger@pierce.ctc.edu O V E R V I E W PUBLIC SPEKING IS N OPPORTUNITY TO LOOK GOOD IN RONT O PEOPLE. LL YOUR LIE

More information

lookbook Higher Education

lookbook Higher Education Higher Eduction Higher Eduction Introduction Your digitl signge success hinges on creting unique nd integrted cmpus experience for students, fculty, lumni nd visitors. The ever-expnding rnge of solutions

More information

ViaLite SatComs Fibre Optic Link

ViaLite SatComs Fibre Optic Link ViLite StComs Fibre Optic Link User Mnul LRx-L-HB- 8 CR2874 14/04/11 Pulse Power & Mesurement Ltd, 65 Shrivenhm Hundred Business Prk, Wtchfield, Swindon, Wiltshire SN68TY, UK Tel +44 (0)1793 784389 Fx

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

Chapter 5. Synchronous Sequential Logic. Outlines

Chapter 5. Synchronous Sequential Logic. Outlines Chpter 5 Synchronous Sequentil Logic Outlines Sequentil Circuits Ltches Flip-Flops Anlysis of Clocke Sequentil Circuits Stte Reuction n Assignment Design Proceure 2 5. Sequentil Circuits Sequentil circuits

More information

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16

Contents 2. Notations Used in This Guide 6. Introduction to Your Projector 7. Using Basic Projector Features 29. Setting Up the Projector 16 User's Guide Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity... 9 Connect with

More information

1. Connect the wall transformer to the mating connector on the Companion. Plug the transformer into a power outlet.

1. Connect the wall transformer to the mating connector on the Companion. Plug the transformer into a power outlet. I/ PUTTIG THE QRP COMPAIO O THE AIR 1. Connect the wll trnsformer to the mting connector on the Compnion. Plug the trnsformer into power outlet. 2. Plug the cord lbeled 12 VDC OUTPUT into the QRP PLUS

More information

Have they bunched yet? An exploratory study of the impacts of bus bunching on dwell and running times.

Have they bunched yet? An exploratory study of the impacts of bus bunching on dwell and running times. 1 1 1 1 1 1 1 1 0 1 0 1 0 1 Hve they bunched yet? An explortory study of the impcts of bus bunching on dwell nd running times Dvid Verbich School of Urbn Plnning Fculty of Engineering McGill University

More information

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu-

walking. Rhythm is one P-.bythm is as Rhythm is built into our pitch, possibly even more so. heartbeats, or as fundamental to mu- Ir melody- is sung without its rhythm, it immeditely loses much of its essence. P-.bythm is s fundmentl to mu- sic s pitch, possibly even more so. Rhythm is built into our bodies s hertbets, or s the motion

More information

Outline. Circuits & Layout. CMOS VLSI Design

Outline. Circuits & Layout. CMOS VLSI Design CMO VLI esign Circuits & Lyout Outline Brief History CMO Gte esign Pss Trnsistors CMO Ltches & Flip-Flops tndrd Cell Lyouts tick igrms lide 2 Brief History 958: First integrted circuit Flip-flop using

More information

A Proposed Keystream Generator Based on LFSRs. Adel M. Salman Baghdad College for Economics Sciences

A Proposed Keystream Generator Based on LFSRs. Adel M. Salman Baghdad College for Economics Sciences A Proposed Keystrem Genertor Bsed on LFSRs Adel M Slmn Bghdd College for Economics Sciences 1 2 2012 مجلة كلية بغداد للعلوم الاقتصادية الجامعة العدد الرابع و الثلاثون UAbstrct A strem cipher is system

More information

Lecture 3: Circuits & Layout

Lecture 3: Circuits & Layout Lecture 3: Circuits & Lyout Slides courtesy of eming Chen Slides sed on the initil set from vid Hrris CMOS VLSI esign Outline CMOS Gte esign Pss Trnsistors CMOS Ltches & Flip-Flops Stndrd Cell Lyouts Stick

More information

Pro Series White Toner and Neon Range

Pro Series White Toner and Neon Range WHEN YOU REGISTER YOUR PRODUCT Pro Series White Toner nd Neon Rnge Discover New Dimension in Colour printing for grment decortion, signge nd design Pro7411WT White Toner (CMYW) A4 printer Pro8432WT White

More information

LCD Data Projector VPL-S500U/S500E/S500M

LCD Data Projector VPL-S500U/S500E/S500M LCD Dt Projector VPL-S500U/S500E/S500M Sony presents to you... In tody s world it is esy to crete n impctful nd colorful presenttion full of chrts grphics video clips nd nimtions. To deliver these effective

More information

Chapter 3: Sequential Logic Design -- Controllers

Chapter 3: Sequential Logic Design -- Controllers Chpter 3: Sequentil Logic Design -- Controllers Slides to ccompny the textbook, First Edition, by, John Wiley nd Sons Publishers, 27. http://www.ddvhid.com Copyright 27 Instructors of courses requiring

More information

User's Guide. Downloaded from

User's Guide. Downloaded from User's Guide Downloded from www.vndenborre.be Contents 2 Nottions Used in This Guide 6 Connecting to Composite Video Source... 26 Connecting to Externl USB Devices... 27 Introduction to Your Projector

More information

Sequencer devices. Philips Semiconductors Programmable Logic Devices

Sequencer devices. Philips Semiconductors Programmable Logic Devices hilips emiconductors rogrmmle Logic Devices equencer devices INTODUTION Ten yers go, in their serch for strightforwrd solution to complex sequentil prolems, hilips emiconductors originted rogrmmle Logic

More information

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep.

Day care centres (ages 3 to 5) Kindergarten (ages 4 to 5) taken part in a fire drill in her building and started to beep. You nd your fmily Here re eight key fire cn tke prt in sfety tips tht you should know Dy cre centres (ges 3 to 5) Kindergrten (ges 4 to 5) flsh Sty wy from hot things tht cn burn! Tell grown-up if you

More information

SWITCHED ACCESS REMOTE TEST SYSTEM (SARTS- 1 A) REMOTE TEST SYSTEM 1 A (RTS-1 A) TESTS

SWITCHED ACCESS REMOTE TEST SYSTEM (SARTS- 1 A) REMOTE TEST SYSTEM 1 A (RTS-1 A) TESTS Function Control Circuit (TFCC) (Fig. 2), the RTS-1 controller, the Remote ccess Test Port (RTP), and the Test Register and Outpulsing Circuit (TROP). NOTICE Not for use or disclosure outside the Bell

More information

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor:

PRACTICE FINAL EXAM T T. Music Theory II (MUT 1112) w. Name: Instructor: Music Theory II (MUT 1112) w Nme: Instructor: PRACTICE FINAL EXAM Prt-writing (45 minutes; 40%) Complete the prtil progression below with pproprite chord symbols. (There my be more thn one correct nswer.)

More information

PIRELLI BRANDBOOK 4. IDENTITY DESIGN

PIRELLI BRANDBOOK 4. IDENTITY DESIGN PIRELLI BRANDBOOK 4. IDENTITY DESIGN 4.01 LOGOTYPE 4.01 The PIRELLI logotype The logotype is one of the most importnt elements of PIRELLI s visul identity. The logotype consists of the lettering PIRELLI

More information

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2

LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 LAERSKOOL RANDHART ENGLISH GRADE 5 DEMARCATION FOR EXAM PAPER 2 Dte: 15 Octoer 2018 Time: 2 hours Totl: 25 mrks SECTION C: ESSAY (15 MARKS) Write n essy out one of the given topics. Your essy should e

More information

LCD VIDEO MONITOR PVM-L1700. OPERATION MANUAL [English] 1st Edition (Revised 2)

LCD VIDEO MONITOR PVM-L1700. OPERATION MANUAL [English] 1st Edition (Revised 2) LCD VIDEO MONITOR PVM-L1700 OPERATION MANUAL [English] 1st Edition (Revised 2) efore operting the unit, plese red this mnul thoroughly nd retin it for future reference. Importnt Sfety Instructions Red

More information

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots.

What do these sentences describe? Write P for plants, A for animals or B for both next to each sentence below. They ve got roots. Unit Nture Lerning Link In this unit you will lern words nd phrses to help you tlk out the nturl world. to tell story using pictures. to write letter out dy out in the countryside. to use the Pst Simple

More information

1 --FORMAT FOR CITATIONS & DOCUMENTATION-- ( ) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS!

1 --FORMAT FOR CITATIONS & DOCUMENTATION-- ( ) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS! 1 --FORMAT FOR CITATIONS & DOCUMENTATION-- (2014-2015) YOU MUST CITE A SOURCE EVEN IF YOU PUT INFORMATION INTO YOUR OWN WORDS! -----SEE LAST PAGE FOR SUMMARIES AND PARAPHRASES----- Tle of Contents 1. Source

More information

Train times. Monday to Sunday. Stoke-on-Trent. Crewe

Train times. Monday to Sunday. Stoke-on-Trent. Crewe Trin times Mony to Suny Services between: Derby Crewe Stoke-on-Trent 5 Vli from 22n July to 7th October 2018 This timetble replces the Est Milns Trins Trin times 5 timetble between the bove tes on this

More information

92.507/1. EYR 203, 207: novaflex universal controller. Sauter Systems

92.507/1. EYR 203, 207: novaflex universal controller. Sauter Systems 92.507/1 EYR 203, 207: novflex universl controller novflex, universl controller of the EY3600 fmily, is used in HVAC control systems. The EYR 203 hs totl of 18 inputs nd 10 outputs, while the EYR 207 hs

More information

LOGICAL FOUNDATION OF MUSIC

LOGICAL FOUNDATION OF MUSIC LOGICAL FOUNDATION OF MUSIC philosophicl pproch Im Anfng wr die Tt Goethe, Fust CARMINE EMANUELE CELLA cecily@liero.it www.cryptosound.org NATURE OF MUSICAL KNOWLEDGE Musicl knowledge cn e thought s complex

More information

DIGITAL EFFECTS MODULE OWNER'S MANUAL

DIGITAL EFFECTS MODULE OWNER'S MANUAL DIGITL EFFECTS MODULE OWNER'S MNUL Introduction Thnk you for purchsing the DEP (bbrev For: Digitl Effects Processor) To tke full dvntge of the DEP's functions, nd to enjoy long nd trouble-free use, plese

More information

lookbook Transportation - Airports

lookbook Transportation - Airports Trnsporttion - Airports Trnsporttion - Airports Introduction By using digitl signge for generl informtion, wyfinding, lerts nd dvertising in key loctions, irports cn elevte their brnd imge nd provide experiences

More information

LCD VIDEO MONITOR PVM-L3200. OPERATION MANUAL [English] 1st Edition (Revised 1)

LCD VIDEO MONITOR PVM-L3200. OPERATION MANUAL [English] 1st Edition (Revised 1) LCD VIDEO MONITOR PVM-L3200 OPERATION MANUAL [English] 1st Edition (Revised 1) efore operting the unit, plese red this mnul thoroughly nd retin it for future reference. Importnt Sfety Instructions Red

More information

THE MOSSAT COLLECTION BOOK SIX

THE MOSSAT COLLECTION BOOK SIX TH TH PRACTICALITIS OF LARNIN AN WRITIN A TUN MOSSAT COLLCTION BOOK SIX PRACTICALITIS OF LARNIN AN WRITIN A TUN. Along with other gems BY Jim McCombie 1 TH PRACTICALITIS OF LARNIN AN WRITIN A TUN Thnk

More information

For public transport information phone Bus 415. Easy access on all buses. Middleton Alkrington Middleton Junction Chadderton Oldham

For public transport information phone Bus 415. Easy access on all buses. Middleton Alkrington Middleton Junction Chadderton Oldham From 23 April Minor timetble chnges to Mondy to Sturdy dytime journeys. Dytime journeys on Sundys nd public holidys re now run by Stgecoch Bus Esy ccess on ll buses Alkrington Junction Chdderton Oldhm

More information

MILWAUKEE ELECTRONICS NEWS

MILWAUKEE ELECTRONICS NEWS MILWAUKEE ELECTRONICS NEWS Q2 2017 Tecte Fcility Adds SMT Line IN THIS ISSUE Len Chngeovers 2 New SC Product Mgr. 2 HDI Chllenges Solved 3 About Milwukee Electronics Milwukee Electronics designs nd mnufctures

More information

Answers to Exercise 3.3 (p. 76)

Answers to Exercise 3.3 (p. 76) Answers to Exercise 3.3 (p. 76) First of ll, check to see tht you hve weighted your dtset with the vrible WTCORRCT (see Figure 2.5 on p. 52 for how to do this). Once this hs been done, you then need to

More information

Train times. Monday to Sunday

Train times. Monday to Sunday Trin times Mony to Suny Services between: Mtlock Nottinghm Derby Newrk Cstle 3 Vli from 22n July to 7th October 2018 This timetble replces the Est Milns Trins Trin times 3 timetble between the bove tes

More information

METROLOGIC INSTRUMENTS, INC. IS6520/MS6520 Cubit Series Omnidirectional Bar Code Scanner Installation and User s Guide

METROLOGIC INSTRUMENTS, INC. IS6520/MS6520 Cubit Series Omnidirectional Bar Code Scanner Installation and User s Guide METROLOGIC INSTRUMENTS, INC. IS6520/MS6520 Cubit Series Omnidirectionl Br Code Scnner Instlltion nd User s Guide LOCATIONS Corporte Hedqurters North Americ Metrologic Instruments, Inc. Customer Service:

More information

ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING. Takao Nishitani. Tokyo Metropolitan University

ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING. Takao Nishitani. Tokyo Metropolitan University ARCHITECTURAL CONSIDERATION OF TOPS-DSP FOR VIDEO PROCESSING Tko Nishitni Tokyo Metropolitn University nishitni@eei.metro-u.c.jp ABSTRACT Possible DSP chip rchitecture with Ter-Opertions-Per - Second processing

More information

lookbook Senior Living

lookbook Senior Living lyout 1 Commercil Lite Guestroom TV - 55LV340H 55 clss {54.6" digonl} Pulic Disply Mode Externl Speker Out Comptiility {Speker Sold Seprtely} IR Pss Through nd Control USB Auto Plyck+ Welcome Screen Imges

More information

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3

Reproducible music for 3, 4 or 5 octaves handbells or handchimes. by Tammy Waldrop. Contents. Performance Suggestions... 3 eproducible Spring ing! eproducible music for, or octves hndbells or hndchimes by Tmmy Wldrop Contents Performnce Suggestions... The Gtheing... Esily memorized, surround sound, to strt off ny event. L+

More information

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets

Animals. Adventures in Reading: Family Literacy Bags from Reading Rockets Animls Adventures in Reding: Fmily Litercy Bgs from Reding Rockets Contents: Two books one fiction, one nonfiction Prent informtion sheet Three ctivity sheets Bookmrk Prent survey ADVENTURES IN READING

More information

Your Summer Holiday Resource Pack: English

Your Summer Holiday Resource Pack: English Messge Activity to Prents: Sheet The summer holidys re here! To help keep your child entertined, we ve put together Summer Holidy Resource Pck. It s een produced to reduce summer holidy lerning loss nd

More information

DS /211 ED SOLENOID OPERATED DIRECTIONAL CONTROL VALVE. Q max 150 l/min SERIES 12 SUBPLATE MOUNTING ISO (CETOP 05) p max 320 bar

DS /211 ED SOLENOID OPERATED DIRECTIONAL CONTROL VALVE. Q max 150 l/min SERIES 12 SUBPLATE MOUNTING ISO (CETOP 05) p max 320 bar 41 310/211 ED DS5 SOLENOID OERED DIRECIONL CONROL VLVE SULE MOUNING ISO 4401-05 (CEO 05) p mx 320 r Q mx 150 l/min MOUNING INERFCE OERING RINCILE ISO 4401-05-04-0-05 (CEO 4.2-4-05-320) 21.4 6.3 16.7 3.2

More information

Standards Overview (updated 7/31/17) English III Louisiana Student Standards by Collection Assessed on. Teach in Collection(s)

Standards Overview (updated 7/31/17) English III Louisiana Student Standards by Collection Assessed on. Teach in Collection(s) Stndrds Overview (updted 7/31/17) 2017-2018 English III Louisin Student Stndrds y Collection Tech in Collection(s) Stndrd Numer Wording of Stndrd 1 2 3 4 5 6 Assessed on E.O.C. Test RL.1 RL.2 RL.3 RL.4

More information

lookbook Corporate LG provides a wide-array of display options that can enhance your brand and improve communications campus-wide.

lookbook Corporate LG provides a wide-array of display options that can enhance your brand and improve communications campus-wide. LG provides wide-rry of disply options tht cn enhnce your rnd nd improve communictions cmpus-wide. Fine-Pitch Indoor Direct-View LED displys nd Video Wlls in loies cn provide rethtking cnvs for your corporte

More information

Homework 1. Homework 1: Measure T CK-Q delay

Homework 1. Homework 1: Measure T CK-Q delay Homework Find the followin for 3nm, 9nm, 65nm nd 45nm, 32nm, 22nm MO technoloies Effective chnnel lenth Equivlent nd physicl oxide thickness upply volte (Vdd) rw the lyout for the followin Flip-Flop (use

More information

User's Guide. Downloaded from

User's Guide. Downloaded from User's Guide Donloded from.vndenborre.be Contents 2 Nottions Used in This Guide 6 Introduction to Your Projector 7 Projector Fetures... 8 Quick nd Esy Setup... 8 Esy Wireless Projection... 8 Flexible Connectivity...

More information

MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko and Shuvra S. Bhattacharyya

MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko and Shuvra S. Bhattacharyya MODELING OF BLOCK-BASED DSP SYSTEMS Dong-Ik Ko nd Shuvr S. Bhttchryy Deprtment of Electricl nd Computer Engeerg, nd Institute for Advnced Computer Studies University of Mrylnd, College Prk, 20742, USA

More information

400 Series Flat Panel Monitor Arm

400 Series Flat Panel Monitor Arm 1 2 INSTALLATION MANUAL 400 Series Flt Pnel Monitor Arm Rotte Mount Double Pivot P/L USA 1-800-888-8458 1 1x A B C D 1x 75-100mm #8-32 1x 3/32" 2 3 1x 2x 1x 1/8" #10-23/8" Sterile #6-32x1/2" 4 3/16" 2x

More information

Outline. Annual Sales. A Brief History. Transistor Types. Invention of the Transistor. Lecture 1: Circuits & Layout. Introduction to CMOS VLSI Design

Outline. Annual Sales. A Brief History. Transistor Types. Invention of the Transistor. Lecture 1: Circuits & Layout. Introduction to CMOS VLSI Design Introduction to MO VLI esin Lecture : ircuits & Lyout vid Hrris Outline rief History MO Gte esin Pss Trnsistors MO Ltches & Flip-Flops tndrd ell Lyouts tick irms Hrvey Mudd ollee prin lide rief History

More information

Who Is the Crucified? Assembly, SATB Choir, Descant, Keyboard, Guitar, and English Horn or C Instrument

Who Is the Crucified? Assembly, SATB Choir, Descant, Keyboard, Guitar, and English Horn or C Instrument horl Series Kte Bluett Keybord 4 4 Text 2012, Kte Bluett Music 2012, Kevin Keil (ASCAP) Text music publisd by OCP, 5536 NE Hsslo, Portl, OR 97213 All rights reserved *Wn using solo instrument, omit p note

More information

22 May to 10 December Pontefract Train Times

22 May to 10 December Pontefract Train Times 22 My to 10 December 2011 Pontefrct Trin Times Pontefrct Line Timetble (lso incluing Derne Vlley Line) West Yorkshire locl ril services between Lees / Wkefiel n Knottingley re operte by Northern on behlf

More information

Reverse Iterative Deepening for Finite-Horizon MDPs with Large Branching Factors

Reverse Iterative Deepening for Finite-Horizon MDPs with Large Branching Factors Reverse Itertive Deepening for Finite-Horizon MDPs with Lrge Brnching Fctors Andrey Kolobov Peng Di Musm Dniel S. Weld {kolobov, dipeng, musm, weld}@cs.wshington.edu Dept. of Computer Science nd Engineering

More information

find out more at eastcoast.co.uk/2for1 eastcoast.co.uk/welcome

find out more at eastcoast.co.uk/2for1 eastcoast.co.uk/welcome 1 estcost.co.uk estcost.co.uk/welcome fin out more t estcost.co.uk/2for1 Welcome to the new Est Cost timetble for My to December 2011 We re excite to unveil some huge evelopments t Est Cost. We ve been

More information

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja

LOGOMANUAL. guidelines how to use Singing Rock logotype. Version 1.5 English. Lukáš Matěja LOGOMANUAL guidelines how to use Singing Rock logotype In cse of ny questions, contct our grphic designer Lukáš Mtěj +420 775 282 064 luks.mtej@singingrock.cz Version 1.5 English PRIMARY LOGOTYPE Primry

More information

Contents. Thank you for the music page 3 Fernando 9 Waterloo 18

Contents. Thank you for the music page 3 Fernando 9 Waterloo 18 Foreword Contents Thnk you for the music pge Fernndo 9 Wterloo 18 The most successful pop ct ever to emerge from Sweden, ABBA ws originlly sonmed prtly in jest (there ws wellknown Swedish fishcnning cony

More information

SMOKE FRGTORY FOG AITD HAZE GE]'IERATOßS

SMOKE FRGTORY FOG AITD HAZE GE]'IERATOßS SMOKE FRGTORY FOG AITD HAZE GE]'IERATOßS lnstruction mnul Cptin D. & Cptin D. Cse t issue 1 Pge: 2v.15 Cptin D. / Cptin D. Gse Operting lmstructions lntroduction The CAPTAIN D. CASE is very powerful fog

More information

ADC Peripheral in Microcontrollers. Petr Cesak, Jan Fischer, Jaroslav Roztocil

ADC Peripheral in Microcontrollers. Petr Cesak, Jan Fischer, Jaroslav Roztocil ADC Peripheral in s Petr Cesak, Jan Fischer, Jaroslav Roztocil Czech Technical University in Prague, Faculty of Electrical Engineering Technicka 2, CZ-16627 Prague 6, Czech Republic Phone: +420-224 352

More information

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following?

DRAFT. Vocal Music AOS 2 WB 3. Purcell: Music for a While. Section A: Musical contexts. How is this mood achieved through the following? Purcell: Music for While Section A: Musicl contexts Like the Bch Brndenurg Concerto No. 5 in Workook 1, this song y Henry Purcell ws composed during the Broque er. To understnd the music it is helpful

More information

TAP 413-1: Deflecting electron beams in a magnetic field

TAP 413-1: Deflecting electron beams in a magnetic field TAP 413-1: Deflecting electron bems in mgnetic field Circulr control Mgnetic fields re often used to steer bems of chrged prticles, in situtions from teleision tube to lrge-scle prticle ccelertor. The

More information

AI-1204Z-PCI. Features. 10MSPS, 12-bit Analog Input Board for PCI AI-1204Z-PCI 1. Ver.1.04

AI-1204Z-PCI. Features. 10MSPS, 12-bit Analog Input Board for PCI AI-1204Z-PCI 1. Ver.1.04 10MSPS, 12-bit Analog Board for PCI AI-1204Z-PCI * Specifications, color and design of the products are subject to change without notice. This product is a PCI bus-compliant interface board that expands

More information

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs

Mapping Arbitrary Logic Functions into Synchronous Embedded Memories For Area Reduction on FPGAs Mpping Aritrry Logic Functions into Synchronous Emedded Memories For Are Reduction on FPGAs Gordon R. Chiu, Deshnnd P. Singh, Vlvn Mnohrrjh, nd Stephen D. Brown Toronto Technology Center, Alter Corportion

More information

AN425 Interfacing the PCF8584 I 2 C-bus controller to 80C51 family microcontrollers. Philips Semiconductors MICROCONTROLLER PRODUCTS

AN425 Interfacing the PCF8584 I 2 C-bus controller to 80C51 family microcontrollers. Philips Semiconductors MICROCONTROLLER PRODUCTS MICROCONTROLLER PRODUCTS Interfacing the PCF8584 I 2 C-bus controller to 80C51 family microcontrollers April 1990 (Revised: June 1994) Philips Semiconductors DESCRIPTION This application note shows how

More information

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy?

Big Adventures. Why might you like to have an adventure? What kind of adventures might you enjoy? UNIT 7Tourism Ledership Sports Big Adventures Lesson One Before you red Why might you like to hve n dventure? Wht kind of dventures might you enjoy? Wht re these people doing? Would you be frid to try?

More information

ZLAN-86 Ethernet Switch Ethernet Interfaces Reference Design

ZLAN-86 Ethernet Switch Ethernet Interfaces Reference Design Ethernet Switch Ethernet Interfaces Reference Design Contents 1.0 Introduction............................ 1 2.0 Interface Overview....................... 1 2.1 Fast Ethernet......................... 2

More information

CAN THO UNIVERSITY JOURNAL OF SCIENCE INSTRUCTIONS FOR AUTHORS

CAN THO UNIVERSITY JOURNAL OF SCIENCE INSTRUCTIONS FOR AUTHORS CAN THO UNIVERSITY JOURNAL OF SCIENCE INSTRUCTIONS FOR AUTHORS Reserch Articles include Title, Author s nme nd ffilition, Correspondence, Astrct, Introduction, Mterils nd Methods, Results, Discussion,

More information

SUMMER HOMEWORK. English 4 th ESO

SUMMER HOMEWORK. English 4 th ESO SUMMER HOMEWORK English th ESO student: _ clss: techer: school yer: 0-07 school: cmí de mr dte: september 07 UNIT VOCABULARY Complete the life-chnging events with vowels. s e ttl e d o wn ch ng sch l w

More information

Phosphor: Explaining Transitions in the User Interface Using Afterglow Effects

Phosphor: Explaining Transitions in the User Interface Using Afterglow Effects Phosphor: Explining Trnsitions in the User Interfce Using Afterglow Effects Ptrick Budisch, Desney Tn, Mxime Collom, Dn Roins, Ken Hinckley, Mneesh Agrwl, Shengdong Zho, Gonzlo Rmos To cite this version:

More information

Good Evening! Welcome!

Good Evening! Welcome! University of Florida EEL 3701 Spring 2010 Dr Eric M Schwartz Page 1/11 Exam 2 Instructions: Turn off all cell phones, beepers and other noise making devices Show all work on the front of the test papers

More information