Quickstart. with F&S Development Machine Fedora 23. Version 1.2 ( )

Size: px
Start display at page:

Download "Quickstart. with F&S Development Machine Fedora 23. Version 1.2 ( )"

Transcription

1 Quickstart with F&S Development Machine Fedora 23 Version 1.2 ( ) F&S Elektronik Systeme GmbH Untere Waldplätze 23 D Stuttgart Germany Phone: +49(0) Fax: +49(0)

2 Table of Contents 1 Welcome 1 2 Import the Appliance 2 3 Using the Virtual Machine U-Boot Login Directory Structure TFTP Server NFS Server Keyboard Layout Guest Addition Compile in just 3 steps Buildroot, Kernel, Device Tree U-Boot... 8 Qt Development Introduction Create a Root File System SSH Settings in Qt Creator Running the Application Debugging Demo Application U-Boot Settings...13 Appendix 14 List of Figures...14 List of Tables...14 Listings Important Notice...15

3 Welcome 1 Welcome Hello and Welcome to F&S Development Machine Fedora 23! What s it all about? F&S Development Machine Fedora 23 is a VirtualBox Appliance based on Fedora 23 provided by F&S. It contains the installed Board Support Packages for fsimx6, fsimx6sx and fsimx6ul. The F&S toolchain is installed, the source code is extracted and ready to run. System packages that are needed are installed too. Besides that it contains a configured environment for Qt Development. Qt Creator is installed with a cross-compile/debug kit using the F&S toolchain and a configured deployment strategy. Why should I use it? Because it saves time. A lot of configuration is already done. Compilation has been tested and is working out of the box. Missing packages are installed etc.. Just a few points that belong to your decision can t be done beforehand. For example if you want to have your favorite IDE. By default Qt Creator, vim, emacs, and gedit are preinstalled. Besides that we try to keep the image as small as possible. When should I not use it? There are just two cases not to use this virtual machine. First when you are going for a native development machine. Second when you absolutely want to go with your favorite distribution and it s not Fedora. 1

4 Import the Appliance 2 Import the Appliance Let s import our new virtual machine. If you haven t downloaded yet log in at our website and download F_S Development Machine - Fedora 23 V1.2.ova. Open your VirtualBox Manager and click: File Import Appliance Figure 1: Import the Appliance Select your downloaded F_S Development Machine - Fedora 23 V1.2.ova file in the dialog and click next. 2

5 Import the Appliance Figure 2: Choose the *.ova file When you have done this you can see all the details of the virtual machine like name, version and the hardware configuration. First check if the hardware settings for CPU and RAM correspond to your needs and to the performance of your host machine. Second you can adjust the name if you have imported an appliance with this name before or if you want to use another name. 3

6 Import the Appliance Figure 3: Adjust appliance settings Now there is nothing left except for clicking on Import. Depending on your machine it will take about 10 minutes. 4

7 Using the Virtual Machine 3 Using the Virtual Machine 3.1 U-Boot After importing start your virtual machine by selecting it on the left and clicking on Show. Figure 4: Boot your VM 3.2 Login After boot you will be asked for the login. Use the user developer and log in with password developer. Figure 5: Login in with password developer 5

8 Using the Virtual Machine 3.3 Directory Structure The fsimx6, fsimx6sx and fsimx6ul releases are located in the home directory of developer. There you will find, documentation, binaries, source code etc.. The source code is extracted to a folder called build. Links to the releases are on the desktop too. If you want to build a root file system on imx6 go to /home/developer/fsimx6v3.0/build/buildroot fsimx6-v3.0. The kernel should also be build from this directory via Buildroot not in the separate linux directory. Handling of kernel modules is much easier when compiling via Buildroot. In the home directory there is a folder buildroot_dl_packages. All packages downloaded by Buildroot are stored there. When providing the virtual machine all packages that are needed for the default configuration have been downloaded already. 6

9 Using the Virtual Machine 3.4 TFTP Server There is a TFTP Server that starts automatically when booting. Simply lay your files in the /tftpboot/ folder. 3.5 NFS Server An NFS Server is starting automatically when booting. It uses the directories /download and /rootfs. You can put your files there or mount a root file system image as loop back device. Please consult the First Steps manual for detailed information. 3.6 Keyboard Layout You can change your keyboard layout in the top panel on the right. By default it says en here. 3.7 Guest Addition The Guest Addition is already installed on the virtual machine. Features like shared folder or a shared clipboard can be activated in the settings when the virtual machine is not running. 3.8 Compile in just 3 steps What about compiling a kernel and root file system or U-Boot for your module in just 3 steps? Here is how it is done: Buildroot, Kernel, Device Tree 1. Open a terminal by clicking the terminal icon in the top panel. 2. Change directory to the Buildroot directory for your desired processor architecture. E.g. for imx6ul we type: cd fsimx6ul-v2.0/build/buildroot fsimx6ul-v2.0/ 3. Now we will create a.config (e.g. standard defconfig) and start the compilation. The steps in brackets are optional: make fsimx6ul_std_defconfig (make menuconfig) (make linux-menuconfig) make //apply standard defconfig for fsimx6ul //customize Buildroot configuration //customize kernel configuration //build 7

