EMX Development System

Size: px
Start display at page:

Download "EMX Development System"

Transcription

1 July 21, 2010 G H I Getting Started E l e c t r o n i c s

2 Table of Contents Table of Contents 1.Introduction...3 The objective of this Guide Getting Started System Setup The Emulator...6 Create a Project...6 Selecting Transport Interface...8 Executing (Deploying) the project...9 Debugging Breakpoints Running on Hardware...11 MFDeploy can Ping!...12 Deploying to Hardware...13 Connect MFDeploy to show debugging messages...13 Checking EMX firmware and TinyBooter Version Deleting The Deployed Project...15 Emergency user application code deletion Assemblies with EMX Project What are Assemblies?...16 Standard Assemblies...16 GHI NETMF assemblies...16 Adding Assemblies to Visual C# Project TinyBooter and Firmware Update Checking the Firmware Version TinyBooter Update through GHI Boot Loader EMX firmware update through TinyBooter What is next?...27 Legal Notice...28 Licensing...28 Disclaimer...28 Page 2 of 28

3 Introduction 1. Introduction is the official kit from GHI Electronics for the EMX module. This kit exposes the various peripherals and interfaces that make it an ideal starting point for any.net Micro Framework project. Furthermore, most of EMX module signals such as GPIO, SPI and UART are accessible on a 0.1" header for rapid prototyping. Brochure and Pin-outs Document provides for a more detailed view of this system. USB Host RS232 D-SUB XBee Socket UEXT Pow er Indicator LED Tw o Programmable LEDs USB Client Pow er Connector 6Volts RJ45 Ethernet JTAG (Disabled by Default) RTC Battery LCD Header 3.5 TFT Display With Touch Screen Reset SD/MMC Connector Buttons Pad CAN D-SUB JP2 Header Front View Page 3 of 28

4 Introduction EMX Module Display Back Light Circuit RS232 converter CAN Physical Layer Chip Back View The objective of this Guide This guide will help you in the first steps to use EMX Module through the Development System. From here, we will show you how to connect EMX, make sure it is running, load a simple program, and explain how to update the internal firmware. This guide only covers very basic points about EMX. More details are provided in the user manual. Page 4 of 28

5 Getting Started 2. Getting Started 2.1. System Setup Before we try anything, we want to make sure the PC is setup with needed software. First download and install Visual C# Express Now, download and install.net Micro Framework 4.1 SDK (not the porting kit) If you have Visual Studio 2010 then you can skip this step. if link above didn't work, search for.net Micro Framework 4.1 SDK. Finally, install the GHI NETMF SDK (Software Development Kit) from EMX's downloads page. The SDK comes in a zip file, extract it and then run setup.exe to install the SDK. Page 5 of 28

6 Getting Started 2.2. The Emulator NETMF includes an emulator that allows running application right on the PC. For our first project, we will use the emulator to run a very simple application. Create a Project Open Visual C# express and, from the menu, select file -> New Project. The wizard now should have Micro Framework option in the left menu. Click on it, and from the templates, select Console Application Page 6 of 28

7 Getting Started Click the OK button and you will have a new project that is ready to run. The project has only one C# file, called Program.cs, which contains a few lines of code. The file is shown in Solution Explorer window. If this window is not showing then you can open it by clicking View->Solution Explorer from the menu. using System; using Microsoft.SPOT; namespace MFConsoleApplication1 { public class Program { public static void Main() { Debug.Print( Resources.GetString(Resources.StringResources.String1)); } } } For simplicity change the code to make it look like the listing below. Page 7 of 28

8 Getting Started using System; using Microsoft.SPOT; public class Program { public static void Main() { Debug.Print("Amazing!"); } } Selecting Transport Interface Do not worry if you do not understand the code. We will explain it later. For now, we want to run it on the emulator. Let us make sure you have everything setup properly. Click on Project->Properties from the menu. In the new showing window, we want to make sure we select the emulator. On the left side tabs, select.net Micro Framework and make sure the window looks like the image below. Transport: Emulator Device: Microsoft Emulator Page 8 of 28

9 Getting Started Make sure the output window is visible, click on View->Output Executing (Deploying) the project Finally, we are ready to run our first application. Press F5 key on the computer. This is a very useful shortcut and you will be using it a lot to run your applications. After you press F5, the application will be compiled and loaded on the emulator, and in couple seconds everything will stop! That is because our program had finished execution so fast that we didn't see much. We want to debug the code now. Debugging means that you are able to step in the code and see what it is doing. This is one of the greatest values of NETMF. This time use F11 instead of F5, this will step in the application instead of just running it. This will deploy the application on the emulator and stop at the very first line of the code. This is indicated by the yellow arrow. Page 9 of 28

10 Getting Started C# applications always start from a method called Main, and this is where the arrow had stopped. Press F11 again and the debugger will run the next line of code, which is the line you changed before. You probably have guessed it right, this line will print Amazing! to the debug window. The debug window is the output window on Visual C# express. Make sure Output window is visible like explained earlier and press F11 one more time. Once you step on that line, you will see the word Amazing! Showing in the output window. The Program that you've just deployed is called "Managed Code" in.net Micro Framework Terminology. Debugging Breakpoints Breakpoints are another useful feature when debugging code. While the application is running, the debugger checks if execution has reached a breakpoint. If so, the execution will pause. Click the bar right to the left of the line that prints Amazing!. This will show a red dot which is the breakpoint. Page 10 of 28

11 Getting Started Now press F5 to run the software and when the application reaches the breakpoint the debugger will pause it as showing in the image below. Now, you can step in the code using F11 or continue execution using F Running on Hardware We are now ready to connect to the PC. Connect The development system using the USB cable. No power is needed as EMX Development System uses USB for power. If this is the first time you plug the system to your PC then windows will ask for drivers. Direct windows to the GHI NETMF interface driver available in GHI NETMF SDK under USB Drivers Folder. Page 11 of 28

