CPU6901. PCI-104 ARM9 CPU Card. Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP.

Size: px
Start display at page:

Download "CPU6901. PCI-104 ARM9 CPU Card. Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP."

Transcription

1 CPU6901 PCI-104 ARM9 CPU Card Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP. 新北市汐止區中興路 100 號 6 樓 6F., No.100, Zhongxing Rd., Xizhi Dist., New Taipei City, Taiwan TEL: FAX: control.cards@automation.com.tw

2 Correction record Version Record 1.0 New 1

3 Contents 1. Introduction Prepare the development environment Compile and run a simple sample program Compile the uclinux OS Download uclinux OS to on board flash A. Compile the source code by manual B. How to minicom C. How to boa D. How to NFS E. How to u-boot

4 1. Introduction This software manual is intended to introduce you the procedures to code and install your application to run on the board and explain how to step by step install the uclinux OS and associate system applications on CPU6901 board, if you need to re-configure the system. It is assumed that you are a software developer with specific experience of Linux environments and are familiar with both CPU6901 hardware and networked systems. All the developments are implemented under Linux system Minimum requirement of Linux workstation The Linux workstation is work as a development station, the CPU6901 software and applications are ready cross compiled then download to CPU6901 board. The workstation must have the cross compiler and at least 1G space to install the uclinux source code. The COM0 port and the Ethernet port is also required to download and communicate with CPU

5 2. Prepare the development environment The CPU6901 has pre-installed the uclinux, we strongly recommend you to develop the applications for CPU6901 on a Linux based environment. All the followings are assumed on a Linux workstation Prepare the source code - Find the file CPU6901-SDK.tar.bz2 on CD ROM comes with CPU6901 board. - Copy the file under the /home directory or any other you preferred directory (your project directory). - Open a console and change to the directory #cd $(your project directory) - Uncompress the file #tar xjvf $(your project directory)/ CPU6901-SDK.tar.bz2 There will be new directory for the source code. 4

6 - You can find all the source code, compiler and tools are under the CPU6901-SDK directory Connect the CPU6901 to workstation - CPU6901 connectors Connector Power 5V RESET COM 0 1 USB 2 PC104-Plus Ethernet(RJ45) IDE J1(Farady ICE) description Connect to 5V power supply External manual short to reset CPU RS232 port, generally connect COM0 to workstation Connect to USB devices PC104-Plus(PCI) bus Ethernet connector IDE hard disk or CD drive connector Connect to Farady ICE for u-boot burning 5

7 - connect to physical devices - stack on the AIO6328 card. ( if you want to expand the I/O function) 2.3. Run minicom to connect CPU6901 to workstation. Now under minicom window, the workstation work as a monitor of CPU6901. (refer appendix C: How to minicom for step by step to use minicom) 6

8 3. Compile and run a simple sample program The CPU6901 has pre-installed the uclinux O.S. and the DIO6216, AIO6328 driver. If you just want to use the CPU6901 to do some control tasks without go deeply into the uclinux O.S. and u-boot, you do not need to re-compile or re-configure any thing Assume that you have coded a simple program to print out Hello, World (under any text editor or the software IDE environment) then you want to compile the software and run on CPU The uclinux SDK has been under /home directory 3.3. The simple program named hello.c and put under /home 3.4. Before using the ARM compiler, you must export the path for the compiler. #export PATH=$(your project directory)/cpu6901-sdk/tools/arm-uclibc-3.4.6/bin:$path 3.5. Compiling by using arm-linux-g++ 7

9 3.6. If any error code generated, please debug until no error. Now your application program has been done under your workstation To run the application on CPU6901, you must put the program code to CPU6901 and run it. There are many ways to copy the file to CPU6901 but the easiest on hand method is to copy by using a USB flash stick. --- Plug a USB flash disk to the work station and copy the execution code of your application program to it. --- Confirm the completeness of copy and unplug the USB flash disk. --- Plug the flash disk to the CPU Find out the USB logic number. (the following assumes the USB as sda1) --- If it is the first time to hook USB drive, make a new directory say usb under /mnt mkdir /usb --- Mount the USB flash disk. mount t vfat /dev/sda1 /mnt/usb //if file system is FAT32 mount t ntfs /dev/sda1 /mnt/usb ///if file system is NTFS --- Copy the execution code to the CPU6901. After program copy, you can run the program under CPU6901 now. 8

10 4. Compile the uclinux OS. The CPU6901 is shipped with uclinux ready and of course the u-boot is also ready to boot the OS. We strongly recommend that do not try to alter the u-boot, this is because once you change your u-boot on board and unfortunately it is a mal-function one, you must download by a ICE or take out the flash chip to burn program. We focus our effort on uclinux first Prepare the source code - Find the file CPU6901-SDK.tar.bz2 on CD ROM comes with CPU6901 board. - Copy the file under the /home directory or any other you preferred directory (your project directory). - Open a console and change to the directory #cd $(your project directory) - Uncompress the file #tar xjvf $(your project directory)/ CPU6901-SDK.tar.bz2 9

11 There will be new directory for the source code Compile the source code The compile procedure has been integrated as a single script file, just key in #./setup-kernel.sh The script will direct the compiler to go through everything it need. Finally the result file jffs2image will be under /CPU6901-SDK/output/. If the console print out the message of error of missing files, maybe your workstation do not have the necessary compiler or adjacent files, please download and install first. 10

12 5. Download uclinux OS to on board flash 5.1. Environment setup To download the uclinux OS to flash, you must have the u-boot already on flash (CPU6901 have the u-boot ready ported and installed). Connect the com port from workstation to CPU6901 com0 On workstation start the minicom (or other equivalent utility). (refer Appendix: How to minicom) Power on CPU6901 or reset it if it is already power on. Wait for the minicom console appear hit any key to stop autoboot Press any key of workstation to prevent u-boot to go ahead. On the minicom console, setup ip and netmask Setup workstation ip: #setenv serverip XXX.XXX.XXX.XXX ( fill your workstation ip at xxx.xxx.xxx.xxx) Setup the CPU6901 ip: #setenv ipaddr XXX.XXX.XXX.XXX (assign a ip to CPU6901 at xxx.xxx.xxx.xxx) Setup the net mask: #setenv netmask xxx.xxx.xxx.xxx (use your work station netmask, usally ) 11

