Using the NEMA SHADER-Edit

Size: px
Start display at page:

Download "Using the NEMA SHADER-Edit"

Transcription

1 Using the NEMA SHADER-Edit A Comprehensive Overview Version 1.1 February 8, 2018

2 History Version Date Description NemaP mode included Initial Version v1.1 External Confidential 1

3 Disclaimer This document is written in good faith with the intend to assist the readers in the use of the product. Circuit diagrams and other information relating to Think Silicon S.A products are included as a means of illustrating typical applications. Although the information has been checked and is believed to be accurate, no responsibility is assumed for inaccuracies. Information contains in this document is subject to continuous improvements and developments. Think Silicon S.A products are not designed, intended, authorized or warranted for use in any life support or other application where product failure could cause or contribute to personal injury or severe property damage. Any and all such uses without prior written approval of Think Silicon S.A. will be fully at the risk of the customer. Think Silicon S.A. disclaims and excludes any and all warranties, including without limitation any and all implied warranties of merchantability, fitness for a particular purpose, title, and infringement and the like, and any and all warranties arising from any course or dealing or usage of trade. This document may not be copied, reproduced, or transmitted to others in any manner. Nor may any use of information in this document be made, except for the specific purposes for which it is transmitted to the recipient, without the prior written consent of Think Silicon S.A. This specification is subject to change at anytime without notice. Think Silicon S.A. is not responsible for any errors contained herein. In no event shall Think Silicon S.A. be liable for any direct, indirect, incidental, special, punitive, or consequential damages; or for lost of data, profits, savings or revenues of any kind; regardless of the form of action, whether based on contract; tort; negligence of Think Silicon S.A or others; strict liability; breach of warranty; or otherwise; whether or not any remedy of buyers is held to have failed of its essential purpose, and whether or not Think Silicon S.A. has been advised of the possibility of such damages. Copyright Notice No part of this specification may be reproduced in any form or means, without the prior written consent of Think Silicon S.A. Questions or comments may be directed to: Think Silicon S.A Suite B8 Patras Science Park Rion Achaias Greece web: info@think-silicon.com Tel: Fax: v1.1 External Confidential 2

4 Contents 1 Overview 5 2 Execution 6 3 Usage Changing Shader Compilation Mode NEMA t mode NEMA p mode Terminate Application How to use offline ESSL shader compilation from terminal 9 5 Troubleshooting 9 v1.1 External Confidential 3

5 List of Figures 1 NEMA SHADER-Edit interface divided in one radio box and four panels Set toolchain path in NEMA SHADER-Edit Set shader program binary filename in NEMA SHADER-Edit Compiling ESSL shaders Compiling NEMA SL shaders v1.1 External Confidential 4

6 1 Overview NEMA SHADER-Edit is a graphical user interface that eases the executable generation for NEMA p and NEMA t GPUs. It is an easy-to-use, user-friendly vertex and fragment shading editor with an integrated compiler. The current version of this application supports two shading languages: NEMA SL : NEMA Shading Language, where the fragment shader is only covered since the vertex processing stage is not programmable in NEMA p. NEMA SL is a restricted subset of C++ coupled with advanced NEMA p builtin functions responsible for specific GPU operations. ESSL : OpenGL ES Shading Language, version 1.00, where only the vertex and fragment shaders are covered. Developers can easily build, debug and optimize NEMA SL and ESSL shaders without knowing about the internal operation of NEMA GPU s toolchain. This is a very useful path for applications that wish to remain portable by shipping pure source shaders, yet would like to avoid the cost of compiling their shaders at runtime. The editor also reports various statistics as well as includes disassembly functionality that can be further used for debugging purposes. The core interface of the NEMA SHADER-Edit consists of three parts (or one radio box and four panels) as shown in Figure 1: Setting of the NEMA GPU shader compilation mode via the radio box controller. Editing of (left) Vertex and (right) Fragment shaders, located on the upper side of the GUI. Logging of (left) Build and (right) Toolchain information, located on the bottom side of the GUI. Figure 1: NEMA SHADER-Edit interface divided in one radio box and four panels v1.1 External Confidential 5

7 2 Execution NEMA SHADER-Edit can be executed in the following path: $ cd TSi_ host_ usr $ source use_ tsi_ gl_ drivers. sh -- version release $ cd shader_ editor $./ shader_ editor Note that since the NEMA SHADER-Edit runs on top of an OpenGL ES application, it is mandatory to activate the Think Silicon s graphics drivers before executing the tool. Drivers activation sets the operating system environmental variables therefore it is necessary to be issued for every new terminal. To activate the OpenGL software stack without (release) or with (debug) activating driver log tracing, the user has to run: $ cd TSi_ host_ usr $ source use_ tsi_ gl_ drivers. sh -- version release / debug Note that if debug option is selected, it will highly degrade the performance due to the heavy logging. When the application opens for the first time, the user is prompted to set the toolchain path, since the application is available only for x86 platforms. If for example, the path is in /TSi_host_usr folder (see Figure 2). and the path is correct, a certification message will appear in the Info Log panel: " Setting Toolchain path done!!" Otherwise, an error message will appear: " Toolchain path was not set properly, try to set it via Options - > Set Toolchain Path ". In that case, the path can be changed by the user by selecting the Set Toolchain Path option in the Options menu. Figure 2: Set toolchain path in NEMA SHADER-Edit v1.1 External Confidential 6