12 Getting Started Important Note: The development system with the many peripherals, such as the TFT display, requires relatively high power. So make sure that you connect to a direct USB port at your PC or to a powered USB hub, or the board might not function correctly due to the insufficient supplied power. If you can not provide a USB port with good power or you are not sure. you can connect external power directly to the development system. MFDeploy can Ping! Before we use the hardware, let us make sure it is properly connected. The NETMF (.NET Micro Framework) SDK comes with a software from Microsoft called MFDeploy. There are many good uses for MFDeploy but for now we only need it to ping the device. Basically, ping means MFDeploy will say Hi to the device and then checks if the device will respond with Hi. This is to make sure the device is connected properly and communication has no issues. Open MFDeploy and connect EMX using the included USB cable to your PC. If this is the first time you plug in EMX, Windows will ask for drivers. Supply the driver from the SDK folder and wait until windows is finished. Page 12 of 28

13 Getting Started Deploying to Hardware Now that we checked the hardware is working using MFDeploy, we need to go back to Visual C# express. From the project properties, select USB for transport and EMX for the device. Make sure your setup looks similar to the image below. Allow a couple seconds to ensure the hardware has completed the boot up process then press F5, we will now send our simple application to EMX and it will run right inside the real hardware. Switching from emulator to real hardware is that simple! Try the steps we tried with the emulator, like setting breakpoints and using F11 to step in the code. Note that Debug.Print will still forward the debug messages from the hardware to the output window on Visual C# express. You have to keep in mind that only one software can talk to EMX interface at the same time. In another word, you can not Ping the hardware through MFDeploy if it is already connected through Visual Studio. Connect MFDeploy to show debugging messages After Deploying the application through Visual Studio. The application still works on EMX even if is Visual Studio was disconnected and it will run every time you reset or recycle power on EMX. User can still view the boot up and debugging messages by connecting MFDeploy to Page 13 of 28

14 Getting Started USB. Simply after you connect USB cable and you can ping EMX in MFDeploy, click Target->Connect. After this you can even reset the board and see all the boot up sequence messages and any debugging messages including the strings printed out in the code using Debug.Print(). In our previous example,"amazing!". When done, you can disconnect using Target->Disconnect. Important Note: If you did not see the debugging messages, press the Ping button and the debug messages will be displayed after. Page 14 of 28

15 Getting Started Checking EMX firmware and TinyBooter Version At this point and before proceeding, it is important to check if you need to update your EMX firmware. When you download a new SDK, it comes with new firmware that needs to be sent to EMX. Please see system update section at the end Deleting The Deployed Project User can always over-deploy the current application (project) on EMX by deploying the newer application from Visual C#. but in some cases user might need only to delete the current application. this can be accomplished using MFDeploy tool explained before: Open MFDeploy, choose USB and EMX from device list and ensure you get positive response when pinging Then click the erase button: Emergency user application code deletion In some cases, user needs to delete the application because it is locking up the device or blocking the USB debugging interface. but Visual C# or MFDeploy tool does not help here and can not communicate with the device. In this case you should access The Tinybooter mode (by pressing and holding Up and Down buttons on system bootup, you will see "Tinybooter on the screen", release the buttons the Erase the application code using MFDeploy as explained earlier. Page 15 of 28

16 Assemblies with EMX Project 3. Assemblies With EMX Project 3.1. What are Assemblies? Hardware/Software features are accessed through Managed code using C# Classes with their members such as methods, properties and variables. On EMX you may neeed assemblies from 2 sources: Standard Assemblies.NET Micro Framework SDK includes pre-compiled assemblies that contain the managed code of various classes for hardware features such as Debug Class that you've just used in the example to print the string "Amazing!" using the Print Method. Users do not see the source code of these classes but can use these classes by simply adding the relevant assemblies to the Visual C# project..net Micro Framework library examples: Microsoft.SPOT.Hardware Microsoft.SPOT.Native System.IO Classes are described is in.net Micro Framework SDK documentation which also includes information about the required assemblies. GHI NETMF assemblies EMX hardware adds more functionality on top of the.net Micro Framework. For example, hardware peripherals such as CAN, Analog converters, PWM,...etc are not directly supported in.net Micro Framework. However, they can be easily used with EMX. The assembly provides access to hardware peripherals, storage solutions, USB connectivity, and many other features. The assembly files and their documentation are included with GHI NETMF SDK. These assembly files must be added to your Visual Studio project in order to be able to use the extra features. EMX uses the same assemblies available for ChipworkX and USBizi. This also means, you can switch from EMX to USBizi to ChipworkX without the need to change any line of code! GHI NETMF library examples: GHIElectronics.NETMF.Hardware GHIElectronics.NETMF.System GHIElectronics.NETMF.Net Page 16 of 28

17 Assemblies with EMX Project Adding Assemblies to Visual C# Project Adding a library is pretty simple. 1. Go to the Menu and select project --> Add Reference Choose the library that you need then click OK. 3. We can now see the new Assembly reference with the References in the solution explorer. Page 17 of 28

18 TinyBooter and Firmware Update 4. TinyBooter And Firmware Update EMX includes three pieces of embedded software, GHI boot loader, TinyBooter and EMX firmware. Important note: Always make sure the firmware loaded on the device matches the firmware version associated with the GHI NETMF SDK EMX firmware. Ideally, whenever you install a new SDK on your PC, you will also update the firmware on your device and update the assemblies you have added to your application. the next sections explains how to check the firmware version number and how to updating the firmware is explained here Checking the Firmware Version Before updating the firmware, you can check the version number and make sure it needs to be updated or if you have the latest installed. Make sure you have the latest SDK and firmware installed. Then go to w (EMX downloads), the current GHI NETMF SDK version is shown in the download link. You can download and install the SDK. When done, the version release notes and changes are shown automatically. These are also available in the SDK installation folder. Page 18 of 28