10 Using the Virtual Machine U-Boot 1. Open a terminal by clicking the terminal icon in the top panel. 2. Change directory to the U-Boot directory for your desired processor architecture. E.g for imx6ul we type: cd fsimx6ul-v2.0/build/u-boot fsimx6ul-v2.0/ 3. Now we will create a.config and start the compilation: make fsimx6ul_config make 8 //apply config for fsimx6ul //build

11 Qt Development 4 Qt Development 4.1 Introduction The virtual machine comes with a preconfigured Qt Creator environment. First you ll find a cross-compile/debug kit based on the F&S toolchain. It is called FS Cross Compile Kit for ARM. Second there is a project with a small demo application called QT_Test_App using the preconfigured environment. Nevertheless a few things have to be configured: A root file system prepared for debugging configuration on that root file system Paths and addresses in Qt Creator The Explanation in this chapter is more general. If there are some basics that are not faced here and are not clear please have a look at the First Steps documentation. 4.2 Create a Root File System At the moment there is just a qt5_defconfig for fsimx6. This will change in the next release. To give you an idea our qt5_defconfig contains lots of qt5 packages and no XServer. This is important because Qt doesn t like to have an XServer next to it. For remote debugging a few additional packages need to be activated: Target packages -> Development Tools -> ctest (activates cmake) Target packages -> Interpreter languages and scripting -> python Target packages -> Debugging, profiling and benchmark > gdb -> full debugger Target packages -> Debugging, profiling and benchmark > gdb -> Python support (Toolchain -> Build Cross gdb for the host -> Python support After that we have to reconfigure the host-gdb package to face the python changes: make host-gdb-reconfigure Otherwise it will say, that no python support is available. After compiling we can write the rootfs image to the module. 9

12 Qt Development 4.3 SSH SSH is needed for deployment and remote debugging. In this example we will setup ssh with a simple configuration using the root user. Make sure that the date is set correctly on your module otherwise we will get trouble with certificates (e.g type: date " :50"). Here is what we do: udhcpc (e.g. got ) mount -o remount,rw / passwd (set password root for user root) vi /etc/ssh/sshd_config Port 22 AdressFamily any ListenAddress PermitRootLogin yes A more detailed explanation: Fetch an ip address. Mount the root partition read/write able. That is important for deployment later on too. Set a root password. In Qt Creator it has been set to root. In the next step edit sshd_config e.g. with vi. The settings written below the vi command must be activated (no # at the beginning of the ine) or initially written by yourself. Now we can start the server: /etc/init.d/s50sshd start And test it from the computer with: ssh root@ Settings in Qt Creator Start Qt Creator and open QT_Test_App. This project was configured for fsimx6 platform so we need to correct some paths. Additionally we need to check network settings and ssh connection. First make sure that you have already build your root file system because it contains tools we need. Click on Tools Options On the left there is a tab called Devices. The configured device represents the F&S module. Check the connection settings e.g. IP address and user name / password that will be used for the SSH connection. With click on Test Qt Creator will try to establish an ssh connection. It must show: Connecting to host... Checking kernel version... Linux F+S armv7l 10

13 Qt Development Checking if specified ports are available... All specified ports are available. Device test finished successfully. Now click on Build & Run on the left. Go through the tabs Cmake, Debuggers, Qt Versions and Kit. In every tab we need to check and maybe adjust the paths of the manually added tools. Mostly they are labeled with...for ARM. The targets of the paths must exist (root file system was build) and point to the correct platform. It can happen that you open the QT_Test_App project the first time and it shows an error: Figure 6: First start of QT_Test_App This is the case when the root file system hasn t been build. The project expects an available qmake tool as the project file says but can t find it. Close Qt Creator, build a root file system and open the project again. 11

14 Qt Development 4.5 Running the Application After these steps we can run the application. The following steps should happen: The application compiles It is copied due to the custom deployment strategy to /tftpboot/ Qt Creator starts an ssh connection and downloads the binary via TFTP to the board. The QT_Test_App will be started on the module. It shows an empty window on a connected display. 4.6 Debugging By clicking on the debugging symbol Qt Creator starts a gdbserver on the module via ssh and establishes a connection. Figure 7: Debugging with Qt Creator 4.7 Demo Application If you want to create your own application later on there is one important detail. Qt Creator must know that it should deploy a binary to the module and where it should be deployed. Therefore you need to tell this in the Qt Creator Project file (*.pro). The following lines had been added in the *.pro file for QT_Test_App: linux-* { target.path = /root INSTALLS += target } 12

15 Qt Development 4.8 U-Boot Settings To keep the configuration effort small after a reboot settings like static IP address or an rw mount of the root file system can be set in U-Boot. 13

16 Appendix 5 Appendix List of Figures Figure 1: Import the Appliance...2 Figure 2: Choose the *.ova file...3 Figure 3: Adjust appliance settings...4 Figure 4: Boot your VM... 5 Figure 5: Login in with password developer...5 Figure 6: First start of QT_Test_App...11 Figure 7: Debugging with Qt Creator...12 List of Tables Listings 14

17 Appendix Important Notice The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication. F&S Elektronik Systeme assumes no responsibility, however, for possible errors or omissions, or for any consequences resulting from the use of the information contained in this documentation. F&S Elektronik Systeme reserves the right to make changes in its products or product specifications or product documentation with the intent to improve function or design at any time and without notice and is not required to update this documentation to reflect such changes. F&S Elektronik Systeme makes no warranty or guarantee regarding the suitability of its products for any particular purpose, nor does F&S Elektronik Systeme assume any liability arising out of the documentation or use of any product and specifically disclaims any and all liability, including without limitation any consequential or incidental damages. Products are not designed, intended, or authorised for use as components in systems intended for applications intended to support or sustain life, or for any other application in which the failure of the product from F&S Elektronik Systeme could create a situation where personal injury or death may occur. Should the Buyer purchase or use a F&S Elektronik Systeme product for any such unintended or unauthorised application, the Buyer shall indemnify and hold F&S Elektronik Systeme and its officers, employees, subsidiaries, affiliates, and distributors harmless against all claims, costs, damages, expenses, and reasonable attorney fees arising out of, either directly or indirectly, any claim of personal injury or death that may be associated with such unintended or unauthorised use, even if such claim alleges that F&S Elektronik Systeme was negligent regarding the design or manufacture of said product. 15

F&S Introduction to QT5

F&S Introduction to QT5 F&S Introduction to QT5 Debugging an Application Version 1.2 (2018-06-14) F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Germany Phone: +49(0)711-123722-0 Fax: +49(0)711-123722-99 About

More information

F&S Introduction to Eclipse

F&S Introduction to Eclipse F&S Introduction to Eclipse Debugging an Application Version 1.1 (2018-04-06) F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Germany Phone: +49(0)711-123722-0 Fax: +49(0)711-123722-99

More information

F&S Documentation User Tool

F&S Documentation User Tool F&S Documentation User Tool Documentation for the User Tool developed by F&S Elektronik Systeme Version 1.0 (2017-02-28) F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Germany Phone:

More information

NetDCU10. First Steps. Version 1.00 Date 05 May by F & S Elektronik Systeme GmbH 2007

NetDCU10. First Steps. Version 1.00 Date 05 May by F & S Elektronik Systeme GmbH 2007 NetDCU10 First Steps Version 1.00 Date 05 May 2007 by F & S Elektronik Systeme GmbH 2007 F & S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Phone.: (+49)(0)711/1237220 Fax: (+49)(0)711/12372299

More information

Hardware Documentation

Hardware Documentation Hardware Documentation for JTAG Debug Adapter Version 1.0 2014-12-02 F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Fon: +49(0)711-123722-0 Fax: +49(0)711 123722-99 History Date V Platform

More information

NOVPEK NetLeap User Guide

NOVPEK NetLeap User Guide NOVPEK NetLeap User Guide Document Number: 001-124-04 Rev. 1.0 1/2017 Property of NovTech, Inc. 2016. All Rights Reserved Contact Information: Home Page: Company: www.novtech.com Modules: www.novsom.com/#/products1/

More information

for ColdFire Architectures V7.2 Quick Start

for ColdFire Architectures V7.2 Quick Start for ColdFire Architectures V7.2 Quick Start CodeWarrior Development Studio for ColdFire Architectures V7.2 Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space 1 GHz Pentium compatible

More information

Boot Screen. NetDCU, PicoMOD, PicoCOM, efus, QBliss and armstone with Windwos Embedded CE Windows Embedded Compact. Version 1.

Boot Screen. NetDCU, PicoMOD, PicoCOM, efus, QBliss and armstone with Windwos Embedded CE Windows Embedded Compact. Version 1. Boot Screen NetDCU, PicoMOD, PicoCOM, efus, QBliss and armstone with Windwos Embedded CE Windows Embedded Compact Version 1.4 2017-07-04 F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart

More information

NovTech User Guide Chameleon96

NovTech User Guide Chameleon96 NovTech User Guide Chameleon96 Document Name: User Guide Document Number: 001-127-04-05-01 Rev. 1.1 10/2017 Property of NovTech, Inc. 2017. All Rights Reserved Contact Information: Home Page: Company:

More information

Controller Continuum. for Microcontrollers V6.3. Quick Start

Controller Continuum. for Microcontrollers V6.3. Quick Start Controller Continuum for Microcontrollers V6.3 Quick Start CodeWarrior Development Studio for Microcontrollers V6.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel

More information

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition SYSTEM REQUIREMENTS Hardware Operating System Disk Space Intel Pentium 4 processor, 2 GHz or faster,

More information

CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200

CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200 CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200 MHz Pentium II processor or AMD-K6 class processor,

More information

for StarCore DSP Architectures Quick Start for the Windows Edition

for StarCore DSP Architectures Quick Start for the Windows Edition for StarCore DSP Architectures Quick Start for the Windows Edition CodeWarrior Development Studio for StarCore DSP Architectures Quick Start for the Windows Edition SYSTEM REQUIREMENTS Hardware Operating

More information

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start CodeWarrior Development Studio for MPC55xx/MPC56xx Microcontrollers, version 2.xx Quick Start SYSTEM REQUIREMENTS Hardware Operating System

More information

Non-Windows Work Flow

Non-Windows Work Flow Overview This document details the recommended flow for getting started with the RSPs on a non-windows environment. Note that different flavours of non-windows platforms may have specific issues or requirements.

More information

SML40-CH04 Chassis CWDM Passive 4 Slot Rack

SML40-CH04 Chassis CWDM Passive 4 Slot Rack SML40-CH04 Chassis CWDM Passive 4 Slot Rack The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication. CTC Union Technologies assumes

More information

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core,

More information

CodeWarrior Development Tools mwclearcase Plug-in User s Guide

CodeWarrior Development Tools mwclearcase Plug-in User s Guide CodeWarrior Development Tools mwclearcase Plug-in User s Guide Revised: 29 January 2008 Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. CodeWarrior is a trademark or registered

More information

CodeWarrior Development Studio

CodeWarrior Development Studio CodeWarrior Development Studio for StarCore and SDMA Architectures Quick Start for Windows Operating Systems and Embedded Cross Trigger This Quick Start explains how to set up a sample project to use the

More information

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space Windows OS: PC with 1 GHz Intel Pentium compatible

More information

VortiQa Enterprise Quick Start Guide

VortiQa Enterprise Quick Start Guide Freescale Semiconductor Document Number: VQSEQSG Quick Start Guide Rev. 0, 06/2009 VortiQa Enterprise Quick Start Guide 1 Introduction This document describes how to set up and install the VortiQa software

More information

Component Development Environment Installation Guide

Component Development Environment Installation Guide Freescale Semiconductor Document Number: PEXCDEINSTALLUG Rev. 1, 03/2012 Component Development Environment Installation Guide 1. Introduction The Component Development Environment (CDE) is available as

More information

Display Modules (DL-DM) Application Developer's Guide

Display Modules (DL-DM) Application Developer's Guide Display Modules (DL-DM) Application Developer's Guide PART NUMBER: 101198 VERSION: 3.0 P Page 1 of 11 Revision Status Revision Date Part Number Description 1.0 2011-08-31 DL-DM700-DGAPPL Initial release

More information

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Software Disk Space Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core, AMD Athlon

More information

Programming and Evaluation Tool for Serial EEPROMs

Programming and Evaluation Tool for Serial EEPROMs EasyPro 3.2 Evaluation Board User's Manual EVAL BOARD USER S MANUAL Programming and Evaluation Tool for Serial EEPROMs What is EasyPRO? EasyPRO is an easy-to-use, software-driven device programmer that

More information

SDR API Linux Installation

SDR API Linux Installation Mirics Limited. Applications Revision History Revision Release Date: Reason for Change: Originator 1.0 15 th May 2014 Pre-Release 0.0.1 APC 1.1 3 rd August 2014 Update for 1.1 build APC 1.2 28 th May 2015

More information

Model-Based Design Toolbox

Model-Based Design Toolbox Model-Based Design Toolbox Quick-Start An Embedded Target for the S32K1xx Family of Processors Version 3.0.0 Target Based Automatic Code Generation Tools For MATLAB /Simulink /Stateflow Models working

More information

2005: 0.5 PQ-MDS-PCIEXP

2005: 0.5 PQ-MDS-PCIEXP HW Getting Started Guide PQ-MDS-PCIEXP Adaptor December 2005: Rev 0.5 PQ-MDS-PCIEXP Adaptor HW Getting Started Guide Step 1:Check HW kit contents 1.PQ-MDS-PCIEXP Adaptor 2.PIB (Platform I/O Board) to PCIEXP

More information

Application Note. I²C Interface for Digital CO2 Measurement Module

Application Note. I²C Interface for Digital CO2 Measurement Module APPLICATION NOTE AN1804-1 Application Note I²C Interface for Digital CO2 Measurement Module Rev. 1.0 04/2018 Relevant for: This application note applies to EE894 Introduction: EE894 supports the standard

More information

Suite56 Command Converter Server User s Guide

Suite56 Command Converter Server User s Guide nc. Suite56 Command Converter Server User s Guide S56CCSERVER/D Rev. 1.0, 10/1999 nc. Suite56 and MFAX are a trademarks of Motorola, Inc. This document contains information on a new product. Specifications

More information

Symphony SoundBite: Quick Start with Symphony Studio. Installation and Configuration

Symphony SoundBite: Quick Start with Symphony Studio. Installation and Configuration Symphony SoundBite: Quick Start with Symphony Studio Installation and Configuration Document Number: DSPB56371UGQS Rev. 2 September 2008 How to Reach Us: Home Page: www.freescale.com E-mail: support@freescale.com

More information

The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable

The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable USB DEBUG ADAPTER USER S GUIDE 1. Contents The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable 2. USB Debug Adapter Specifications

More information

Technical support for MCUez development tools is available through your regional. For More Information On This Product, Go to:

Technical support for MCUez development tools is available through your regional. For More Information On This Product, Go to: Mfax is a trademark of Motorola, Inc. How to reach us: USA/EUROPE/Locations Not Listed: Motorola Literature Distribution; P.O. Box 5405, Denver, Colorado 80217, 1 800 441 2447 or 1-303-675-2140. Customer

More information

PCB Layout Guidelines for the MC1321x

PCB Layout Guidelines for the MC1321x Freescale Semiconductor Application Note Document Number: AN3149 Rev. 0.0, 03/2006 PCB Layout Guidelines for the MC1321x 1 Introduction This application note describes Printed Circuit Board (PCB) footprint

More information

Shooter Make Ready. SIRT OneShot Installation INNOVATIVE DRY FIRE

Shooter Make Ready. SIRT OneShot Installation INNOVATIVE DRY FIRE Shooter Make Ready SIRT OneShot Installation INNOVATIVE DRY FIRE TRAINING SIRT Laser Training Pistol A laser-based firearm simulator is the ideal tool for safe dry fire practice anywhere you want to train.

More information

Upgrade the Solution With No Changes 2 Upgrade the Solution With No Changes If a Codebase does not contain updates to its properties, it is possible t

Upgrade the Solution With No Changes 2 Upgrade the Solution With No Changes If a Codebase does not contain updates to its properties, it is possible t Freescale Semiconductor Application Note Document Number: AN3819 Rev. 0.0, 02/2009 Methods for Upgrading Freescale BeeStack Codebases 1 Introduction This note describes how to upgrade an existing Freescale

More information

Using the Intel VTune Amplifier 2013 on Embedded Platforms

Using the Intel VTune Amplifier 2013 on Embedded Platforms Using the Intel VTune Amplifier 2013 on Embedded Platforms Introduction This guide explains the usage of the Intel VTune Amplifier for performance and power analysis on embedded devices. Overview VTune

More information

IEXT224-4PH-L IEXT224-4PH-R Long Reach POE Extenders

IEXT224-4PH-L IEXT224-4PH-R Long Reach POE Extenders IEXT224-4PH-L IEXT224-4PH-R Long Reach POE Extenders 1 LEGAL The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication. CTC Union

More information

AN104 I NTEGRATING KEIL 8051 TOOLS INTO THE SILICON LABS IDE. 4. Configure the Tool Chain Integration Dialog. 1. Introduction. 2.

AN104 I NTEGRATING KEIL 8051 TOOLS INTO THE SILICON LABS IDE. 4. Configure the Tool Chain Integration Dialog. 1. Introduction. 2. I NTEGRATING KEIL 8051 TOOLS INTO THE SILICON LABS IDE 1. Introduction This application note describes how to integrate the Keil 8051 Tools into the Silicon Laboratories IDE (Integrated Development Environment).

More information

Electrode Graphing Tool IIC Driver Errata Microcontroller Division

Electrode Graphing Tool IIC Driver Errata Microcontroller Division Freescale Semiconductor User Guide Addendum TSSEGTUGAD Rev. 1, 03/2010 Electrode Graphing Tool IIC Driver Errata by: Microcontroller Division This errata document describes corrections to the Electrode

More information

ToolStick-EK TOOLSTICK USER S GUIDE. 1. Kit Contents. 2. ToolStick Overview. Green and Red LEDs. C8051F321 provides USB debug interface.

ToolStick-EK TOOLSTICK USER S GUIDE. 1. Kit Contents. 2. ToolStick Overview. Green and Red LEDs. C8051F321 provides USB debug interface. TOOLSTICK USER S GUIDE 1. Kit Contents The ToolStick kit contains the following items: ToolStick Silicon Laboratories Evaluation Kit IDE and Product Information CD-ROM. CD content includes: Silicon Laboratories

More information

Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A

Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A nc. Microprocessor and Memory Technologies Group Errata Number: E2 Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A February 5, 1997 1. Failures bursting to EDO DRAM.

More information

Software Defined Radio API Release Notes

Software Defined Radio API Release Notes Software Defined Radio API Release Notes SDRplay Limited. Software Defined Radio API Release Notes Applications Revision History Revision Release Date: Reason for Change: Originator 1.0 03/Jun/2013 First

More information

Vision Toolbox for MATLAB

Vision Toolbox for MATLAB Vision Toolbox for MATLAB Release Notes Embedded Target for the S32V234 Family of Automotive Vision Processors Version 2018.R1.RFP 1-1 Summary 1 What is New... 1-3 2 Vision Toolbox Features... 2-6 2.1

More information

Keil uvision 4 Kinetis Support for Freescale MQX RTOS Release Notes

Keil uvision 4 Kinetis Support for Freescale MQX RTOS Release Notes Keil uvision 4 Kinetis Support for Freescale MQX RTOS 3.7.0 Release Notes PRODUCT: Keil uvision 4 Kinetis Support for Freescale MQX RTOS 3.7.0 PRODUCT VERSION: 1.0 DESCRIPTION: Adding support for Keil

More information

esata_pcie PCI-Express SATAII host adapter with 1x esata & 1x SATA connector esata_pcie2 PCI-Express SATAII host adapter with 2x esata connectors

esata_pcie PCI-Express SATAII host adapter with 1x esata & 1x SATA connector esata_pcie2 PCI-Express SATAII host adapter with 2x esata connectors esata_pcie PCI-Express SATAII host adapter with 1x esata & 1x SATA connector esata_pcie2 PCI-Express SATAII host adapter with 2x esata connectors User s Guide DATOptic Inc reserves the right to make changes

More information

Converting Earlier Versions of CodeWarrior for StarCore DSPs Projects to Version

Converting Earlier Versions of CodeWarrior for StarCore DSPs Projects to Version Freescale Semiconductor Document Number: AN4253 Application Note Rev. 1, 01/2011 Converting Earlier Versions of CodeWarrior for StarCore DSPs Projects to Version 10.1.8 by DevTech Customer Engineering

More information

Using the PowerQUICC II Auto-Load Feature

Using the PowerQUICC II Auto-Load Feature Freescale Semiconductor Application Note Document Number: AN3352 Rev. 0, 01/2007 Using the PowerQUICC II Auto-Load Feature by David Smith/Patrick Billings Field Application Engineering/DSD Applications

More information

Model Based Development Toolbox MagniV for S12ZVC Family of Processors

Model Based Development Toolbox MagniV for S12ZVC Family of Processors Freescale Semiconductor Release Notes Document Number: MBDTB-ZVC-RN Model Based Development Toolbox MagniV for S12ZVC Family of Processors Version 1.0.0 Freescale Semiconductor, Inc. 1. Revision History

More information

CodeWarrior Kernel-Aware Debug API

CodeWarrior Kernel-Aware Debug API CodeWarrior Kernel-Aware Debug API Revised: 17 October 2006 Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. CodeWarrior is a trademark or registered trademark of Freescale

More information

USB Bootloader GUI User s Guide

USB Bootloader GUI User s Guide Freescale Semiconductor User s Guide Document Number: MC9S08JS16UG Rev. 0, 10/2008 USB Bootloader GUI User s Guide by: Derek Liu Applications Engineering China 1 Overview The MC9S08JS16 (JS16) supports

More information

Apollo2 EVB Quick Start Guide

Apollo2 EVB Quick Start Guide Apollo2 EVB Quick Start Guide Doc ID: QS-A2-1p00 Revision 1.0 June 2017 QS-A2-1p00 Page 1 of 11 2017 Ambiq Micro, Inc. Table of Content 1. Introduction...3 2. Documentation Revision History...3 3. Overview

More information

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The Stepper Motor Reference Design Kit contains the following items: Stepper Motor Reference Design Board Stepper Motor Universal AC to DC

More information

Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME)

Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME) Freescale Semiconductor User s Guide Document Number: KTUSBSPIPRGUG Rev. 1.0, 7/2010 Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME) Figure 1. KITUSBSPIEVME and KITUSBSPIDGLEVME