8 3 Usage 3.1 Changing Shader Compilation Mode First of all, we have to select the target hardware in which the shaders (in either NEMA SL or ESSL format) will be compiled. This can be done through the radio box in the upper side of the GUI as highlighted with the black box in Figure 1. An alternative way is by selecting the Enable NemaP mode or the Enable NemaT mode option in the Options menu. 3.2 NEMA t mode The user can choose the input shader sources by selecting the Open vertex and Open fragment options in the Vertex and Fragment menus respectively. A simple example, that contains one vertex and one fragment shader, is provided inside the TSi_host_usr/shader_editor/Example/NemaT folder to ease the compilation testing usage of NEMA SHADER-Edit. When a shader is selected, the source ESSL code is shown and can be editted in either the Vertex Shader or the Fragmet Shader panel. Note that the name of each selected shader is also displayed above the corresponding panel. Moreover, the user has to define the name of the shader program binary by selecting the Save Program As option in the Program menu. Figure 3: Set shader program binary filename in NEMA SHADER-Edit When the configuration is setup properly, the user can compile the shaders for NEMA GPU by either pressing the Build button or selecting the Build option in the File menu. If no shader compilation errors arise, then the shader program binary is successfully generated which afterwards can be efficiently loaded into any OpenGL ES graphics application. In that case, the Build Log panel will show this message: " Generation of Binary Shader Program example. bin Completed Successfully ". An appropriate message will also appear in the Info Log panel regarding where the graphics acceleration is going to be executed. Hardware graphics acceleration in NEMA GPU depends on the actual shader implementations due to its limited instruction set architecture. In the case of NEMA t GPU hardware acceleration, Info Log panel further offers statistics about the number of required execution cycles and total instructions: " Vertex Shader Info Vertex Instructions : 94 Vertex Execution Cycles : 68 v1.1 External Confidential 7

9 Fragment Shader Info Fragment Instructions : 3 Fragment Execution Cycles : 1" Figure 4 depicts how the application looks like when the NemaT_example.* shaders have been selected and compiled. Note that the these shaders can be found in the Example folder. Figure 4: Compiling ESSL shaders 3.3 NEMA p mode Since the vertex processing stage is fixed, the user can choose only the input fragment shader source by selecting the Open Fragment CPP options in the Fragment menu. The source NEMA SL code is shown and can be editted in the Fragmet Shader panel. The rest functionalities remains the same as above. A set of six different NEMA SL test cases (fragments) can be found in TSi_host_usr/shader_editor/Example/NemaP folder in order to walk through the NEMA SL developer learning curve. Developers can explore new shading results by altering the provided source files, guided by the header file TSi_host_usr/include/nemats/NemaP_builtins.h which contains the NEMA p buildin function declarations. Figure 5 depicts how the application looks like when the example1/test.cpp shader has been selected and compiled. v1.1 External Confidential 8

10 Figure 5: Compiling NEMA SL shaders 3.4 Terminate Application Finally, the NEMA SHADER-Edit application can be closed by pressing the Quit option in the File menu. 4 How to use offline ESSL shader compilation from terminal The offline compiler tool can also be found in the TSi_host_usr/bin folder and works by compiling and linking the given vertex and fragment shaders returning back the final program binary through a commandline interface: $ cd TSi_host_usr / bin If sh.vert and sh.frag correspond to the vertex and fragment ESSL source shaders respectively, then the generated precompiled binary shader program, entitled sh.bin, can be generated by executing this command: $./ tsi_ offline_ shader_ compiler -v sh. vert -f sh. frag -o sh. bin Note that, the BINARY_PROG macro preprocessor in the CMakeLists.txt file has to be used in the CMAKE_C_FLAGS to inform graphics applications. 5 Troubleshooting As mentioned above, NEMA SHADER-Edit will not work properly if the Think Silicon s graphics drivers have not been activated for the current terminal. In that case, reset the configuration setup by deleting the hidden file.path.config and then execute the application as described in Sec. 2. v1.1 External Confidential 9

11 $ cd TSi_ host_ usr / shader_ editor $ rm. path. config $ cd.. $ source use_ tsi_ gl_ drivers. sh -- version release $ cd shader_ editor $./ shader_ editor v1.1 External Confidential 10

CAP1114. Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES PRODUCT PREVIEW

CAP1114. Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES PRODUCT PREVIEW CAP1114 Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES Data Brief General Description The CAP1114, which incorporates SMSC s RightTouch TM1 technology, is a multiple channel Capacitive

More information

EVB-USB2640 Evaluation Board Revision A

EVB-USB2640 Evaluation Board Revision A Copyright 2008 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

AN Migrating the USB97CFDC to the USB97CFDC2

AN Migrating the USB97CFDC to the USB97CFDC2 AN 11.19 Migrating the USB97CFDC to the USB97CFDC2 Preface 1 Audience 2 Overview Application note for migrating a USB97CFDC based design to an updated design using the USB97CFDC2. This application note

More information

EVB-USB2514Q36-BAS, USB2513 and USB Pin QFN Evaluation Board, Revision C User Manual

EVB-USB2514Q36-BAS, USB2513 and USB Pin QFN Evaluation Board, Revision C User Manual EVB-USB2514Q36-BAS, USB2513 and USB2512 36-Pin QFN Evaluation Board, Revision C User Manual Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating

More information

EVB-USB2517 Evaluation Board User Manual (Revision A)

EVB-USB2517 Evaluation Board User Manual (Revision A) EVB-USB2517 Evaluation Board User Manual (Revision A) Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means

More information

LAN9512 Evaluation Board User Manual

LAN9512 Evaluation Board User Manual Copyright 2012 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

EMC2113. RPM-Based Fan Controller with Multiple Temperature Zones & Hardware Thermal Shutdown PRODUCT FEATURES. General Description.