13 Save the environment data at CPU6901 and verify them. Save environment data: #saveenv Print out the data to verify #printenv 12

14 If you have not setup tftp please refer: How to tftp to setup first. If you have already setup the tftp and copy the jffs2image file to tftp directory, download the image file to the CPU6901 by: #tftpboot 0x jffs2image (download image to CPU6901 memory starting at 0x ) Owing to the tftp use UDP protocol, it is not a reliable communication protocol. Clear flash to ensure the new download will not overlap with the old code. #erase 0x x307FFFFF Burn to flash #cp.b 0x x $(filesize) 13

15 (cp.b is a u-boot command, copy the memory from 0x to flash at address 0x with the length defined by filesize variable) Run uclinux Once the burning is complete, you can reset the system to run from u-boot to uclinux automatically or just command the u-boot to run the uclinux from the RAM at memory 0x If you will run uclinux from RAM, key in: #go 0x

16 Appendix: A. Compile the source code by manual For some reason, you need to fine tuning the system, manual command to compile the source code is required. 1. Open a new console. 2. Setup the working path #export PATH= $(your project directory) /CPU6901-SDK/tools/arm-uclibc-3.4.6/bin :$PATH Please note that the environment variable PATH is only valid for the current opened console. 3. Change to the working directory and copy default configuration file #cd $(your project directory)/cpu6901-sdk/configs #cp CPU6901_defconfig_jffs2 $(kernel path)/.config The kernel path is $(your project directory)/cpu6901-sdk/kernels/linux star 4. If you have never export the PATH variable in current console, please export: #export PATH=$(your project directory)/cpu6901-sdk/tools/arm-uclibc-3.4.6/bin:$path 5. Change to kernel path #cd $(kernel path) 6. If you do not want to change the default configuration key in: #make oldconfig If you want to re-configure, key in 15

17 #make xconfig (If you have Qt installed ) If you do not have Qt installed, use #make menuconfig 7. Before command to make, clear the previous compiled data by #make clean 8. make file now, the kernel zimage will be the result: #make 16

18 9. For the full operating system, you need some library and auxiliary utilities (utilities are under busybox directory). All the programs and kernel must finally convert to a file that can be burn to flash by u-boot. The command script to convert to final image file is under directory CPU6901-SDK. Now change directory and make the file. #cd $(your project directory)/cpu6901-sdk (change directory to the script that can integrated all object codes to a jffs2image file) #make 17

19 B. How to minicom 1. If you are the first time to use minicom, please open a new console and setup the serial port parameters. # minicom s 2. select configuration -> serial port setup then 3. choose A to change port to /dev/ttys0 choose B to change lock file location to /var/lock choose E to Bps/par/bits to N1 choose F to change hardware flow control to NO choose G to change software flow control to NO 18

20 4. select configuration -> modem and dialing 5. clear A,B,K items 6. select configuration -> Save setup as dfl to save configuration data 19

21 7. select configuration -> Exit from Minicom to exit and save data of configuration. 8. After saving configuration, exit from the minicom setup then re-enter the minicom by just key in minicom. 20

22 C. How to boa Boa is a web server software specially designed for small code size. 1. Download the boa source code, take current version boa rc21.tar.gz as example. Extract the source file 2. Change to the source code directory and configure the environment. # cd boa rc21.tar.gz (change to the Boa source file directory) #./configure 3. The original Boa is compiled under the standard Linux, now we want to port to ARM9 uclinux, we must change the compiler to arm gnu C compiler. Edit the makefile (under../ boa rc21/src/ ) and change CC and CPP definition as follows. CC = arm-linux-gcc CPP = arm-linux-gcc -E 21

23 4. Edit../boa rc21/examples/boa.conf and set as follows: User 0 Group 0 DirectoryMaker /usr/lib/boa/boa_indexer CGIPath /bin:/usr/bin:/var/www/cgi-bin ScriptAlias /cgi-bin/ /var/www/cgi-bin/ Remove the ServerName remark #, change the server name as you want. 5. Before you make the file, you must export the path of CPU6901 compiler tool path for the compiler. (the directory where the tool/arm/bin is) #export PATH=/home/CPU6901-SDK/tools/arm-uclibc-3.4.6/bin:$PATH #make (now compiler to generate executable code) 22

24 6. To download the boa to the CPU6901 board, you should put the boa object code and boa.conf under the sharing directory of nfs (refer How to nfs). Assume that the sharing directory is /tftpboot, then you should copy boa.conf and boa to this directory. 7. To mount the tftpboot (of the workstation) to the CPU6901, please follows the steps: 7.1 Use minicom to connect the CPU6901 (refer How to minicom) 7.2 Create a new directory under /mnt (in minicom console) #cd /mnt (change directory to mnt) #mkdir nfs (create new directory nfs if not exist) 7.3 Open a new consol at workstation and start nfs. #/etc/rc.d/init.d/nfs start (start nfs server) 7.4 In the minicom console set the ip of CPU6901 #ifconfig eth (configure the CPU6901 s ip as , you can change it to your convenient ip) 23

25 7.5 Mount the CPU6901 file directory with the workstation nfs sharing directory. #mount t nfs o nolock :/tftpboot /mnt/nfs (the is a example of the workstation s ip, change it to yours) 7.6 Now under the /mnt/nfs directory you can see all the /tftpboot files of workstation. (note that the boa and boa.conf now can access from CPU6901 on minicom) 8. To move the boa and boa.conf to CPU We will put boa under /usr/sbin and boa.conf under /etc/boa (boa standard default) #cp /mnt/nfs/boa /usr/sbin #cd/etc ( change directory of CPU6901) #mkdir boa ( create a new directory) #cp /mnt/nfs/boa.conf /etc/boa/ ( copy the configuration file to /etc/boa) 24