More information

Table 1. RS232 Serial Adapter DEBUG Connector Pin Descriptions

Table 1. RS232 Serial Adapter DEBUG Connector Pin Descriptions RS232 SERIAL ADAPTER (EC2) USER S GUIDE 1. Contents The RS232 Serial Adapter (EC2) package contains the following items: RS232 Serial Adapter (RS232 to Debug Interface) 7 Ribbon Cable 2. RS232 Serial Adapter

More information

Figure 1. Power Barrel Connector Requirements

Figure 1. Power Barrel Connector Requirements Freescale Semiconductor Quick Start Guide Rev. 0.1, 06/29/2004 DEMO9S12NE64 Demo Quick Start Guide Introduction This kit and guide contains everything you need to get started. You will connect the board

More information

56F8300 BLDC Motor Control Application

56F8300 BLDC Motor Control Application 56F8300 BLDC Motor Control Application with Quadrature Encoder using Processor Expert TM Targeting Document 56F8300 16-bit Digital Signal Controllers 8300BLDCQETD Rev. 2 08/2005 freescale.com Document

More information

ColdFire Convert 1.0 Users Manual by: Ernest Holloway

ColdFire Convert 1.0 Users Manual by: Ernest Holloway Freescale Semiconductor CFCONVERTUG Users Guide Rev.0, 09/2006 ColdFire Convert 1.0 Users Manual by: Ernest Holloway The ColdFire Convert 1.0 (CF) is a free engineering tool developed to generate data