EMC2113. RPM-Based Fan Controller with Multiple Temperature Zones & Hardware Thermal Shutdown PRODUCT FEATURES. General Description. EMC2113 RPM-Based Fan Controller with Multiple Temperature Zones & Hardware Thermal Shutdown PRODUCT FEATURES Data Brief General Description The EMC2113 is an SMBus compliant fan controller. The fan driver

More information

EVB-USB82640 Evaluation Board Revision A User Manual

EVB-USB82640 Evaluation Board Revision A User Manual EVB-USB82640 Evaluation Board Revision A User Manual Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means

More information

APPLICATION NOTE 9.15

APPLICATION NOTE 9.15 APPLICATION NOTE 9.15 U2DP Driver Development Specification Rev. 02/14/2002 80 Arkay Drive Hauppauge, NY 11788 (631) 435-6000 FAX (631) 273-3123 Copyright SMSC 2004. All rights reserved. Circuit diagrams

More information

EVB-USB2514Q48 48-Pin QFN Evaluation Board Revision A1

EVB-USB2514Q48 48-Pin QFN Evaluation Board Revision A1 EVB-USB2514Q48 48-Pin QFN Evaluation Board Revision A1 Copyright 2007 SMSC or its subsidiaries. All rights reserved. The information contained herein is proprietary to SMSC and shall be used solely in

More information

FDC37C6XX SUPER I/O UNIVERSAL DESIGN-IN APPLICATION NOTE

FDC37C6XX SUPER I/O UNIVERSAL DESIGN-IN APPLICATION NOTE APPLICATION NOTE 4.11 FDC37C6XX SUPER I/O UNIVERSAL DESIGN-IN APPLICATION NOTE This note discusses the proper way to lay out a printed circuit board to accept any one of six different chips in SMSC's Super

More information

EVB-USB2250 User Manual Revision B

EVB-USB2250 User Manual Revision B Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

HIGH PERFORMANCE ECP/EPP PRINTER INTERFACE USING THE PPC34C60 PPIC

HIGH PERFORMANCE ECP/EPP PRINTER INTERFACE USING THE PPC34C60 PPIC APPLICATION NOTE 4.17 PRELIMINARY Rev. 1/13/94 HIGH PERFORMANCE ECP/EPP INTERFACE USING THE PPIC NOTE: This application note describes a paper design which has not been confirmed by a hardware implementation.

More information

USB2507. Integrated USB 2.0 Compatible 7-Port Hub PRODUCT FEATURES. Data Brief

USB2507. Integrated USB 2.0 Compatible 7-Port Hub PRODUCT FEATURES. Data Brief USB2507 Integrated USB 2.0 Compatible 7-Port Hub PRODUCT FEATURES Data Brief Integrated USB 2.0 Compatible 7-Port Hub 7 Transaction Translators for highest performance High-Speed (480Mbits/s), Full-Speed

More information

*X13186* Multimedia and Control Networking Technology. MOST Media Oriented Systems Transport. MediaLB Analyzer Hardware Manual

*X13186* Multimedia and Control Networking Technology. MOST Media Oriented Systems Transport. MediaLB Analyzer Hardware Manual Multimedia and Control Networking Technology MediaLB Analyzer MediaLB Monitor USB V1.0.1 3-pin Active-Pod Low Speed V1.0.1 6-pin Active-Pod High Speed V1.0.0 Document Information Version: V2.0.X-2 Date:

More information

For the LAN91C111 TQFP package, the Vdd and AVdd pins are located as follows: Pin #1, #11, #16, #33, #44, #62, #77, #98, #110, #120.

For the LAN91C111 TQFP package, the Vdd and AVdd pins are located as follows: Pin #1, #11, #16, #33, #44, #62, #77, #98, #110, #120. AN 11.2 1 Purpose Current Measurements and Measurement Procedures for the LAN91C111 and LAN91C111 Evaluation Board This application note provides measurements of the current (ICC) consumed by the LAN91C111

More information

PPC34C60 Tips Background, History, Design Issues and Recommendations IEEE 1284 Detailing Interrupt and DMA Considerations By Bob Gross

PPC34C60 Tips Background, History, Design Issues and Recommendations IEEE 1284 Detailing Interrupt and DMA Considerations By Bob Gross APPLICATION NOTE 7.4 PPC34C60 Tips Background, History, Design Issues and Recommendations IEEE 1284 Detailing Interrupt and DMA Considerations By Bob Gross General Background Circa 1992-1993, it became

More information

EVB-USB2514Q36-BAS, USB2513 and USB Pin QFN Evaluation Board User Manual

EVB-USB2514Q36-BAS, USB2513 and USB Pin QFN Evaluation Board User Manual EVB-USB2514Q36-BAS, USB2513 and USB2512 36-Pin QFN Evaluation Board User Manual Copyright 2008 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products

More information

AN USB332x Transceiver Layout Guidelines

AN USB332x Transceiver Layout Guidelines AN 17.19 USB332x Transceiver Layout Guidelines 1 Introduction SMSC s USB332x comes in a 25 ball Wafer-Level Chip-Scale Package (WLCSP) lead-free RoHS compliant package; (1.95 mm X 1.95 mm, 0.4mm pitch

More information

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912)

Offline Shader Compiler. Mali. User Guide. Version: 3.0. Copyright ARM. All rights reserved. ARM DUI 0513B (ID032912) Mali Offline Shader Compiler Version: 3.0 User Guide Copyright 2009-2012 ARM. All rights reserved. ARM DUI 0513B () Mali Offline Shader Compiler User Guide Copyright 2009-2012 ARM. All rights reserved.