26 9. Move web page to CPU Design your web page under workstation or other computer as your convenience. 9.2 Move the web page files to /tftpboot of workstation. 9.3 Now you can see the files under the CPU6901 under /mnt/nfs 9.4 The default web page is under /var/www by default, if the directory is not exit at CPU6901, create it. #cd /var #mkdir www #cp /mnt/nfs/index.html /var/www (copy all the web files) 10. Setup the boa message log. #mkdir p /var/log/boa ( create a directory to collect the message of boa) 11. Start the boa server #ifconfig eth #/usr/sbin/boa (configure CPU6901 ip as you convenience) (start boa) 25

27 12. Now you can log in CPU6901 to watch the web page. 13. Set up to start boa while CPU6901 boot up To star after system boot up, we must add command to the script /etc/init.s/rc.sysinit 13.2 #cd /etc/init.d (change directory of CPU6901) #vi rc.sysinit (open rc.sysinit by editor) 13.3 use i (insert mode) to add at the bottom of the file. ifconfig eth (setup the ip of CPU6901) /usr/sbin/boa (command to start boa) 13.4 save file and restart the CPU6901, now you can watch the web page after system boot. 26

28 D. How to NFS NFS (Network File System) is a file server utility designed for Unix like system to share file. 1. If your system have no NFS at your workstation, please download and install the nfs-utils 2. The NFS must work on RPC service, please check if the RPC (portmap utility) is already start. #rpcinfo p (to check if RPC has start) The red marked area means RPC (port mapper) has started. 3. The shared directory and authorization are defined at /etc/exports. Edit the file, say for example: /tftpboot / (rw,sync) /tftpboot : the absolute file directory to be shared / : host ip (rw,sync) : enable read/write and data synchronization 4. Setup the NFS file sharing directory. #cd / #mkdir tftpboot (we have set the sharing directory at /tftpboot) #chown nobody:nobody tftpboot (change the owner to nobody) 27

29 5. Start NFS and share the files. #/etc/rc.d/init.d/nfs start (start the nfs service) 6. Export the shared directory #exportfs rv (use the /etc/export file to export the sharing ) 28

30 E. How to u-boot u-boot(universal Bootloader) is an open source, multi platform bootloader. u-boot supports interactive commands, environment variables, command scripting and booting from external media. 1. Re-compile by setup-uboot script All the settings regarding CPU6901 have been tailored to fit, if you want to make any change, please visit the u-boot web site ( )for the detailed information. If you just want to re-compile, please open a new console at workstation and keyin: #cd $(your project directory) (the example is /home) #./setup-uboot.sh (compile u-boot) The compiled result will be u-boot.bin under /home/cpu6901-sdk/boot/u-boot-1.1.4/ 2. Re-compile by manual command If you want to totally re-compile, you must command as follows: #cd $(your project directory) /CPU6901-SDK/boot/u-boot #make distclean (clear the previous compiled results) 29

31 #make CPU6901_config #make (configure the environment) (compile files) The result file uboot.bin 3. Burn u-boot to flash You can burn the flash by a ICE or take out the chip to brun on a programmer. These methods are not easy to burn and we suggest to use only you have bad u-boot on board or never try it. Now we have a standard u-boot on board and it runs correctly, we just want to re-program it or update it, we can use the u-boot build in utility to re-program u-boot. 3.1 Start minicom at workstation. 3.2 Power on the CPU6901 and wait the message: Hit any key to stop autoboot appears then hit any key to stop u-boot go ahead. 3.3 Setup ip of server and CPU6901. #setenv serverip (the workstation ip for example) 30

32 #setenv ipaddr #setenv netmask #saveenv (the CPU6901 ip for example) 3.4 Unprotect the flash The u-boot area of flash was protected to avoid accidental modification.we must unlock first to enable the following write. Keyin: #protect off all 31

33 3.5 Copy file to the flash Follow the command to download the file by tftpboot and copy to flash #tftpboot 0x u-boot.bin (download file from workstation to CPU6901 RAM from address 0x ) #cp.b 0x x $(filesize) (burn flash from address 0x ) After burning to flash, you have change the u-boot code under the old u-boot environment then reset or power off then on again to use the new u-boot. 32

Part 2. Embedded Linux. By : H K Sim (Contact March

Part 2. Embedded Linux. By : H K Sim (Contact   March Part 2 Embedded Linux By : H K Sim (Contact ) March 2007 1 7.0 Embedded Linux Platform On RISC Processor 2 Why use embedded Linux Embedded application is getting more complex and thus need more powerful

More information

DNP/2110 Linux Starter Kit: First Steps

DNP/2110 Linux Starter Kit: First Steps DNP/2110 Linux Starter Kit: First Steps The DIL/NetPC DNP/2110 starter kit contains everything you need to get started with your Intel PXA255 Xscale-based embedded networking application. The starter kit

More information

Developing Environment for Intel Mainstone Board

Developing Environment for Intel Mainstone Board Developing Environment for Intel Mainstone Board Outline Introduction Board Bring-up Running Linux Kernel Building Your Own Linux Kernel Developing Your Own App 1 Introduction :: PXA27x XScale PXA27x Architecture

More information

Rebuild Linux and Buildroot for the DCP-SH7785 board

Rebuild Linux and Buildroot for the DCP-SH7785 board 2 Rebuild Linux and Buildroot for the DCP-SH7785 board Contents 2.1.............................................. 1 2.2......................................... 1 2.3 Buildroot.........................................

More information

ITEC451 Network Design & Analysis Laboratory Guide: Appendix

ITEC451 Network Design & Analysis Laboratory Guide: Appendix Linux Guide Accessing the command prompt Before you can access the command prompt, you must login to the system. The administrative user on Linux machines is named root. On most Linux distributions, you

More information

How to download a new Linux O/S Image File

How to download a new Linux O/S Image File How to download a new Linux O/S Image File The DIL/NetPC DNP/9200 U-Boot boot loader offers a set of features for download a new Linux O/S image file to the flash memory. This document describes the download

More information

Linux. For BCT RE2G2. User Guide. Document Reference: BCTRE2G2 Linux User Guide. Document Issue: Associated SDK release: 1.

Linux. For BCT RE2G2. User Guide. Document Reference: BCTRE2G2 Linux User Guide. Document Issue: Associated SDK release: 1. Linux For BCT RE2G2 User Guide Document Reference: BCTRE2G2 Linux User Guide Document Issue: 1.05 Associated SDK release: 1.04 Author: D Robinson Contents Introduction... 3 Environment Setup... 3 Required

More information

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img)

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) This Application Note provides instructions on how to start-up the phycore-pxa270, download U-Boot to the phycore-pxa270