More information

MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations

MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations Freescale Semiconductor Engineering Bulletin Document Number: EB711 Rev. 0, 05/2009 MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations by: Peter Kardos Application Engineer, Roznov

More information

Figure 1. Simplicity Studio

Figure 1. Simplicity Studio SIMPLICITY STUDIO USER S GUIDE 1. Introduction Simplicity Studio greatly reduces development time and complexity with Silicon Labs EFM32 and 8051 MCU products by providing a high-powered IDE, tools for

More information

How to Create a.cibd File from Mentor Xpedition for HLDRC

How to Create a.cibd File from Mentor Xpedition for HLDRC How to Create a.cibd File from Mentor Xpedition for HLDRC White Paper May 2015 Document Number: 052889-1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

MC33696MODxxx Kit. 1 Overview. Freescale Semiconductor Quick Start Guide. Document Number: MC33696MODUG Rev. 0, 05/2007

MC33696MODxxx Kit. 1 Overview. Freescale Semiconductor Quick Start Guide. Document Number: MC33696MODUG Rev. 0, 05/2007 Freescale Semiconductor Quick Start Guide Document Number: MC33696MODUG Rev. 0, 05/2007 MC33696MODxxx Kit by: Laurent Gauthier Toulouse, France 1 Overview This document provides introductory information