More information

DATASHEET. Synchronous Serial Interface (SPI)

DATASHEET. Synchronous Serial Interface (SPI) DATASHEET Synchronous Serial Interface (SPI) Arasan Chip Systems, Inc. 2010 North First Street, Suite #510 San Jose, CA 95131 Ph:408-282-1600 Fx:408-282-7800 www.arasan.com June, 2018 i DISCLAIMER This

More information

EVB-USB2240-IND User Manual Revision B

EVB-USB2240-IND User Manual Revision B Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

Mali Offline Compiler User Guide

Mali Offline Compiler User Guide Mali Offline Compiler 6.0.0 User Guide ARM Limited 2017 Introduction 2 Contents 3 Contents Chapter 1: Introduction... 5 Overview... 6 Installation Package... 6 This Release...6 Chapter 2: Installation...

More information

LAN bit Non-PCI Small Form Factor 10/100 Ethernet Controller with Variable Voltage I/O & HP Auto-MDIX Support PRODUCT FEATURES.

LAN bit Non-PCI Small Form Factor 10/100 Ethernet Controller with Variable Voltage I/O & HP Auto-MDIX Support PRODUCT FEATURES. LAN9220 16-bit Non-PCI Small Form Factor 10/100 Ethernet Controller with Variable Voltage I/O & HP Auto-MDIX Support PRODUCT FEATURES Highlights Efficient architecture with low CPU overhead Easily interfaces

More information

Complete USB2.0 Digital Wireless Audio Dongle

Complete USB2.0 Digital Wireless Audio Dongle DWUSB83 Complete USB2.0 Digital Wireless Audio Dongle PRODUCT FEATURES Data Brief High Quality Audio Up to four stereo audio channels, fully bidirectional, uncompressed audio Low latency

More information

Programmable USB Port Power Controller with Charger Emulation

Programmable USB Port Power Controller with Charger Emulation UCS1002 Programmable USB Port Power Controller with Charger Emulation PRODUCT FEATURES Data Brief General Description The UCS1002 provides a USB port power switch for precise control of up to 2.5 amperes

More information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information

UM PR533 - PCSC Tool. User manual COMPANY PUBLIC. Rev November Document information PR533 - PCSC Tool Document information Info Content Keywords PR533, CCID, PCSC, APDU Abstract This document describes the PCSC Tool software which demonstrates the capabilities of PR533 device. Revision

More information

GPU Offline Shader Compiler. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. ARM DUI 0513A (ID101409)

GPU Offline Shader Compiler. Mali. User Guide. Version: 2.2. Copyright 2009 ARM. All rights reserved. ARM DUI 0513A (ID101409) Mali GPU Offline Shader Compiler Version: 2.2 User Guide Copyright 2009 ARM. All rights reserved. ARM DUI 0513A () Mali GPU Offline Shader Compiler User Guide Copyright 2009 ARM. All rights reserved. Release

More information

Smart Card Bridge to Full-Speed USB, SPI, and UART Interfaces

Smart Card Bridge to Full-Speed USB, SPI, and UART Interfaces SEC00/SEC200 Bridge to Full-Speed USB, SPI, and UART Interfaces PRODUCT FEATURES Data Brief General Description The SEC00 and SEC200 provide a single-chip solution for a bridge to USB, SPI, and UART interfaces.

More information

OneBridge Mobile Groupware 5.0

OneBridge Mobile Groupware 5.0 OneBridge Mobile Groupware 5.0 release overview Extended Systems 5777 North Meeker Avenue Boise, ID 83713 Tel: (800) 235-7576 (208) 322-7800 Fax: (208) 327-5004 Web: www.extendedsystems.com Rev. 1005 Legal

More information

USB2512. USB 2.0 High-Speed 2-Port Hub Controller PRODUCT FEATURES

USB2512. USB 2.0 High-Speed 2-Port Hub Controller PRODUCT FEATURES USB2512 USB 2.0 High-Speed 2-Port Hub Controller PRODUCT FEATURES General Description The SMSC 2-Port Hub is a low power, OEM configurable, STT (Single transaction translator) hub controller IC with 2

More information

QUICK START GUIDE. SMS 2500iX Appliance.

QUICK START GUIDE. SMS 2500iX Appliance. QUICK START GUIDE SMS 2500iX Appliance www.24onlinebilling.com QUICK START GUIDE SMS 25iX Appliance www.24onlinebilling.com 1 DEFAULTS The sales packet of 24online includes following list of contents.

More information

USB Port USB 2.0 Hub Controller PRODUCT FEATURES. Data Brief

USB Port USB 2.0 Hub Controller PRODUCT FEATURES. Data Brief USB2502 2-Port USB 2.0 Hub Controller PRODUCT FEATURES Data Brief Integrated USB 2.0 Compatible 2-Port Hub High-Speed (480Mbits/s), Full-Speed (12Mbits/s) and Low-Speed (1.5Mbits/s) compatible Full power

More information

ORDERING INFORMATION. Order Numbers: COM20019ILJP for 28 pin PLCC package; COM20019I-DZD for 28 pin PLCC lead-free RoHS Compliant package

ORDERING INFORMATION. Order Numbers: COM20019ILJP for 28 pin PLCC package; COM20019I-DZD for 28 pin PLCC lead-free RoHS Compliant package COM20019I Cost Competitive ARCNET (ANSI 878.1) Controller with 2K x 8 On-Chip RAM Product Features New Features: Data Rates up to 312.5 Kbps Programmable Reconfiguration Times 28 Pin PLCC and 48 Pin TQFP