More information

Installation guide for Arcturus Networks Inc.'s uclinux release

Installation guide for Arcturus Networks Inc.'s uclinux release Installation guide for Arcturus Networks Inc.'s uclinux release 1 Mount the ISO image or the CD to /mnt mount -o loop uclinux-dist-2008-feb-05-r0-release.iso /mnt 2 Install tool chains Go to the /mnt directory

More information

TQ2440 Development Platform Manual

TQ2440 Development Platform Manual TQ2440 Development Platform Manual 0 Directory Directory... 1 Chapter 1 Introduction... 7 11Appearance of TQ2440 development platform... 7 12Hardware resource of TQ2440... 7 13Software introduction of

More information

Jade IdeaBoxx. Product Manual

Jade IdeaBoxx. Product Manual Jade IdeaBoxx Product Manual Table of Contents Standards Used in This Guide...3 Glossary of Terms and Acronyms...3 IdeaBoxx Kit Contents...4 Hardware Module...4 Suite of Software Tools...4 Introduction...5

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

First Steps. DNP/SK18 Embedded Linux Starter Kit

First Steps. DNP/SK18 Embedded Linux Starter Kit DNP/SK18 Embedded Linux Starter Kit First Steps SSV Embedded Systems Heisterbergallee 72 D-30453 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ist1.de Manual Revision: 1.0

More information

MV V310 Android 4.0 Compilation

MV V310 Android 4.0 Compilation MV V310 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV310 Android Compilation.doc Date 2012. 4. 17 Satus Working Revision History Date Version Update Descriptions

More information

DIO-3208/A DIGITAL I/O CARD

DIO-3208/A DIGITAL I/O CARD DIO-3208/A DIGITAL I/O CARD USER S MANUAL (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP. 臺北縣汐止市 興路 100 號 6 樓 6F,NO.100,CHUNG-SHIN RD. SHI-TSU,TAIPEI,TAIWAN,R.O.C. TEL:886-2-2647-6936 FAX:886-2-2647-6940 http://www.automation.com.tw

More information

SparkGate7 Quick startup guide

SparkGate7 Quick startup guide SparkGate7 Quick startup guide Thank you for buying a SparkGate and SPARK-501 SOM. More information on both can be found at www.shiratech.com. The Shiratech team. In the box: The evaluation kit you have

More information

LTIB for i.mx28, a step-by-step guide

LTIB for i.mx28, a step-by-step guide LTIB for i.mx28, a step-by-step guide Note: This guide shows how to get a target system building and running on an i.mx28 EVK board. Install LTIB Configure and build First time configuration LTIB configuration

More information

AIO3320A/21A. Analog Input and Multi-Function Digital I/O Card

AIO3320A/21A. Analog Input and Multi-Function Digital I/O Card AIO3320A/21A Analog Input and Multi-Function Digital I/O Card Software Manual (V1.1) 健昇科技股份有限公司 JS AUTOMATION CORP. 新北市汐止區中興路 100 號 6 樓 6F., No.100, Zhongxing Rd., Xizhi Dist., New Taipei City, Taiwan

More information

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX 1 S. M. GRAMOPADHYE, 2 R. T. PATIL RIT Sakharale Email: sgswapnilsmg328@gmail.com, ramesh.patil@ritindia.edu Abstract: The continuous improvement in development

More information

Getting Started U-boot

Getting Started U-boot Getting Started U-boot Document Description Keywords Abstract U-boot, lpc2294 This document is a simple user guide for how to use u-boot on lpc2294 mcu: setup u-boot and toolkit; make and program the image

More information

Jade IdeaBoxx. The quickstart kit to jumpstart development. Fujitsu Semiconductor America Inc.

Jade IdeaBoxx. The quickstart kit to jumpstart development. Fujitsu Semiconductor America Inc. Jade IdeaBoxx The quickstart kit to jumpstart development Fujitsu Semiconductor America Inc. Table of Contents Standards Used in This Guide...3 Glossary of Terms and Acronyms...3 IdeaBoxx Kit Contents...4

More information

EX L-8 User Guide

EX L-8 User Guide EX-9486-2L-8 User Guide Introduction: EX-9486-2L-8 are ARM9-based Linux ready industrial computer. The keyfeatures are as follow: 1. ARM920T ARM Thumb Processor with 200MIPS at 180MHz,Memory Management

More information

SAMA5D3x-CM Instruction to program images with PEEDI

SAMA5D3x-CM Instruction to program images with PEEDI SAMA5D3x-CM Instruction to program images with PEEDI 1) To begin programing with PEEDI you need to prepare some cables and install a terminal emulation software 1.1 First ensure that you have installed

More information

**Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network.

**Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network. **Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network.** 1. Download the correct drivers for the USB to Serial

More information

Matrix 500 Quick Installation Guide

Matrix 500 Quick Installation Guide Overview Matrix 500 features four serial ports, 10/100 Mbps Ethernet, USB port and SD socket for flash disk expansion. The preinstall Linux OS and GNU tool chain make Matrix 500 ready for your application

More information

First Steps. esom/sk4 esom/3517 Embedded Linux Starter Kit

First Steps. esom/sk4 esom/3517 Embedded Linux Starter Kit esom/sk4 esom/3517 Embedded Linux Starter Kit First Steps SSV Embedded Systems Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ssv-embedded.de Document Revision:

More information

MV 4412 Android 4.0 Compilation

MV 4412 Android 4.0 Compilation MV 4412 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MV4412 Android Compilation.doc Date 2012. 7. 12 Satus Working Revision History Date Version Update Descriptions