19 TinyBooter and Firmware Update After you have the SDK installed, you can see the Release Notes file, for example EMX firmware version number is and Tinybooter version number is in this SDK. The easiest way to verify the version numbers on is to read them on EMX's display. Page 19 of 28

20 TinyBooter and Firmware Update On system boot up EMX firmware version number is printed out on second line of the screen. To read TinyBooter version number, all you have to do is to access TinyBooter (Press and hold Up and Down buttons on system boot up then release the buttons when you see "TinyBooter Mode" on EMX's display. The version number is right after that line TinyBooter Update through GHI Boot Loader At power up, a GHI boot loader takes over the processor and validates TinyBooter stored in FLASH. If TinyBooter was found and was valid, execution is transferred to TinyBooter. First, it is better to start fresh before loading the new firmware: 1. First, install the latest GHI NETMF SDK (which includes the latest EMX firmware and Tinybooter binary files). 1. Install TeraTerm software. We highly recommend you download and install from GHI website: Download TeraTerm. 2. Disconnect the development system from power and from PC then open TeraTerm. 3. Select serial and click the arrow to drop down the list of COM ports. Note how many COM ports you have and write them down. On my system, I only have COM3. Page 20 of 28

21 TinyBooter and Firmware Update 4. Close TeraTerm for now. 5. Connect back the development system. 6. Press and Hold UP, Select and Down buttons the press and release Reset button. 7. Release the three buttons. 8. Windows will ask for a new driver. Driver file is GHI_BootLoader_Interface.inf 9. After windows is done installing the new drivers, open TeraTerm and observe what COM ports are now available. You should have a new COM port. This new COM port (serial port) is actually a USB connection between windows and GHI Boot loader. Windows applications do not know that this is a USB connection and treat it just like if it was a serial port. 10. Select the new COM port and clock OK. Now press the b button on the keyboard. You should see back BL for every time you press b. Now try to press V (upper case) to get back the loader version number. Note, your version number might be different! Also, this version is NOT related to GHI NETMF SDK or firmware. 11. You are now successfully accessing the bootloader. 12. Erase the flash memory using E command then press Y to confirm (this will take several seconds). Page 21 of 28

22 TinyBooter and Firmware Update 13. Loading new firmware is simple but it requires a terminal that supports XMODEM file transfer. XMODEM has many versions, GHI boot loader requires 1K transfers with 16Bit CRC error checking. Keep on using TeraTerm software. Transfer is initiated using the X command. After the X command is entered, the GHI boot loader will start sending back the C character continuously. This C is an indicator that tells XMODEM a device is waiting for data. Once you see the C character appearing on the terminal window, you can select XMODEM transfer and point the software to the firmware file "TinyBooter.GHI. Entering X command... In the menu, select File > Transfer > XMODEM > Send... Next, select the TinyBooter.GHI file from... GHI Electronics\GHI NETMF SDK\EMX\Firmware\TinyBooter Page 22 of 28

23 TinyBooter and Firmware Update Updating the firmware takes a few seconds to load. Once loading has finished and the file is valid, the new firmware is executed automatically and you will not see BL again If you did see the "BL" again after this process, it means that the update process failed. You might need to double check that the downloaded file is not corrupted. At this point you have a clean Flash memory with only Tinybooter waiting to get the new EMX firmware files to updated the system EMX firmware update through TinyBooter In the following steps we will update EMX firmware with Tinybooter and MFDeploy help: 2. First, install the latest GHI NETMF SDK (which includes the latest EMX firmware and TinyBooter binary files). You probably already did when you updated the TinyBooter in the previous section. 3. Insure there is no need to update the TinyBooter or you already did. 4. Press and hold the Up and Down buttons then press and release reset to access TInyBooter mode. You will see on the EMX's TFT display. 5. Run MFDeploy and select USB from the Device list, you should see EMX_EMX in the dropdown. Page 23 of 28

24 TinyBooter and Firmware Update 6. Check the communication between MFDeploy and TinyBooter by pinging the device. Press Ping and you should see this message: 7. Now we can lead MFDeploy to the new EMX firmware files. Click Browse and direct MFDeploy to the firmware HEX files. These can be found under EMX\firmware folder in the SDK. The other files with sig extension must exist in the same folder as the HEX files. Select ALL of the HEX files at once and start deploying the firmware by pressing Deploy. Page 24 of 28

25 TinyBooter and Firmware Update Page 25 of 28

26 TinyBooter and Firmware Update 8. Loading the files takes about a minute. On completion the firmware will execute. Double check the version number to make sure the correct firmware is loaded. 9. Loading new firmware will not erase the deployed managed application. If you need to erase the managed application click Erase. Page 26 of 28

27 What is next? 5. What Is Next? There are many documents and resources that helps you out with EMX and.net Micro Framework: EMX User Manual EMX downloads page on GHI blog is always a good place to visit The Micro Framework Project website is an excellent resource A good and free ebook to continue learning about C# is available at Jens Kuhner excellent book on.net Micro Framework USB complete is an excellent book on USB Micro Framework's main page on Microsoft's website Micro Framework Community Page 27 of 28

28 Legal Notice Legal Notice Licensing EMX Module is fully licensed for commercial use. The Module price covers the commercial use of EMX Module with.net Micro Framework. Disclaimer IN NO EVENT SHALL GHI ELECTRONICS, LLC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS PRODUCT, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT ANY NOTICE. GHI ELECTRONICS, LLC LINE OF PRODUCTS ARE NOT DESIGNED FOR LIFE SUPPORT APPLICATIONS. EMX is a Trademark of GHI Electronics, LLC.NET Micro Framework, Visual Studio, MFDeploy, Windows Vista, Windows SideShow are registered or unregistered trademarks of Microsoft Corporation. Other Trademarks and Registered Trademarks are Owned by their Respective Companies. Page 28 of 28

ChipworkX Development System

ChipworkX Development System July 21, 2010 G H I Getting Started E l e c t r o n i c s Table of Contents Table of Contents 1.Introduction...3 The objective of this guide...4 2.Getting Started...5 2.1.System Setup...5 2.2.The Emulator...6

More information

Preliminary F40 SoC Datasheet

Preliminary F40 SoC Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com Preliminary F40 SoC Datasheet Where Hardware Meets Software GHI

More information

BV511 Hardware Guide ByVac ByVac Revision 1.0

BV511 Hardware Guide ByVac ByVac Revision 1.0 BV511 Hardware Guide ByVac ByVac 2007 www.byvac.co.uk Revision 1.0 ByVac 1 Copyright in this work is vested in ByVac and the document is issued in confidence for the purpose only for which it is supplied.

More information

Preliminary File System User Manual

Preliminary File System User Manual GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com Preliminary File System User Manual Where Hardware Meets Software

More information

Rev. 4.4 March 10, 2011 User Manual. This document covers information about USBizi Chipset, specifications, tutorials and references.

Rev. 4.4 March 10, 2011 User Manual. This document covers information about USBizi Chipset, specifications, tutorials and references. Rev. 4.4 March 10, 2011 User Manual USBizi Chipset LQFP144 USBizi Chipset LQFP100 Document Information Information Abstract Description This document covers information about USBizi Chipset, specifications,

More information

ChipworkX User Manual

ChipworkX User Manual September 21, 2011 Top View User Manual Back View Document Information Information Description Abstract This document covers complete information about the ChipworkX Module and Development System, specifications,

More information

Getting Started with STK200 Dragon

Getting Started with STK200 Dragon Getting Started with STK200 Dragon Introduction This guide is designed to get you up and running with main software and hardware. As you work through it, there could be lots of details you do not understand,

More information

G80 SoC Datasheet. Where Hardware Meets Software

G80 SoC Datasheet. Where Hardware Meets Software GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G80 SoC Datasheet Where Hardware Meets Software GHI Electronics,

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). 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 UNIVERSITY 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