More information

Prepared by: Gang Chen ON Semiconductor U1 NCP1529 GND SW 5. Figure 1. Typical Simulation Circuit of NCP1529 for DC DC Applications

Prepared by: Gang Chen ON Semiconductor   U1 NCP1529 GND SW 5. Figure 1. Typical Simulation Circuit of NCP1529 for DC DC Applications AND94/D Use of NCP1529 Pspice Model Prepared by: Gang Chen ON Semiconductor APPLICATION NOTE Overview The NCP1529 is a synchronous step down DC DC converter for portable applications powered by one cell

More information

Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5

Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5 Freescale Semiconductor Application Note Document Number: AN3417 Rev. 0.1, 01/2010 Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5 by: Power Management and Audio

More information

Intel Manageability Commander User Guide

Intel Manageability Commander User Guide Intel Manageability Commander User Guide Document Release Date: October 27, 2016 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

MPR083 Proximity Evaluation Kit User s Guide

MPR083 Proximity Evaluation Kit User s Guide Freescale Semiconductor User s Guide Rev 2, 04/2008 MPR083 Proximity Evaluation Kit User s Guide by: Laura Salhuana Introduction This guide will aid you in connecting the MPR083 Evaluation Kit Board to

More information

AN220 USB DRIVER CUSTOMIZATION. Relevant Devices This application note applies to the following devices: CP2101, CP2102, CP2103, C8051F320, C8051F321