More information

QPP Proprietary Profile Guide

QPP Proprietary Profile Guide Rev. 04 April 2018 Application note Document information Info Content Keywords Proprietary Profile, Server, Client Abstract The Proprietary Profile is used to transfer the raw data between BLE devices.

More information

Purchase Order Management For Magento 1.x

Purchase Order Management For Magento 1.x Purchase Order Management For Magento 1.x User Guide - 9/10/2017 Section 1: Installation: 1) Turn off Magento's Compilation Mode - Check to see if Magento's compilation mode has been enabled. If it has,

More information

UM EEPROM Management of PN746X and PN736X. User manual COMPANY PUBLIC. Rev February Document information

UM EEPROM Management of PN746X and PN736X. User manual COMPANY PUBLIC. Rev February Document information Document information Info Content Keywords Abstract PN7462, PN7362, PN7360; EEPROM This document describes how to manage EEPROM of PN7462 family. Revision history Rev Date Description 1.0 20170202 First

More information

USB3740. High Speed Switch for Mobile and Portable Applications USB3740 PRODUCT FEATURES DATASHEET. USB3740 Block Diagram

USB3740. High Speed Switch for Mobile and Portable Applications USB3740 PRODUCT FEATURES DATASHEET. USB3740 Block Diagram USB3740 High Speed Switch for Mobile and Portable Applications PRODUCT FEATURES High Speed USB Mux for multiplexing the USB lanes between different functions Switch the USB connector between two different

More information

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011 Version: 02.00.2 build 018 Release Date: 23 rd November 2011 Release Date Version 02.00.2 Build 018 23 rd November 2011 Release Information Release Type: General Availability Supported Cyberoam Versions:

More information

This application note is written for a reader that is familiar with Ethernet hardware design.

This application note is written for a reader that is familiar with Ethernet hardware design. AN 14.8 LAN8700/LAN8700I and LAN8187/LAN8187I Ethernet PHY Layout Guidelines 1 Introduction 1.1 Audience 1.2 Overview The LAN8700/LAN8700I and LAN8187/LAN8187I are highly-integrated devices designed for

More information

AN Conversion from USB251x to USB251xB. 1 Introduction. 1.1 References. 1.2 Objective. 1.3 Overview. 2 Package and Pin Layout

AN Conversion from USB251x to USB251xB. 1 Introduction. 1.1 References. 1.2 Objective. 1.3 Overview. 2 Package and Pin Layout AN 20.20 Conversion from USB251x to USB251xB 1 Introduction This application note provides information on how to convert an existing design from the SMSC USB2512/13/14 USB hubs to the new generation SMSC

More information

LAN9303 Evaluation Board User Manual

LAN9303 Evaluation Board User Manual Copyright 2009 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

LAN9513/LAN9513i. USB 2.0 Hub and 10/100 Ethernet Controller PRODUCT FEATURES PRODUCT PREVIEW. Highlights. Target Applications.

LAN9513/LAN9513i. USB 2.0 Hub and 10/100 Ethernet Controller PRODUCT FEATURES PRODUCT PREVIEW. Highlights. Target Applications. LAN9513/LAN9513i 2.0 Hub and 10/100 Ethernet Controller PRODUCT FEATURES Data Brief Highlights Three downstream ports, one upstream port Three integrated downstream 2.0 PHYs One integrated upstream 2.0

More information

Packet Trace Guide. Packet Trace Guide. Technical Note

Packet Trace Guide. Packet Trace Guide. Technical Note Packet Trace Guide Technical Note VERSION: 2.0 UPDATED: JANUARY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

USB3740 Evaluation Board User Manual

USB3740 Evaluation Board User Manual USB0 Evaluation Board User Manual Copyright 0 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical

More information

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 SensView User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-419-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING SENSVIEW 5 2.1

More information

Customer Support: For more information or support, please visit or at Product Release Information...

Customer Support: For more information or support, please visit   or  at Product Release Information... Product Release Information Product: Cyberoam Release Number: 9.3.0 build 5 Release Date: 19th July 2006 Compatible versions: 9.2.0 build 2 Upgrade Mode: Manual 1 Important note Upgrade removes all the

More information

Please visit SMSC's website at for the latest updated documentation.

Please visit SMSC's website at   for the latest updated documentation. AN 10.13 Migrating from the LAN83C180 10/100 PHY to the 10/100 PHY 1 Introduction 1.1 Overview This application note discusses how to migrate from an existing design using the SMSC LAN83C180 PHY to SMSC's

More information

LAN9420/LAN9420i. Single-Chip Ethernet Controller with HP Auto-MDIX Support and PCI Interface PRODUCT FEATURES PRODUCT PREVIEW.

LAN9420/LAN9420i. Single-Chip Ethernet Controller with HP Auto-MDIX Support and PCI Interface PRODUCT FEATURES PRODUCT PREVIEW. LAN9420/LAN9420i Single-Chip Ethernet Controller with HP Auto-MDIX Support and PCI Interface PRODUCT FEATURES Data Brief Highlights Optimized for embedded applications with 32-bit RISC CPUs Integrated

More information

LAN9500/LAN9500i LAN9500A/LAN9500Ai USB 2.0 to 10/100 Ethernet Controller

LAN9500/LAN9500i LAN9500A/LAN9500Ai USB 2.0 to 10/100 Ethernet Controller LAN9500/LAN9500i LAN9500A/LAN9500Ai USB 2.0 to 10/100 PRODUCT FEATURES Highlights Single Chip Hi-Speed USB 2.0 to 10/100 Integrated 10/100 MAC with Full-Duplex Support Integrated 10/100 PHY with HP Auto-MDIX