EMX Module Specifications

EMX Module Specifications EMX is a combination of hardware (ARM Processor, Flash, RAM, Ethernet PHY...etc) on a very small (1.55 x1.8 ) SMT OEM 8-Layer board that hosts Microsoft.NET Micro Framework with various PAL/HAL drivers.

More information

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013

Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Watch 4 Size v1.0 User Guide By LeeLu Soft 2013 Introduction Installation Start using W4S Selecting a folder to monitor Setting the threshold Setting actions Starting the monitor Live Log Using monitor

More information

LPC1788 Mio Board. User Manual. Revision 1.0 1

LPC1788 Mio Board. User Manual.     Revision 1.0 1 User Manual http://coineltech.com Revision 1.0 1 Designed by CoiNel Technology Solutions LLP No-32, 2 nd Floor, HAPBCO Tower, 9 th Main, RPC Layout, Hampinagar, Bangalore-560040 State: Karnataka Country:

More information

HouseLink HL-10E Installation and Operation Manual Modbus TCP

HouseLink HL-10E Installation and Operation Manual Modbus TCP HouseLink HL-10E Installation and Operation Manual Modbus TCP HouseLink HL-10E 7/12/2016 Table of Contents Installation Overview... 3 Components... 3 BinTrac Indicator... 3 Load Cell Bracket... 3 Smart

More information

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords Rev. 1.0 17 November 2015 User manual Document information Info Content Keywords LPCXpresso, LPC General Purpose Shield, OM13082 Abstract LPC General Purpose Shield User Manual Revision history Rev Date

More information

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide Freescale Semiconductor, Inc. KSDKKL03UG User s Guide Rev. 1.0.0, 09/2014 Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide 1 Introduction This document describes the hardware and software

More information

G400S and G400D SoM Datasheet

G400S and G400D SoM Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G400S and G400D SoM Datasheet G400S SoM G400D SoM Where Hardware

More information

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC.

Control4/HomeKit Appliance User Manual. User Manual. June Version Varietas Software, LLC. Control4/HomeKit Appliance User Manual User Manual June 2017 Version 1.0.3 Varietas Software, LLC http://www.varietassoftware.com/control4 i Control4/HomeKit Appliance Quick Start Document Revisions Date

More information

Figure 1. JTAGAVRU1 application The JTAGAVRU1 is supported by AVR Studio. Updated versions of AVR Studio is found on

Figure 1. JTAGAVRU1 application The JTAGAVRU1 is supported by AVR Studio. Updated versions of AVR Studio is found on JTAG AVR Emulator through USB Main Features AVR Studio Compatible Supports AVR Devices with JTAG Interface Emulates Digital and Analog On-Chip Functions Data and Program Memory Breakpoints Supports Assembler

More information

Page!1. wavr. Maverick Embedded Technology Ltd

Page!1. wavr. Maverick Embedded Technology Ltd Page!1 wavr Maverick Embedded Technology Ltd Page!2 Introduction... 4 Features... 4 Supported Protocols... 5 wavr... 5 AVR Dragon... 5 STK500v2/STK600... 5 What s what?... 6 A Quick Tour of wavr... 6 Programming

More information

Zynq-7000 Platform Software Development Using the ARM DS-5 Toolchain Author: Simon George and Prushothaman Palanichamy

Zynq-7000 Platform Software Development Using the ARM DS-5 Toolchain Author: Simon George and Prushothaman Palanichamy Application Note: Zynq-7000 All Programmable SoC XAPP1185 (v1.0) November 18, 2013 Zynq-7000 Platform Software Development Using the ARM DS-5 Toolchain Author: Simon George and Prushothaman Palanichamy

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

EPM900 - Overview. Features. Technical Data

EPM900 - Overview. Features. Technical Data Page 1 of 25 EPM900 - Overview The Keil EPM900 supports in-circuit debugging and parallel Flash ROM programming for the Philips P89LPC9xx device family. EPM900 connects directly to the µvision2 Debugger

More information