AN220 USB DRIVER CUSTOMIZATION. Relevant Devices This application note applies to the following devices: CP2101, CP2102, CP2103, C8051F320, C8051F321 USB DRIVER CUSTOMIZATION Relevant Devices This application note applies to the following devices: CP2101, CP2102, CP2103, C8051F320, C8051F321 1. Introduction The information in this document and the associated

More information

AN220 USB DRIVER CUSTOMIZATION

AN220 USB DRIVER CUSTOMIZATION USB DRIVER CUSTOMIZATION Relevant Devices This application note applies to the following devices: CP2101/2/3/4/5, C8051F320/1/6/7, C8051F340/1/2/3/4/5/6/7/8/9/A/B/C/D, C8051F380/1/2/3/4/5/6/7, C8051T320/1/2/3/6/7,

More information

Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis

Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis Freescale Semiconductor Document Number: AN4307 Application Note Rev. Rev.0, 5/ 2011 Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis by: Paolo Alcantara RTAC Americas Mexico 1 Introduction This

More information

WinCE6.0 I2C SMDKV210. Revision 1.00 October Samsung Electronics Co., Ltd. All rights reserved.

WinCE6.0 I2C SMDKV210. Revision 1.00 October Samsung Electronics Co., Ltd. All rights reserved. WinCE6.0 I2C SMDKV210 Revision 1.00 October 2010 2010 Samsung Electronics Co., Ltd. All rights reserved. Important Notice The information in this publication has been carefully checked and is believed