More information

LAN bit Non-PCI 10/100 Ethernet Controller with HP Auto-MDIX Support PRODUCT FEATURES. Highlights. Target Applications.

LAN bit Non-PCI 10/100 Ethernet Controller with HP Auto-MDIX Support PRODUCT FEATURES. Highlights. Target Applications. LAN9215 16-bit Non-PCI 10/100 Ethernet Controller with HP Auto-MDIX Support PRODUCT FEATURES Highlights Optimized for medium performance applications Efficient architecture with low CPU overhead Easily

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

USB334x. Enhanced Single Supply Hi-Speed USB ULPI Transceiver PRODUCT FEATURES PRODUCT PREVIEW. Applications. Data Brief

USB334x. Enhanced Single Supply Hi-Speed USB ULPI Transceiver PRODUCT FEATURES PRODUCT PREVIEW. Applications. Data Brief 334x Enhanced Single Supply Hi-Speed Transceiver PRODUCT FEATURES -IF Battery Charging 1.2 Specification Compliant Link Power Management (LPM) Specification Compliant ESD protection circuits Up to ±25kV

More information

AN LPC82x Touch Solution Quick Start Guide. Document information. Keywords

AN LPC82x Touch Solution Quick Start Guide. Document information. Keywords Rev. 1.0 22 December 2014 Application Note Document information Info Keywords Abstract Content Capacitive Touch, Touchpad, Sensor, Electrode, Drive/Sensing lines, Dielectric, Overlay panel, Sensitivity,

More information

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 CX Recorder User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-418-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING CXRECORDER

More information

EVB8720 Evaluation Board User Manual

EVB8720 Evaluation Board User Manual Copyright 2011 SMSC or its subsidiaries. All rights reserved. Circuit diagrams and other information relating to SMSC products are included as a means of illustrating typical applications. Consequently,

More information

UM NVT2008PW and NVT2010PW demo boards. Document information

UM NVT2008PW and NVT2010PW demo boards. Document information Rev. 1 March 20 User manual Document information Info Keywords Abstract Content NVT, voltage translator, level translator, level shift, passive voltage translator, passive level translator, passive level

More information

UM NVT2001GM and NVT2002DP demo boards. Document information

UM NVT2001GM and NVT2002DP demo boards. Document information Rev. 7 March 202 User manual Document information Info Keywords Abstract Content NVT, voltage translator, level translator, level shift, passive voltage translator, passive level translator, passive level

More information

User Manual Arabic Name Romanizer Name Geolocation System

User Manual Arabic Name Romanizer Name Geolocation System User Manual Arabic Name Romanizer Name Geolocation System MAPS Ono Lite (Romanizer) Version 2.50 Coverage of this document This document is the full text user manual for MAPSOno Lite (Romanizer) version

More information

AN Over-the-Air top-up with MIFARE DESFire EV2 and MIFARE Plus EV1. Document information

AN Over-the-Air top-up with MIFARE DESFire EV2 and MIFARE Plus EV1. Document information Over-the-Air top-up with MIFARE DESFire EV2 and MIFARE Plus EV1 Document information Information Content Keywords Over-the-Air, OTA, Top-up, MIFARE DESFire EV2, MIFARE Plus EV1, Stored Value, Transport

More information

KBC1122/KBC1122P. Mobile KBC with Super I/O, SFI, ADC and DAC with SMSC SentinelAlert! TM PRODUCT FEATURES. Data Brief

KBC1122/KBC1122P. Mobile KBC with Super I/O, SFI, ADC and DAC with SMSC SentinelAlert! TM PRODUCT FEATURES. Data Brief KBC1122/KBC1122P Mobile KBC with Super I/O, SFI, ADC and DAC with SMSC SentinelAlert! TM PRODUCT FEATURES Data Brief 3.3V Operation with 5V Tolerant Buffers ACPI 1.0b/2.0 and PC99a/PC2001 Compliant LPC

More information

LPC47N217N. 56-Pin Super I/O with LPC Interface PRODUCT FEATURES. Data Brief