AT03975: Getting Started with SAM L21. Descripton. Features. SMART ARM-Based Microcontroller APPLICATION NOTE

AT03975: Getting Started with SAM L21. Descripton. Features. SMART ARM-Based Microcontroller APPLICATION NOTE SMART ARM-Based Microcontroller AT03975: Getting Started with SAM L21 APPLICATION NOTE Descripton This application note aims at getting started with the Atmel SAM L21 ARM Cortex -M0+ based microconroller.

More information

About this Guide. Cooper Security Ltd. 2012

About this Guide. Cooper Security Ltd. 2012 Cooper Security Ltd. 2012 IN NO EVENT WILL COOPER BE LIABLE FOR ANY SPECIAL, CONSEQUENTIAL, OR INDIRECT LOSS OR DAMAGE, INCIDENTAL DAMAGES, STATUTORY DAMAGES, EXEMPLARY DAMAGES, LOSS OF PROFITS, LOSS OF

More information

LabVIEW Driver. User guide Version

LabVIEW Driver. User guide Version LabVIEW Driver User guide Version 1.0.0 2016 Table of Contents Version History...3 Copyright...4 Software License...5 Operational Safety...6 Warranty and Support...7 Introduction...8 Requirements...9 How

More information

Figure 26 CC Debugger Interface

Figure 26 CC Debugger Interface Figure 26 CC Debugger Interface Once the CC Debugger is set up with the status indicator LED showing green, you are ready to either read or write a hex file from the board, or to start debugging a project

More information

USER GUIDE. ZigBit USB Stick User Guide. Introduction

USER GUIDE. ZigBit USB Stick User Guide. Introduction USER GUIDE ZigBit USB Stick User Guide Introduction This user guide describes how to get started with the Atmel ZigBit USB sticks. The ZigBit USB sticks is targeted for evaluating the USB features of the

More information

G120 and G120E SoM Datasheet

G120 and G120E SoM Datasheet GHI Electronics, LLC 501 E. Whitcomb Ave. Madison Heights, Michigan 48071 Phone: (248) 397-8856 Fax: (248) 397-8890 www.ghielectronics.com G120 and G120E SoM Datasheet G120 SoM G120E SoM Where Hardware

More information

78M6618 PDU1 Firmware Quick Start Guide

78M6618 PDU1 Firmware Quick Start Guide 78M6618 PDU1 Firmware Quick Start Guide July 2012 Rev. 0 UG_6618_122 Table of Contents 1 Introduction... 3 1.1 What s Included with an EVK?... 4 1.2 What s included with an SDK?... 5 1.3 Other Development

More information

Programming in the MAXQ environment

Programming in the MAXQ environment AVAILABLE The in-circuit debugging and program-loading features of the MAXQ2000 microcontroller combine with IAR s Embedded Workbench development environment to provide C or assembly-level application

More information

EMULATOR SYSTEM MB

EMULATOR SYSTEM MB Fujitsu Microelectronics Europe Application Note MCU-AN-391026-E-V12 FR FAMILY SUPPORT TOOL EMULATOR SYSTEM MB2198-01 INSTALLATION GUIDE MB2198-01 APPLICATION NOTE Revision History Revision History Date

More information

G120 Module Specifications

G120 Module Specifications G120 Module is a surface-mount System on Module (SoM) that runs.net Micro Framework software platform; a tiny version of Microsoft.NET framework. The value of G120 Module is not only in the hardware capabilities

More information

T-Invoicer User Guide

T-Invoicer User Guide - 1 - T-Invoicer User Guide Introduction T-Invoicer is an entry level invoicing system designed for small & startup business's who need to invoice customers quickly & easily. T-Invoicer has all the basic

More information

Embedded Master User Manual

Embedded Master User Manual Date: December 17, 2009User Manual Embedded Master Module (Non-TFT) Embedded Master Module Document Information Information Description Abstract This document covers complete information about Embedded

More information

Hands on Experience with AVR32

Hands on Experience with AVR32 Hands on Experience with AVR32 By: Mazhar Hussain mazhar.hussain @miun.se Muhammad Amir Yousaf 1 Tutorial Overview Introduction to AT32UC3A0512 (µ-controller) µ-controller Sensors Display Peripherals AVR

More information

In-Circuit Emulator. UNetICE for ARM

In-Circuit Emulator. UNetICE for ARM In-Circuit Emulator UNetICE for ARM User Manual Version 1.0 Rorixwell Inc. Authorized distributor by Embest Info&Tech Tel: +1 (416) 757 0764 Fax: +1 (416) 757 0764 10 Electro Road, Toronto, ON, M1R 2A7,

More information

Anybus Wireless Bridge Ethernet Bluetooth Access Point Product Guide

Anybus Wireless Bridge Ethernet Bluetooth Access Point Product Guide Anybus Wireless Bridge Ethernet Bluetooth Access Point Product Guide Document Revision Document number: 1 Release: November 21, 2014 Document version: 1 General This document is a product guide defining

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

UT32M0R500-EVB Development Board User Manual

UT32M0R500-EVB Development Board User Manual Microcontrollers & Microprocessors UT32M0R500-EVB Development Board User Manual March 2018 The most important thing we build is trust 1 INTRODUCTION The UT32M0R500-EVB Development Board provides a comprehensive

More information

Quick Start Guide for the Turbo upsd DK3300-ELCD Development Kit- RIDE

Quick Start Guide for the Turbo upsd DK3300-ELCD Development Kit- RIDE Contents: Circuit Board upsd DK3300-ELCD Development Board with a upsd3334d-40u6 MCU with Enhanced Graphic LCD RLINK-ST, a USB-based JTAG adapter from Raisonance for debugging with Raisonance Integrate

More information

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c

HALCoGen TMS570LS31x Help: example_sci_uart_9600.c Page 1 of 6 example_sci_uart_9600.c This example code configures SCI and transmits a set of characters. An UART receiver can be used to receive this data. The scilin driver files should be generated with

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