More information

SENSORLESS-BLDC-MOTOR-RD

SENSORLESS-BLDC-MOTOR-RD S ENSORLESS BLDC MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The BLDC Motor Reference Design Kit contains the following items: BLDC Motor Reference Design Board Brushless DC (BLDC) Motor Universal

More information

MC56F825x/MC56F824x (2M53V) Chip Errata

MC56F825x/MC56F824x (2M53V) Chip Errata Freescale Semiconductor MC56F825XE_2M53V Chip Errata Rev. 1, 05/2012 MC56F825x/MC56F824x (2M53V) Chip Errata The following errata items apply to devices of the maskset 2M53V. 2012 Freescale Semiconductor,

More information

Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide

Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide Customizing an Android* OS with Intel Build Tool Suite for Android* v1.1 Process Guide May 2015, Revision 1.5 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

EchoRemote Evaluation Software for Windows

EchoRemote Evaluation Software for Windows Freescale Semiconductor Application Note Document Number: AN2953 Rev.1, 05/2007 EchoRemote Evaluation Software for Windows 1 Overview EchoRemote is a Microsoft Windows program that communicates with the

More information

F701 3U CompactPCI MVB Interface Card

F701 3U CompactPCI MVB Interface Card F701 3U CompactPCI MVB Interface Card 4HP 32-bit/33-MHz CompactPCI MVB Interface EMD/ESD+ according to IEC 61375 (TCN Standard) MVB Bus Administrator 4096 Process Data ports Message Data stack Driver support

More information

Using OpenGL Applications on the i.mx31 ADS Board

Using OpenGL Applications on the i.mx31 ADS Board Freescale Semiconductor Document Number: AN3723 Application Note Rev. 1.0, 04/2008 Using OpenGL Applications on the i.mx31 ADS Board by Fabio Estevam This application note shows the procedures for running

More information

Using IIC to Read ADC Values on MC9S08QG8

Using IIC to Read ADC Values on MC9S08QG8 Freescale Semiconductor Application Note AN3048 Rev. 1.00, 11/2005 Using IIC to Read ADC Values on MC9S08QG8 by Donnie Garcia Application Engineering Microcontroller Division 1 Introduction The MC9S08QG8

More information

Pengwyn Documentation

Pengwyn Documentation Pengwyn Documentation Release 1.0 Silica October 03, 2016 Contents 1 Introduction 3 1.1 Platforms................................................. 3 1.2 Hardware requirements.........................................

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK LIN DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage

More information

LinX Software Suite v3 Getting Started

LinX Software Suite v3 Getting Started 2018-03-19 LinX Software Suite v3 Getting Started Product revision: V3.0.2 Document revision: 1.0 www.crosscontrol.com Contents Revision history...2 1. Brief Introduction...3 2. Components and Installation...3

More information

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB 1 MC9S08MM128 Electrocardiogram (EKG) with Freescale USB stack TOWER SYSTEM Introduction This lab is a step-by-step guide to run the EKG demo. The EKG

More information

i.mx31 3-Stack Platform Linux SDK Standard Release Package User s Guide