More information

M-508 Quick Installation Guide. Screw: Φ 3 mm

M-508 Quick Installation Guide. Screw: Φ 3 mm Overview M-08 is a Linux ready Single Board Computer featuring four serial ports, 0/00 Mbps Ethernet, USB port and SD socket for flash disk expansion. The pre-install Linux OS and GNU tool chain make M-08

More information

Once your USB drive is formatted for the FAT32 file system it can be mounted and tested on the GESBC To do this, use the following command:

Once your USB drive is formatted for the FAT32 file system it can be mounted and tested on the GESBC To do this, use the following command: GESBC-9302 Development With a USB Drive Paul H. Muller - Documatrix www.documatrix-usa.com ulx@linuxmail.org Disclaimer: The programs and procedures described here have been tested and are thought to be

More information

A Simple File Development System for the GESBC Paul H. Muller - Documatrix

A Simple File Development System for the GESBC Paul H. Muller - Documatrix A Simple File Development System for the GESBC-9302 Paul H. Muller - Documatrix www.documatrix-usa.com ulx@linuxmail.org Disclaimer: The programs and procedures described here have been tested and are

More information

Oxalis Getting Started

Oxalis Getting Started Oxalis Getting Started Document: Document: Getting Started Content of the document: Version: 001 First steps to power up, the board, to run uboot, Creator: ANT/MSB build kernel and boot linux. Date: 01.12.2018

More information

Notes on uclinux for Spartan 3E 1500 Development Kit. using EDK 9.1 and PetaLinux

Notes on uclinux for Spartan 3E 1500 Development Kit. using EDK 9.1 and PetaLinux Notes on uclinux for Spartan 3E 1500 Development Kit using EDK 9.1 and PetaLinux Duy-Ky Nguyen All Rights Reserved 2007-July-10 Note : HW : It is 1500 because it s modified from 500, the only change is

More information

MV V210 Android 4.0 Compilation

MV V210 Android 4.0 Compilation MV V210 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV210 Android Compilation.doc Date 2012. 5. 21 Satus Working Revision History Date Version Update Descriptions

More information

Xinu on Intel Galileo User Manual

Xinu on Intel Galileo User Manual Xinu on Intel Galileo User Manual Table of Contents Page 1.0 Firmware Update for the Intel Galileo board 2 2.0 Console connection on the Intel Galileo 2 2.1 Background 2 2.2 Serial cable setup for the

More information

Development Environment Embedded Linux Primer Ch 1&2

Development Environment Embedded Linux Primer Ch 1&2 Development Environment Embedded Linux Primer Ch 1&2 Topics 1) Systems: Host and Target 2) Host setup 3) Host-Target communication CMPT 433 Slides #3 Dr. B. Fraser 18-05-05 2 18-05-05 1 Host & Target Host

More information

Embedded Systems Ch 3A Linux Development Environment

Embedded Systems Ch 3A Linux Development Environment Embedded Systems Ch 3A Linux Development Environment Byung Kook Kim Dept of EECS Korea Advanced Institute of Science and Technology Overview 1. Embedded Linux 2. Cross-Development System 3. Setting Linux

More information

GIGABYTE. Software Reference Guide for MP30 (APM) Platform R01. Document Version:

GIGABYTE. Software Reference Guide for MP30 (APM) Platform R01. Document Version: GIGABYTE Software Reference Guide for MP30 (APM) Platform R01 Document Version: R01 1 CONTENTS BASICS SECTION... 3 1.1 Equipment and tools list... 3 1.2 How to make Ubuntu OS image to SD card... 5 1.3

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

Embedded System Design

Embedded System Design Embedded System Design Lecture 10 Jaeyong Chung Systems-on-Chips (SoC) Laboratory Incheon National University Environment Variables Environment variables are a set of dynamic named values that can affect

More information

First Steps. esom/sk5 esom/3517 Embedded Linux Starter Kit

First Steps. esom/sk5 esom/3517 Embedded Linux Starter Kit esom/sk5 esom/3517 Embedded Linux Starter Kit First Steps SSV Embedded Systems Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ssv-embedded.de Document Revision:

More information

SHB120 Series Intel Socket 1155 Core i7 / Core i5 / Core i3 / Processor PICMG 1.3 Full-Size CPU Card USER S MANUAL (V1.1)

SHB120 Series Intel Socket 1155 Core i7 / Core i5 / Core i3 / Processor PICMG 1.3 Full-Size CPU Card USER S MANUAL (V1.1) SHB120 Series Intel Socket 1155 Core i7 / Core i5 / Core i3 / Processor PICMG 1.3 Full-Size CPU Card USER S MANUAL (V1.1) 健昇科技股份有限公司 JS AUTOMATION CORP. 新北市汐止區中興路 100 號 6 樓 6F., No.100, Zhongxing Rd.,

More information

400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models

400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models June 2014 400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models Author: Thomas W. Heck, Sr. Design Engineer Janus Remote Communications Table of Contents Overview..................................................................................

More information

MontaVista Linux Preview Kit for Professional Edition 2.1 for the MIPS Technologies, Inc. Malta 4KC and 5KC (Big-Endian)

MontaVista Linux Preview Kit for Professional Edition 2.1 for the MIPS Technologies, Inc. Malta 4KC and 5KC (Big-Endian) MontaVista Linux Preview Kit for Professional Edition 2.1 for the MIPS Technologies, Inc. Malta 4KC and 5KC (Big-Endian) Cross-Development Quick Start Guide 1237 E. Arques Ave. Sunnyvale, CA 94085 Copyright

More information

Use U-Boot. U-Boot Main Commands. U-Boot script capability

Use U-Boot. U-Boot Main Commands. U-Boot script capability Use U-Boot U-Boot Main Commands setenv this command is used to set variables saveenv this command saves variables previously set in the environment permanent storage space printenv this command print the

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

PetaLinux SDK Guide to QEMU System Simulation

PetaLinux SDK Guide to QEMU System Simulation PetaLinux SDK Guide to QEMU System Simulation v1.1 November 27, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 PetaLinux Software Simulation with QEMU...3