LPC2148 DEV BOARD. User Manual.

LPC2148 DEV BOARD. User Manual. LPC2148 DEV BOARD User Manual www.coineltech.com www.coineltech.com Designed by CoiNel Technology Solutions LLP No-816, 2 nd Floor, 4 th B Cross, 9 th A Main, RPC Layout, Vijaynagar, Bangalore-560040 State:

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

AKKON USB CONTROLLER BOARD

AKKON USB CONTROLLER BOARD TN002 AKKON USB CONTROLLER BOARD USB Microcontroller board with the PIC18F4550 * Datasheet Authors: Gerhard Burger Version: 1.0 Last update: 20.01.2006 File: Attachments: no attachments Table of versions

More information

Quick Start Guide EX-9686U/A-L(A9) Copyright TOPSCCC Technology CO., LTD. All rights reserved

Quick Start Guide EX-9686U/A-L(A9) Copyright TOPSCCC Technology CO., LTD. All rights reserved Quick Start Guide Copyright 2000 2014 TOPSCCC Technology CO., LTD. All rights reserved Release Notes Version Release Date Notes 1.0 June 2013 Initial release 2.0 October 2013 Correct some typo errors 3.1

More information

Application Note. Startup DevKit16. History 19 th June 00 TKa V1.0 started 20 th June 00 TKa V1.1 Some minor text corrections

Application Note. Startup DevKit16. History 19 th June 00 TKa V1.0 started 20 th June 00 TKa V1.1 Some minor text corrections Application Note Startup DevKit16 Fujitsu Mikroelektronik GmbH, Microcontroller Application Group History 19 th June 00 TKa V1.0 started 20 th June 00 TKa V1.1 Some minor text corrections 1 Warranty and

More information

422L: Introduction to the.net Micro Framework

422L: Introduction to the.net Micro Framework 422L: Introduction to the.net Micro Framework TrygTech Julie Trygstad Vice President and Principal Engineer 13 October 2010 Version: 1.1 Julie Trygstad VP of Engineering and Principal Engineer BSc Computer

More information

F²MC-8L FAMILY MB89201 SERIES FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8L FAMILY MB89201 SERIES FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300001-E-V10 F²MC-8L FAMILY 8-BIT MICROCONTROLLER MB89201 SERIES FLASH PROGRAMMING APPLICATION NOTE Revision History Revision History Date 2005-02-09

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

USER GUIDE. ATmega168 Xplained Mini User Guide. Introduction

USER GUIDE. ATmega168 Xplained Mini User Guide. Introduction USER GUIDE ATmega168 Xplained Mini User Guide Introduction This user guide describes how to get started with the Atmel ATmega168 Xplained Mini board. The ATmega168 Xplained Mini evalutation kit is a hardware

More information

iphone/ipad Connection Manual

iphone/ipad Connection Manual For Electone users / Connection Manual By connecting your, or ipod touch to a compatible Electone and using the various dedicated applications, you can expand the potential of the Electone and make it

More information

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter C8051F38X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F38x Development Kit contains the following items: C8051F380 Target Board C8051Fxxx Development Kit Quick-start Guide Silicon Laboratories

More information

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG

SNP Launchpad. Version: December SNP Schneider-Neureither & Partner AG Version: 12.10 December 2012 SNP Schneider-Neureither & Partner AG Dossenheimer Landstr. 100 D-69121 Heidelberg Tel.: +49 6221 6425-0 Fax: +49 6221 6425-20 E-Mail: info@snp-ag.com www.snp-ag.com Page 1

More information

RF Scientific GPIB logger v1.0 User's manual v.1 (C) RF Scientific

RF Scientific GPIB logger v1.0 User's manual v.1 (C) RF Scientific User's manual v.1 Page 1 of 14 Table of Contents 1. 2. 3. 4. General information...3 Features...3 System requirements...3 Getting started...3 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.9 Drivers and configuration...3

More information

Firmware/Bootloader Update Manual

Firmware/Bootloader Update Manual UEL6000 Ethernet Firmware/Bootloader Update Manual General Remarks The only purpose of this manual is a description of the product. It must not be interpreted as a declaration of conformity for this product

More information

FLAMEBOSS 300 MANUAL

FLAMEBOSS 300 MANUAL FLAMEBOSS 300 MANUAL Version 2.1 Download latest at FlameBoss.com/manuals WARNING: Important Safety Instructions It is important for the safety of persons to follow these instructions. Save these instructions.

More information

1. If the impaired node is part of an HA pair, disable automatic giveback from the console of the healthy node:

1. If the impaired node is part of an HA pair, disable automatic giveback from the console of the healthy node: AFF A200 systems Replacing DIMMs You must replace a DIMM in the controller module when your system registers an increasing number of correctable error correction codes (ECC); failure to do so causes a

More information

SMARTCAPTURE USB 2.0 BASED, AUDIO VIDEO CAPTURE, H.264/AAC ENCODER. Manual v1.0

SMARTCAPTURE USB 2.0 BASED, AUDIO VIDEO CAPTURE, H.264/AAC ENCODER. Manual v1.0 SMARTCAPTURE USB 2.0 BASED, AUDIO VIDEO CAPTURE, H.264/AAC ENCODER Manual v1.0 Disclaimer FastVDO LLC 2008 All rights reserved Manual This document is provided AS IS. FastVDO LLC does not make warranty

More information

DVN 16Pro. User Manual. 16-Port DVI-D KVM Switch with Audio and USB 2.0 Sharing

DVN 16Pro. User Manual. 16-Port DVI-D KVM Switch with Audio and USB 2.0 Sharing DVN 16Pro User Manual 16-Port DVI-D KVM Switch with Audio and USB 2.0 Sharing Access and Control 16 Computers with One USB keyboard, USB Mouse and DVI-D Monitor Made in U.S.A. www.smartavi.com 1 1-800-AVI-2131

More information