LPC47N217N. 56-Pin Super I/O with LPC Interface PRODUCT FEATURES. Data Brief LPC47N217N 56-Pin Super I/O with LPC Interface PRODUCT FEATURES Data Brief 3.3 Volt Operation (5V tolerant) Programmable Wakeup Event Interface (IO_PME# Pin) SMI Support (IO_SMI# Pin) GPIOs (13) Two IRQ

More information

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0 Quick Start Guide BlackBerry Workspaces app for Android Version 5.0 Published: 2017-01-22 SWD-20170122060917401 Contents Overview... 4 Browse workspaces, folders, and files... 5 Create new workspaces,

More information

310 SERIES MEDIUM DUTY CLAMP COATED

310 SERIES MEDIUM DUTY CLAMP COATED Clip Specifications : 1/8" - 4" Code: Part Call Out / F311-002 0.125 0.281 0.468 0.500 0.312 0.031 0.032 0.375 F312-002 0.125 0.343 0.531 0.625 0.375 0.031 0.032 0.437 F313-002 0.125 0.406 0.593 0.750

More information

EVB-USB3300 User Manual

EVB-USB3300 User Manual EVB-USB00 User Manual Copyright 006 SMSC or its subsidiaries. All rights reserved. SMSC is a registered trademark of Standard Microsystems Corporation ( SMSC ). The information contained herein is proprietary

More information

Procedure for Updating LRRS Software and Installing LS-35-R Series License Files

Procedure for Updating LRRS Software and Installing LS-35-R Series License Files Procedure for Updating LRRS Software and Installing LS-35-R Series License Files Document: Editor: T. Rempher Date: 6/5/2014 Release: Rev 2 Lumistar, Inc. 2270 Camino Vida Roble, Suite L Carlsbad, California

More information

SOFTWARE LICENSE LIMITED WARRANTY

SOFTWARE LICENSE LIMITED WARRANTY CYBEROAM INSTALLATION GUIDE VERSION: 5..0..6 IMPORTANT NOTICE Elitecore has supplied this Information believing it to be accurate and reliable at the time of printing, but is presented without warranty

More information

TMC2072. Peripheral Mode CircLink TM Controller PRODUCT FEATURES. Data Brief

TMC2072. Peripheral Mode CircLink TM Controller PRODUCT FEATURES. Data Brief TMC2072 Peripheral Mode CircLink TM Controller PRODUCT FEATURES Data Brief Low Power CMOS, 3.3 Volt Power Supply with 5 Volt Tolerant I/O Supports 8/16-Bit Data Bus Both 86xx and 68hxx Platforms 1K On-chip

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.4 Created: December 17, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

AN NTAG I²C plus memory configuration options. Application note COMPANY PUBLIC. Rev June Document information

AN NTAG I²C plus memory configuration options. Application note COMPANY PUBLIC. Rev June Document information Document information Info Content Keywords NTAG I²C plus, memory configuration, NDEF, read-only, EEPROM Abstract Describe how to configure the NTAG I²C plus in the different use case for read/write, read-only

More information

USB2640i/USB2641i. Industrial Temperature USB 2.0 Flash Media Controller and Hub Combo PRODUCT FEATURES PRODUCT PREVIEW. General Description.

USB2640i/USB2641i. Industrial Temperature USB 2.0 Flash Media Controller and Hub Combo PRODUCT FEATURES PRODUCT PREVIEW. General Description. USB2640i/USB2641i Industrial Temperature USB 2.0 Flash Media Controller and Hub Combo PRODUCT FEATURES General Description The SMSC USB2640i/USB2641i is a USB 2.0 compliant, Hi-Speed hub for USB port expansion

More information

UM User manual for the BGU MHz LNA evaluation board. Document information

UM User manual for the BGU MHz LNA evaluation board. Document information User manual for the BGU7003 868MHz LNA evaluation board Rev.1.0 06 December 2011 User manual Document information Info Content Keywords 868MHz LNA, BGU7003. Application Board ordering info: Abstract This

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

Workshop 4 Installation INSTALL GUIDE. Document Date: February 4 th, Document Revision: 1.1

Workshop 4 Installation INSTALL GUIDE. Document Date: February 4 th, Document Revision: 1.1 INSTALL GUIDE Workshop 4 Installation Document Date: February 4 th, 2013 Document Revision: 1.1 Description This document describes how to install and configure Workshop 4, and how to install the driver

More information

Ludlum Lumic Data Logger Software Manual Version 1.1.xx

Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Contents Introduction... 1 Software License Agreement... 2 Getting Started... 5 Minimum

More information

Product Release Information

Product Release Information Product Release Information Product: Cyberoam Release Number: 9.4.1 build 2 Release Date: 20 th March, 2007 Compatible versions: 9.4.1. build 0 Upgrade: Auto Upgrade Customer Support: For more information

More information

SAM4 Reset Controller (RSTC)

SAM4 Reset Controller (RSTC) APPLICATION NOTE AT06864: SAM4 Reset Controller (RSTC) ASF PROGRAMMERS MANUAL SAM4 Reset Controller (RSTC) This driver for SAM devices provides an interface for the configuration and management of the

More information

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses

GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses GoldSim License Portal A User s Guide for Managing Your GoldSim Licenses Copyright GoldSim Technology Group LLC, 1998-2016. All rights reserved. GoldSim is a registered trademark of GoldSim Technology

More information

STB-CE v Overview. 2 Features. Release notes for STB-CE v What's new in STB-CE v2.5

STB-CE v Overview. 2 Features. Release notes for STB-CE v What's new in STB-CE v2.5 Rev. 3 10 May 2018 Release notes 1 Overview The Freedom Sensor Toolbox-Community Edition (STB-CE) is the visualization and evaluation software in the Sensor Toolbox ecosystem. It enables quick and easy

More information

Relay Board. User Manual. 1.0, Oct 2013

Relay Board. User Manual. 1.0, Oct 2013 Relay Board User Manual 1.0, Oct 2013 This work is licensed under the Creative Commons Attribution-Share Alike 2.5 India License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/in/

More information

Entrust WAP Server Certificate Relying Party Agreement

Entrust WAP Server Certificate Relying Party Agreement Entrust WAP Server Certificate Relying Party Agreement The WAP/WTLS specification v1.1 does not provide a means for certificate revocation checking. The following Relying Party Agreement" provides further

More information

Installing Your Microsoft Access Database (Manual Installation Instructions)

Installing Your Microsoft Access Database (Manual Installation Instructions) Installing Your Microsoft Access Database (Manual Installation Instructions) Installation and Setup Instructions... 1 Single User Setup... 1 Multiple User Setup... 2 Adjusting Microsoft Access 2003 Macro

More information

Issuing Laboratory: Evaluating Laboratory: Jurisdiction: Technical Standard for Testing: Software Supplier: Submitting Party: Product Tested:

Issuing Laboratory: Evaluating Laboratory: Jurisdiction: Technical Standard for Testing: Software Supplier: Submitting Party: Product Tested: Issuing Laboratory: Evaluating Laboratory: GLI Europe BV GLI Europe B.V. Jurisdiction: Technical Standard for Testing: Software Supplier: Submitting Party: Product Tested: Malta Online Remote Gaming Regulations,

More information

Instruction Manual. AP-SoftPrint. Multiwave 3000/ Multiwave ECO and Synthos 3000 Software v2.5

Instruction Manual. AP-SoftPrint. Multiwave 3000/ Multiwave ECO and Synthos 3000 Software v2.5 Instruction Manual AP-SoftPrint Multiwave 3000/ Multiwave ECO and Synthos 3000 Software v2.5 Instruction Manual AP-SoftPrint Multiwave 3000/ Multiwave ECO and Synthos 3000 Software v2.5 Anton Paar GmbH

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

Hyper-V - Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide

Hyper-V - Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide Virtual LoadMaster for Microsoft Hyper-V on Windows Server 2012, 2012 R2 and Windows 8 Installation Guide VERSION: 5.0 UPDATED: JANUARY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc..

More information

XS/SC26-2 Safety Controller Quick Start Guide

XS/SC26-2 Safety Controller Quick Start Guide XS/SC26-2 Safety Controller Quick Start Guide About this Guide This guide is designed to help you create a sample configuration for the XS/SC26-2 Safety Controller using the XS26-2 Expandable Safety Controller

More information

ADN. System Installer. Instruction manual

ADN. System Installer. Instruction manual ADN System Installer Instruction manual Content Content Installation requirements... 4 Selecting updates... 4 ADN System Update... 5 Establishing the connection... 5 Overview of the update stage window...

More information

SonicWALL CDP 2.1 Agent Tool User's Guide

SonicWALL CDP 2.1 Agent Tool User's Guide COMPREHENSIVE INTERNET SECURITY b SonicWALL CDP Series Appliances SonicWALL CDP 2.1 Agent Tool User's Guide SonicWALL CDP Agent Tool User s Guide Version 2.0 SonicWALL, Inc. 1143 Borregas Avenue Sunnyvale,

More information

SIO1000. Super I/O with LPC Interface with FIR and Consumer IR Support PRODUCT FEATURES. Data Brief

SIO1000. Super I/O with LPC Interface with FIR and Consumer IR Support PRODUCT FEATURES. Data Brief SIO1000 Super I/O with LPC Interface with FIR and Consumer IR Support PRODUCT FEATURES Data Brief 3.3 Volt Operation (5V tolerant) Programmable Wakeup Event Interface (IO_PME# Pin) SMI Support (IO_SMI#

More information

MSP LevelSoft USER GUIDE

MSP LevelSoft USER GUIDE MSP LevelSoft USER GUIDE Monitoring Solution Providers Pte Ltd 33, Ubi Avenue 3, #05-31 Vertex, Singapore 408868 Tel: (65) 6747 9766 Fax: (65) 6458 0824 Sales: sales@mspsystem.com DISCLAIMER This document

More information

AN LAN9xxx Series Migration

AN LAN9xxx Series Migration AN 24.16 LAN9xxx Series Migration 1 Introduction This application note details the differences one should be aware of when migrating from older to newer generation SMSC Ethernet Controllers. The discussion

More information

PCMCIA Flash Card User Guide

PCMCIA Flash Card User Guide R R PCMCIA Flash Card User Guide For the CoreBuilder 3500 System Introduction The CoreBuilder 3500 PCMCIA Flash Card is a 20 MB flash card that you can use to save your system software. When you have saved

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

User Manual. Date Aug 30, Enertrax DAS Download Client

User Manual. Date Aug 30, Enertrax DAS Download Client EnertraxDL - DAS Download Client User Manual Date Aug 30, 2004 Page 1 Copyright Information Copyright 2004, Obvius Holdings, LLC. All rights reserved. Redistribution and use in source and binary forms,

More information

XS/SC26-2 Safety Controller. Quick Start Guide

XS/SC26-2 Safety Controller. Quick Start Guide XS/SC26-2 Safety Controller Quick Start Guide Original Instructions 174869 Rev. C 16 January 2015 1 THIS PAGE IS INTENTIONALLY LEFT BLANK ABOUT THIS GUIDE This guide is designed to help you create a sample

More information

How to use the NTAG I²C plus for bidirectional communication. Rev June

How to use the NTAG I²C plus for bidirectional communication. Rev June How to use the NTAG I²C plus for bidirectional communication Document information Info Content Keywords NTAG I 2 C plus, pass-through mode, bidirectional communication, SRAM Abstract This document describes

More information

Made in U.S.A. 1

Made in U.S.A.   1 Made in U.S.A. www.smartavi.com 1 1-800-AVI-2131 TABLE OF CONTENTS INTRODUCTION & FEATURES 2 Getting Started and Installation 3 Start-Up 4 Managing Streams and Environment 5 Frequently Asked Questions

More information

Microcat Authorisation Server (MAS ) User Guide

Microcat Authorisation Server (MAS ) User Guide Microcat Authorisation Server (MAS ) User Guide Contents Introduction... 2 Install Microcat Authorisation Server (MAS)... 3 Configure MAS... 4 License Options... 4 Internet Options... 5 Licence Manager...

More information

SOFTWARE LICENSE LIMITED WARRANTY

SOFTWARE LICENSE LIMITED WARRANTY ANALYTICAL TOOL GUIDE VERSION: 5..0..6 IMPORTANT NOTICE Elitecore has supplied this Information believing it to be accurate and reliable at the time of printing, but is presented without warranty of any

More information