More information

SCM EVK (SCM120

SCM EVK (SCM120 SCM120-120-EVK (SCM120 and SCB120) BSP Linux User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility

More information

W90N745 BSP Quick Start Guide

W90N745 BSP Quick Start Guide W90N745 BSP Quick Start Guide 1 Table of Contents- 1. INTRODUCTION OF THIS DOCUMENT...3 2. SYSTEM REQUIREMENT...3 3. HARDWARE CONNECTION...3 4. UCLINUX BSP INSTALLATION PROCEDURE...4 5. NON-OS BSP INSTALLATION

More information

Getting Started With Linux on the LPC3250 OEM Board

Getting Started With Linux on the LPC3250 OEM Board LPC3250 Getting Started with Linux Getting Started With Linux on the LPC3250 OEM Board Getting Started With Linux on the LPC3250 OEM Board Page 2 Embedded Artists AB Davidshallsgatan 16 SE-211 45 Malmö

More information

Getting Started with BeagleBoard xm

Getting Started with BeagleBoard xm Getting Started with BeagleBoard xm by Getting Started with BeagleBoard-xM 1. Beagleboard-xM BeagleBoard.org ก Texas Instruments DM3730 1 GHz ก ARM Cortex-A8 (DSP) (PowerVR) (RAM) 512 MB Serial Port, USB

More information

MCAM335x Linux User's Guide

MCAM335x Linux User's Guide Pag. 1 of 17 MCAM335x Linux User's Guide Pag. 2 of 17 Contents MCAM335x Linux User's Guide... 1 About this Manual... 4 Installation... 4 Introduction... 4 Prerequisites... 4 Install LSP packages... 5 U

More information

LS9200 User Guide LinkSprite Technologies, Inc.

LS9200 User Guide LinkSprite Technologies, Inc. LS9200 User Guide LinkSprite Technologies, Inc. 1 / 17 Table of Contents 1. Foreword... 3 2. Features... 3 3. Part and jumper description... 4 Part description... 4 LED and Key description... 4 Jumper

More information

DRIVER STATION v1.0 UTILITY LOADER Created: 22DEC2008 FIRST DRIVER STATION UTILITY LOADER RE-IMAGE INSTRUCTIONS

DRIVER STATION v1.0 UTILITY LOADER Created: 22DEC2008 FIRST DRIVER STATION UTILITY LOADER RE-IMAGE INSTRUCTIONS FIRST DRIVER STATION UTILITY LOADER RE-IMAGE INSTRUCTIONS 1 Introduction This document describes steps to load the Driver Station (DS) v1.0 Utility Loader (UL). The UL can be used to re-image the DS, perform

More information

rbox610 Series Robust Din-rail Fanless Embedded System Web Configuration and App Software User s Manual

rbox610 Series Robust Din-rail Fanless Embedded System Web Configuration and App Software User s Manual rbox610 Series Robust Din-rail Fanless Embedded System Web Configuration and App Software User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information.

More information

GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011

GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011 GM8126 U-BOOT User Guide Rev.: 0.2 Issue Date: May 2011 REVISION HISTORY Date Rev. From To Apr. 2011 0.1 - Original May 2011 0.2 - Modified Chapters 5 and 8 Added Chapter 7 Copyright 2011 Grain Media,

More information

1. Conventions in this tutorial Introduction Check and change configuration settings as needed Start Digi ESP...

1. Conventions in this tutorial Introduction Check and change configuration settings as needed Start Digi ESP... This tutorial introduces the power and features of Digi ESP for Embedded Linux as a development environment. It shows how to create a simple Linux application, transfer it to a target development board,

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

DTK2410 Specification

DTK2410 Specification version 1.0 DIGNSYS Inc. FEATURES Hardware DTK2410 reference board Reference board for embedded application SAMSUNG S3C2410 MCU NOR/NAND Flash and SDRAM USB host and device UART interface JTAG interface

More information

AT91SAM9G45-EVK Linux. User Manual

AT91SAM9G45-EVK Linux. User Manual AT91SAM9G45-EVK Linux User Manual Revision History Rev Date Description 1.0 2011-02-10 Initial version Catalogue 1. BUILD THE DEVELOPMENT PLATFORM... 1 1.1Create the working directory... 1 1.2 Cross compilation

More information

Linux. For BCT TM1 / HB5. User Guide. Document Reference: BCTTM1HB5 Linux User Guide. Document Issue: 1.2. Associated SDK release: 1.

Linux. For BCT TM1 / HB5. User Guide. Document Reference: BCTTM1HB5 Linux User Guide. Document Issue: 1.2. Associated SDK release: 1. Linux For BCT TM1 / HB5 User Guide Document Reference: BCTTM1HB5 Linux User Guide Document Issue: 1.2 Associated SDK release: 1.2 Author: D Robinson Contents 1. Introduction... 4 2. Environment Setup...

More information

MB/ Starter Kit: First Steps

MB/ Starter Kit: First Steps MB/1520-100 Starter Kit: First Steps The Application Board MB/1520-100 Starter Kit contains everything you need to get started to build your safe embedded communication environment via Ethernet technology.

More information

PCIe 10G SFP+ Network Card

PCIe 10G SFP+ Network Card PCIe 10G SFP+ Network Card User Manual Ver. 1.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2 Features...

More information

Pronto PicOS 1.4 Installation Reference Guide

Pronto PicOS 1.4 Installation Reference Guide Pronto PicOS 1.4 Installation Reference Guide PICA8 Inc. Mar, 2012 Copyright (C) 2009, 2010, 2011, 2012 Pica8, Inc. All rights reserved. Pica8, Inc. makes no warranty of any kind with regard to this material,

More information

Q7M EVK (Q7M120

Q7M EVK (Q7M120 Q7M120-120-EVK (Q7M120 and Q7B120) BSP Linux User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility

More information

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive.

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive. 1 This guide is for users wishing to use an embedded system or appliance, such as an Alix board, HP Thin Client (we strongly recommend and have had tremendous success with the HP T5710) with ICOM repeater

More information

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration.

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration. 1 of 7 04/18/09 15:39 BeagleBoardNAND From elinux.org This page is about using (booting/running from) NAND (http://en.wikipedia.org/wiki/flash_memory#nand_flash) memory on BeagleBoard. Parts of this page

More information

Zoom OMAP-L138 experimenter Kit Lab Manual

Zoom OMAP-L138 experimenter Kit Lab Manual Zoom OMAP-L138 experimenter Kit Lab Manual Sezer GÖREN UĞURDAĞ;Abdullah YILDIZ;Onur DEMİR RESys Lab - YEDITEPE UNIVERSITY Copyright 2011 [Type text] [Type text] [Type text] TABLE of CONTENTS 1. SERIAL

More information

U-boot quick start guide

U-boot quick start guide Rev. 01 15 February 2007 User guide Document information Info Keywords Abstract Content U-boot, LPC2294, LPC2292, LPC2290/01, LPC2220, LPC2214, LPC2212, LPC2210/01 This document is a simple user guide

More information

PAC-5010 Programmable Automation Controller User Guide

PAC-5010 Programmable Automation Controller User Guide PAC-5010 Programmable Automation Controller User Guide Version 1.0 Copyright Artila Electronics Co., Ltd. All Rights Reserved. Table of Contents 1. Introduction... 1 1.1 Features... 1 1.2 Packing List...

More information

Release Notes of QNX Neutrino BSP for Freescale MPC8641D HPCN 1.0.0#

Release Notes of QNX Neutrino BSP for Freescale MPC8641D HPCN 1.0.0# Release Notes of QNX Neutrino 6.4.0 BSP for Freescale MPC8641D HPCN 1.0.0# System requirements# Target system# Board version: Freescale MPC8641D HPCN (argo navis) Reference Board 8 MB of flash U-Boot 1.1.3

More information

Quick Start Guide SBC21/NSD21/EC 21 SBC21 / EC21 / NSD21. Quick Start Guide. Copyright IC Nexus Corporation. All rights reserved

Quick Start Guide SBC21/NSD21/EC 21 SBC21 / EC21 / NSD21. Quick Start Guide. Copyright IC Nexus Corporation. All rights reserved SBC21 / EC21 / NSD21 Quick Start Guide Copyright 2000 2013 IC Nexus Corporation. All rights reserved Release Notes Version Release Date Notes 1.0 June 2013 Initial release 2.0 October 2013 Correct some

More information

EM210 Burn Linux Image Manual. Catalogue

EM210 Burn Linux Image Manual. Catalogue EM210 Burn Linux Image Manual Catalogue 1. Make the SD Card used to burn image... 2 2. Burn the uboot by SD card... 7 3. Set SD booting mode... 11 4. Use sdfuse to burn system by SD card... 12 5. Use fastboot

More information

UPGRADING THE ARCTIC FIRMWARE

UPGRADING THE ARCTIC FIRMWARE Viola Systems Ltd. tel +358-(0)201-226 226 Lemminkäisenkatu 14-18B fax +358-(0)201-226 220 FIN-20520, Turku e-mail support@violasystems.com Finland APPLICATION NOTE VA-09-5-2 UPGRADING THE ARCTIC FIRMWARE

More information

UEIPAC VxWorks User Manual

UEIPAC VxWorks User Manual 27 Renmar Av. Walpole, MA 02081 Web site: www.ueidaq.com E-mail: info@ueidaq.com UEIPAC VxWorks User Manual January 2018 Edition Copyright 2018 United Electronic Industries, Inc. All rights reserved No

More information

EM210 Linux User Manual

EM210 Linux User Manual EM210 Linux User Manual V1.2 Date:2014-10-10 www.armdesigner.com EM210 Linux User Manual Index 1. Features...3 2. Hardware Introduction...3 2.1 Hardware interface...4 2.2 Set boot mode...4 3. Software

More information

Lab2 - Bootloader. Conventions. Department of Computer Science and Information Engineering National Taiwan University

Lab2 - Bootloader. Conventions. Department of Computer Science and Information Engineering National Taiwan University Lab2 - Bootloader 1 / 20 Cross-compile U-Boot. Connect to Raspberry Pi via an USB-TTL cable. Boot Raspberry Pi via U-Boot. 2 / 20 Host Machine OS: Windows Target Machine Raspberry Pi (2 or 3) Build Machine

More information

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011 GM8126 LINUX User Guide Rev.: 0.1 Issue Date: January 2011 REVISION HISTORY Date Rev. From To Jan. 2011 0.1 - Original Copyright 2011 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2011 Grain

More information

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5 Contents 1 Description 2 2 Supported Devices 3 3 Connection, Shell 4 3.1 Serial Connection over Console Port...................... 4 3.2 SSH Connection................................. 4 3.3 Internet Connection...............................

More information

The blob bootloader. The blob bootloader. Thomas Petazzoni Free Electrons

The blob bootloader. The blob bootloader. Thomas Petazzoni Free Electrons The blob bootloader The blob bootloader Thomas Petazzoni Free Electrons 1 Rights to copy Copyright 2008 2009, Free Electrons feedback@free electrons.com Document sources, updates and translations: http://free

More information

User Guide Linux for AT91CAP9-STK Version 1.1. User Guide LINUX FOR AT91CAP9-STK VERSION: 1.1 1/11

User Guide Linux for AT91CAP9-STK Version 1.1. User Guide LINUX FOR AT91CAP9-STK VERSION: 1.1 1/11 User Guide LINUX FOR AT91CAP9-STK VERSION: 1.1 1/11 History of Changes Revision Issue Date Descripion Author Ver 1.0 2009-04-24 First version of the document Olivier Arnal Ver 1.1 2009-04-27 Minor modification

More information

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual Glomation Embedded Single Board Computer GESBC-3130S User s Manual Table of Contents Chapter 1 Introducing the GESBC-3130S Single Board Computer... 4 GESBC-3130S Overview... 4 Advanced Features... 4 LPC-3130...

More information

MBL Users Manual For EV44B0-II Board

MBL Users Manual For EV44B0-II Board For EV44B0-II Board MICETEK International Inc., 1/28 Glossary MBL MICETEK BOOT LOADER MICETEK International Inc., 2/28 Table of Contents Introduction... 5 Memory Map... 6 Flash Memory Map... 6 DRAM Memory

More information

PetaLinux SDK User Guide. Firmware Upgrade Guide

PetaLinux SDK User Guide. Firmware Upgrade Guide PetaLinux SDK User Guide Notice of Disclaimer The information disclosed to you hereunder (the "Materials") is provided solely for the selection and use of Xilinx products. To the maximum extent permitted

More information

INSTALLATION. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

Booting installation of the diskless VP-100 Single Board Computer rcc1 and rcc2 at the TileCal Lab in Valencia

Booting installation of the diskless VP-100 Single Board Computer rcc1 and rcc2 at the TileCal Lab in Valencia Version: 00 Date: 24-Feb-05 Authors: Antoni Munar, Javier Sanchez, Esteban Fullana, Belén Salvachuà Booting installation of the diskless VP-100 Single Board Computer rcc1 and rcc2 at the TileCal Lab in

More information

Guidelines for sett ing up the Tribbox

Guidelines for sett ing up the Tribbox Guidelines for sett ing up the Tribbox What is needed: Linux distribution ( recommended is Fedora Core 6 for x86 ) Serial adaptercable ( Kabel.pdf ) Tribbox Network SATA Harddisk ( for Tribbox, if needed

More information

LINUXBUILD User's Manual

LINUXBUILD User's Manual . LEON Linux Linux for LEON processors 2017 User's Manual The most important thing we build is trust LINUXBUILD User's Manual Linux build environment for LEON systems 1 www.cobham.com/gaisler Table of

More information

PCIe 10G 5-Speed. Multi-Gigabit Network Card

PCIe 10G 5-Speed. Multi-Gigabit Network Card PCIe 10G 5-Speed Multi-Gigabit Network Card User Manual Ver. 2.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction...

More information

PNP/5280 µclinux Starter Kit: First Steps

PNP/5280 µclinux Starter Kit: First Steps PNP/5280 µclinux Starter Kit: First Steps The DIL/NetPC PNP/5280 embedded Linux starter kits DNP/SK20 contains everything you need to get started with your Motorola MCF5280 ColdFire-based embedded networking

More information

10/02/2015 PetaLinux Linux Image Network Connection

10/02/2015 PetaLinux Linux Image Network Connection Contents 1 History... 3 2 Introduction... 3 3 Vivado Project... 4 3.1 Open Vivado... 4 3.2 New Project... 5 3.3 Project Settings... 13 3.4 Create Processor System... 14 3.4.1 New Block Diagram... 14 3.5

More information

UM0844 User manual. Getting started with SPEAr Linux support package (LSP2.3) Introduction

UM0844 User manual. Getting started with SPEAr Linux support package (LSP2.3) Introduction User manual Getting started with SPEAr Linux support package (LSP2.3) Introduction Note: This manual provides application developers with a first introduction to the Linux-based reference software installed

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

Hardware Assisted Debug with Embedix Linux

Hardware Assisted Debug with Embedix Linux Application Notes for Professional Developers of Embedded Systems # 02-002 Hardware Assisted Debug with Embedix Linux Introduction Types Of Interface Device Recommended Units What Targets Does the Abatron

More information

TMS320DM642 Evalaution. Technical Modul e Reference DSPDevelopment Systems OSK5912. User's Guide. MontaVista Linux Preview CD-ROM

TMS320DM642 Evalaution. Technical Modul e Reference DSPDevelopment Systems OSK5912. User's Guide. MontaVista Linux Preview CD-ROM 2003 DSPDevelopment Systems OMAP5912 Starter Kit (OSK5912) Users Guide TMS320DM642 Evalaution Module Technical Modul e Reference OSK5912 User's Guide Universal 5V Power Supply 9 Pin Serial Null Modem Cable

More information

U-Boot and Linux Kernel Debug using CCSv5

U-Boot and Linux Kernel Debug using CCSv5 U-Boot and Linux Kernel Debug using CCSv5 In this session we will cover fundamentals necessary to use CCSv5 and a JTAG to debug a TI SDK-based U-Boot and Linux kernel on an EVM platform. LAB: http://processors.wiki.ti.com/index.php/sitara_linux_training:_uboot_linux_debu

More information

NADK Reflector Application Debug

NADK Reflector Application Debug Freescale Semiconductor Document Number: AN4940 Application Note Rev. 11.2, 01/2016 NADK Reflector Application Debug 1 Introduction The most popular user space application for SDK/NADK usage is the packet

More information

UNIGRAND BM0400 Generic Bluetooth Class II Module

UNIGRAND BM0400 Generic Bluetooth Class II Module UNIGRAND BM0400 Generic Bluetooth Class II Module KEY FEATURES Bluetooth 2.0+EDR Power Level Class 2 (Max 4dBm) External Antenna BQB qualified APPLICATIONS RS232 Replacement Wireless HID Keyboard/Mouse

More information

OVERDRIVE Quick Start Guide. v.1.0

OVERDRIVE Quick Start Guide. v.1.0 OVERDRIVE 1000 Quick Start Guide v.1.0 TABLE OF CONTENTS 1. Introduction 3 2. Connections 3 3. Console Connection 4 3.1 Windows 4 3.2 Linux 5 3.3 Mac OS X 6 3.4 Power-up Procedure 6 3.5 Logging In 9 4.

More information

How to Recover the OS7030

How to Recover the OS7030 How to Recover the OS7030 What you will need: - You will need to make up a serial cable to connect to the SIO connector inside the OS7030. PC serial port OS7030 SIO Connector 9 Pin D Sub Female connector

More information

5-Speed NBASE-T Network. Controller Card

5-Speed NBASE-T Network. Controller Card 5-Speed NBASE-T Network Controller Card User Manual Ver. 1.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction...

More information