ZCRMZNICE01ZEMG Crimzon In-Circuit Emulator

ZCRMZNICE01ZEMG Crimzon In-Circuit Emulator Quick Start Guide QS006602-0408 Introduction Zilog s ZCRMZNICE01ZEMG Crimzon (ICE), shown in Figure 1, provides Crimzon chip family emulation with a Trace and Event system for program debugging using Zilog

More information

Installation and Maintenance

Installation and Maintenance Chapter 9 Installation and Maintenance 9.1 Hardware and software System requirements. 215 9.2 Operating Manuals. 216 9.3 Software. 221 9.4 Maintenance. 225 Chapter 9 Installation and Maintenance. This

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

MultiBoot and Fallback Using ICAP in UltraScale+ FPGAs

MultiBoot and Fallback Using ICAP in UltraScale+ FPGAs XAPP1296 (v1.0) June 23, 2017 Application Note: UltraScale+ FPGAs MultiBoot and Fallback Using ICAP in UltraScale+ FPGAs Author: Guruprasad Kempahonnaiah Summary This application note describes a key feature

More information

LBAT90USB162 Atmel. LBAT90USB162 Development Board User s Manual

LBAT90USB162 Atmel. LBAT90USB162 Development Board User s Manual LBAT90USB162 Atmel AT90USB162 Development Board User s manual 1 1. INTRODUCTION Thank you for choosing the LBAT90USB162 Atmel AT90USB162 development board. This board is designed to give quick and cost-effective

More information

Distinction Import Module User Guide. DISTINCTION.CO.UK

Distinction Import Module User Guide. DISTINCTION.CO.UK Distinction Import Module User Guide. Distinction Import Module. Licence: Copyright (c) 2018, Distinction Limited. All rights reserved. Redistribution and use in source and binary forms, with or without

More information

LPC1788 Mio Board. The functional details of the board are as follows-

LPC1788 Mio Board. The functional details of the board are as follows- INTRODUCTION : The LPC1788 Mio is based on Cortex M3 Core, running at up to 120MHz. The Mio lets you quickly start with your development on LPC1788 based designs. The functional details of the board are

More information

Firmware Update for the BD-SP308

Firmware Update for the BD-SP308 Firmware Update for the BD-SP308 The following outlines the methods to update the firmware via network and via USB storage. Please choose either one that suits your condition. Before you start, carefully

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

RF Explorer SERIES. Spectrum Analyzer Standard Firmware Version Cumulative Release Notes

RF Explorer SERIES. Spectrum Analyzer Standard Firmware Version Cumulative Release Notes RF Explorer SERIES Spectrum Analyzer Standard Firmware Version 1.26 Cumulative Release Notes RF Explorer is an affordable Handheld Spectrum Analyzer with a growing list of features. This little powerful

More information

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH-29644 REV A/B) Contents: Get to Know S32K148 EVB Out of the Box Setup Introduction to OpenSDA S32DS IDE basics: Download Create a project

More information

Getting started with E909.06

Getting started with E909.06 preliminary Getting started with E909.06 Overview of software and tools Version 1.00 14.04.2015 Mechaless Systems GmbH TRIWO Technopark Bruchsal Werner-von-Siemens-Str. 2-6 Building 5108 76646 Bruchsal

More information

HDMI A/V over Gigabit Ethernet Adapter. User s Manual

HDMI A/V over Gigabit Ethernet Adapter. User s Manual HDMI A/V over Gigabit Ethernet Adapter User s Manual HDMI A/V over Gigabit Ethernet Adapter User s Manual ABOUT THIS MANUAL This manual is designed for use with the HDMI A/V over Gigabit Ethernet Adapter.

More information

Hardware In The Loop (HIL) Simulation for the Zynq-7000 All Programmable SoC Author: Umang Parekh

Hardware In The Loop (HIL) Simulation for the Zynq-7000 All Programmable SoC Author: Umang Parekh Application Note: Zynq-7000 AP SoC XAPP744 (v1.0.2) November 2, 2012 Hardware In The Loop (HIL) Simulation for the Zynq-7000 All Programmable SoC Author: Umang Parekh Summary The Zynq -7000 All Programmable

More information

Purchase Agreement. P&E Microcomputer Systems, Inc. 98 Galen St. Watertown, MA

Purchase Agreement. P&E Microcomputer Systems, Inc. 98 Galen St. Watertown, MA Purchase Agreement P&E Microcomputer Systems, Inc. reserves the right to make changes without further notice to any products herein to improve reliability, function, or design. P&E Microcomputer Systems,

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

Getting Started with the MCU Flashloader

Getting Started with the MCU Flashloader NXP Semiconductors Document Number: MBOOTFLASHGS User's Guide Rev 3, 05/2018 Getting Started with the MCU Flashloader Contents Contents Chapter 1 Introduction...3 Chapter 2 Overview...4 2.1 MCU flashloader...4

More information

Installing AudioLinux (Alternative way with GUI)

Installing AudioLinux (Alternative way with GUI) Installing AudioLinux (Alternative way with GUI) By Maarten van Druten Version 1.0 6 September 2017 Disclaimer: THIS SOFTWARE INSTALLATION MANUAL IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,

More information

Guide to Windows 2000 Kerberos Settings

Guide to Windows 2000 Kerberos Settings Report Number: C4-018R-01 Guide to Windows 2000 Kerberos Settings Architectures and Applications Division of the Systems and Network Attack Center (SNAC) Author: Updated: June 27, 2001 David Opitz Version

More information

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter C8051F32X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F32x Development Kit contains the following items: C8051F320 Target Board C8051Fxxx Development Kit Quick-Start Guide C8051F32x Development

More information

modpoll is a command line based Modbus master simulator and test utility. It is free software.

modpoll is a command line based Modbus master simulator and test utility. It is free software. Read Me Notes Revision 3.4, 2013-01-30 This Read Me file contains last-minute product information for the FieldTalk modpoll utility. modpoll is a command line based Modbus master simulator and test utility.