i.mx31 3-Stack Platform Linux SDK Standard Release Package User s Guide i.mx31 3-Stack Platform Linux SDK Standard Release Package User s Guide Document Number: 926-77208 Rev. 1.2 02/2008 How to Reach Us: Home Page: www.freescale.com Web Support: http://www.freescale.com/support

More information

SN32F100 Series QUICK START. SN32F100 Series SN32F107 SN32F108 SN32F109. SONiX TECHNOLOGY CO., LTD Page 1 Version 3.1

SN32F100 Series QUICK START. SN32F100 Series SN32F107 SN32F108 SN32F109. SONiX TECHNOLOGY CO., LTD Page 1 Version 3.1 SN32F100 Series QUICK START SN32F107 SN32F108 SN32F109 SONiX SONIX reserves the right to make change without further notice to any products herein to improve reliability, function or design. SONIX does

More information

SENSORLESS-BLDC-MOTOR-RD

SENSORLESS-BLDC-MOTOR-RD S ENSORLESS BLDC MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The Sensorless BLDC Motor Reference Design Kit contains the following items: Sensorless BLDC Motor Reference Design Board Brushless

More information

CTEC1863/2018F Bonus Lab Page 1 of 5

CTEC1863/2018F Bonus Lab Page 1 of 5 CTEC1863/2018F Bonus Lab Page 1 of 5 Bonus Lab: OpenSUSE Linux Rescue In this lab, we will install an OpenSUSE virtual machine. However, both the non-root user and the root passwords are unknown. To fix

More information

Using colinux to develop under Windows XP

Using colinux to develop under Windows XP Using colinux to develop under Windows XP A Linux PC is often required to program embedded Linux systems. This can present unexpected problems for many experienced Windows users. A DIL/NetPC-based embedded

More information

etpu General Function Set (Set 1) David Paterson MCD Applications Engineer

etpu General Function Set (Set 1) David Paterson MCD Applications Engineer Freescale Semiconductor Application Note Document Number: AN2863 Rev. 0, 12/2007 etpu General Function Set (Set 1) by David Paterson MCD Applications Engineer 1 Introduction This application note complements

More information

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Quick Start Guide March 2014 Document Number: 330217-002 Legal Lines

More information

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128 The industry s most complete solution for portable medical applications TOWER SYSTEM Get to Know the TWR-S08MM128-KIT BDM Interface for MC9S08MM128

More information

Using the Multi-Axis g-select Evaluation Boards

Using the Multi-Axis g-select Evaluation Boards Freescale Semiconductor Application Note Rev 2, 10/2006 Using the Multi-Axis g-select Evaluation Boards by: Michelle Clifford and John Young Applications Engineers Tempe, AZ INTRODUCTION This application

More information

MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series

MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series Freescale Semiconductor Technical Data Document Number: MPC7410ECS08AD Rev. 1, 11/2010 MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series This document describes

More information

AND9699/D. F143-MINI-X-GEVK Quick Start Guide APPLICATION NOTE

AND9699/D. F143-MINI-X-GEVK Quick Start Guide APPLICATION NOTE F143-MINI-X-GEVK Quick Start Guide F143 Mini DVK Introduction The F143 MINI x GEVK (also referred to as the F143 Mini DVK) is designed as quick start solution for the development of applications with the

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F330 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Intel Core TM i7-4702ec Processor for Communications Infrastructure

Intel Core TM i7-4702ec Processor for Communications Infrastructure Intel Core TM i7-4702ec Processor for Communications Infrastructure Application Power Guidelines Addendum May 2014 Document Number: 330009-001US Introduction INFORMATION IN THIS DOCUMENT IS PROVIDED IN

More information

SONiX 32-bit MCU ISP. User Guide. SONIX 32-Bit MCU Series. Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760

SONiX 32-bit MCU ISP. User Guide. SONIX 32-Bit MCU Series. Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760 SONiX 32-bit MCU ISP User Guide Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760 SONiX 32-Bit Cortex-M0 Micro-Controller SONIX reserves the right to make change without

More information

AN690. Si4010 DEVELOPMENT KIT QUICK-START GUIDE. 1. Purpose. 2. Kit Content. Table 1. Kit Content

AN690. Si4010 DEVELOPMENT KIT QUICK-START GUIDE. 1. Purpose. 2. Kit Content. Table 1. Kit Content Si4010 DEVELOPMENT KIT QUICK-START GUIDE 1. Purpose Thank you for your interest in Silicon Laboratories Si4010 RF SoC transmitter development kit. This development kit contains everything you need to develop

More information

M81 16 Binary Outputs

M81 16 Binary Outputs M81 16 Binary Outputs 16 opto-relay outputs 0..36 V output voltage per channel 500 ma output current per channel Thermal and short-circuit protection 500 V DC isolation from the system 100 V DC isolation

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK PROGRAMMING ADAPTER USER S GUIDE 1. Handling Recommendations The ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage to the devices or

More information

1N5221B - 1N5263B Zener Diodes

1N5221B - 1N5263B Zener Diodes 1N5-1N5 Zener Diodes Tolerance = 5% 1N5-1N5 Zener Diodes DO-35 Glass case COLOR BAND DENOTES CATHODE Absolute Maximum Ratings Stresses exceeding the absolute maximum ratings may damage the device. The

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F560 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information