More information

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP LPC1700 secondary USB bootloader Rev. 01 8 September 2009 Application note Document information Info Keywords Abstract Content LPC1700, Secondary USB Bootloader, ISP, IAP This application note describes

More information

DPN-4 Duo. User Manual. 4-Port Dual-Head Displayport KVM switch with USB 2.0 and Audio Sharing

DPN-4 Duo. User Manual. 4-Port Dual-Head Displayport KVM switch with USB 2.0 and Audio Sharing DPN-4 Duo User Manual 4-Port Dual-Head Displayport KVM switch with USB 2.0 and Audio Sharing Access & Control up to 4 Computers from a single Workstation Made in U.S.A. www.smartavi.com 1 1-800-AVI-2131

More information

AN12119 A71CH Quick start guide for OM3710A71CHARD and i.mx6ultralite

AN12119 A71CH Quick start guide for OM3710A71CHARD and i.mx6ultralite A71CH Quick start guide for OM3710A71CHARD and i.mx6ultralite Document information Info Keywords Abstract Content Security IC, i.mx6ultralite, OM3710A71CHARD, MCIMX6UL-EVKB This document provides a detailed

More information

NEC Display Solutions MultiProfiler for Linux x64 Versions Installation Guide

NEC Display Solutions MultiProfiler for Linux x64 Versions Installation Guide NEC Display Solutions MultiProfiler for Linux x64 Versions 1.3.60 Installation Guide 1 ABOUT MULTIPROFILER... 4 2 SYSTEM REQUIREMENTS... 5 2.1 SUPPORTED NEC DISPLAY MODELS AND DESCRIPTION... 5 2.1.1 Minimum

More information

FLAME BOSS 200V2 & 300 MANUAL. Version 2.6 Download latest at FlameBoss.com/manuals

FLAME BOSS 200V2 & 300 MANUAL. Version 2.6 Download latest at FlameBoss.com/manuals FLAME BOSS 200V2 & 300 MANUAL Version 2.6 Download latest at FlameBoss.com/manuals WARNING: Important Safety Instructions It is important for the safety of persons to follow these instructions. Save these

More information

HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0)

HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0) HIS document 2 Loading Observations Data with the ODDataLoader (version 1.0) A guide to using CUAHSI s ODDataLoader tool for loading observations data into an Observations Data Model compliant database

More information

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0,

XC2000 Family AP Application Note. Microcontrollers. XC2236N Drive Card Description V1.0, XC2000 Family AP16179 Application Note V1.0, 2010-07 Microcontrollers Edition 2010-07 Published by Infineon Technologies AG 81726 Munich, Germany 2010 Infineon Technologies AG All Rights Reserved. LEGAL

More information

Firstly, to perform the following actions, you must have Admin Rights on your PC.

Firstly, to perform the following actions, you must have Admin Rights on your PC. Product: Checkbox IMH Subject: USB Drivers (Windows XP) The USB connection between a Checkbox IMH and a PC is not automatically recognised by Microsoft Windows and often results in the USB drivers not

More information

Documentation For Melexis USB LIN master used in demo setups and development kits

Documentation For Melexis USB LIN master used in demo setups and development kits Melexis USB LIN Master revision Fast Loader Melexis USB LIN master Documentation For Melexis USB LIN master used in demo setups and development kits Page 1 of 13 Table of Contents 1. General description...

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

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

Rhino Board. Powering FEZ Rhino

Rhino Board. Powering FEZ Rhino Rhino Board FEZ Rhino is a small sophisticated OEM board, running Microsoft.NET Micro Framework based on the USBizi144 Chipset. This means you can write code with greater efficiency using the C# programming

More information

XE166 Family AP Application Note. Microcontrollers. X E D r i v e C a r d H a r d w a r e D e s c r i p t i o n Board REV.

XE166 Family AP Application Note. Microcontrollers. X E D r i v e C a r d H a r d w a r e D e s c r i p t i o n Board REV. XE166 Family AP16160 X E 1 6 4 D r i v e C a r d H a r d w a r e D e s c r i p t i o n Application Note V1.0, 2009-03 Microcontrollers Edition 2009-03 Published by Infineon Technologies AG 81726 Munich,

More information

USB Server User Manual

USB Server User Manual 1 Copyright Notice Copyright Incorporated 2009. All rights reserved. Disclaimer Incorporated shall not be liable for technical or editorial errors or omissions contained herein; nor for incidental or consequential

More information

Ameba RTL8195AM+ALC5680 Smart Voice 2-Mic Development Kit User Guide for Baidu DuerOS

Ameba RTL8195AM+ALC5680 Smart Voice 2-Mic Development Kit User Guide for Baidu DuerOS Ameba RTL8195AM+ALC5680 Smart Voice 2-Mic Development Kit User Guide for Baidu DuerOS Realtek Semiconductor Corp. No. 2, Innovation Road II, Hsinchu Science Park, Hsinchu 300, Taiwan Tel.: +886-3-578-0211.

More information

This diagram shows the workflow of the DIMM replacement procedure for a FAS2600 system.

This diagram shows the workflow of the DIMM replacement procedure for a FAS2600 system. FAS2600 series Replacing DIMMs This diagram shows the workflow of the DIMM replacement procedure for a FAS2600 system. Video overview This video shows an overview of the DIMM replacement procedure for

More information

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT)

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) APPLICATION NOTE Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) ASF PROGRAMMERS MANUAL SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) This driver for SAM D20 devices provides an

More information

SBAT90USB162 Atmel. SBAT90USB162 Development Board User s Manual

SBAT90USB162 Atmel. SBAT90USB162 Development Board User s Manual SBAT90USB162 Atmel AT90USB162 Development Board User s manual 1 1. INTRODUCTION Thank you for choosing the SBAT90USB162 Atmel AT90USB162 development board. This board is designed to give a quick and cost-effective

More information