EM210 Linux User Manual

Size: px
Start display at page:

Download "EM210 Linux User Manual"

Transcription

1 EM210 Linux User Manual V1.2 Date: EM210 Linux User Manual

2 Index 1. Features Hardware Introduction Hardware interface Set boot mode Software Introduction Version Linux Features Compiler Environment Vmwa re7.0+ubuntu Install the Cross Compile toolchain Compile the Source Compile u boot Compile kernel Generate the root file system(ext2) Burn images to inand Burn uboot.bin to inand when there have no uboot.bin in inand burn kernel and system...24 EM210 Linux User Manual 2

3 1. Features Processor: Samsung ARM Cortex-A8 S5PV210AH, up to 1GHz Memory: 512MB DDR2 Flash: 4GB emmc inand Supporting 2D graphics acceleration, up to 160Mpixels/s, maximum resolution 8000*8000 Supporting 3D graphics acceleration(power VR SGX540) Monolithic integrated power management chip Supporting 4.3 inch, 7 inch, 10.1 inch resistive touch screen Supporting GPS, WCDMA, Camera, WIFI, RFID 3.1Mega pixels Camera Supporting Cramfs/ramfs/ext3/fat32/nfs System parameters can be saved in REGEDIT, and residual Flash can be read and written The system can be updated via USB interface. Supporting qtopia Dimensions: Carrier board-108mm 141mm; CPU board- 60mm 60mm 2. Hardware Introduction EM210 Linux User Manual 3

4 2.1 Hardware interface Feature Specifications Samsung ARM Cortex-A8 S5PV210AH, 1GHz System Clock Supporting NEON instruction CPU Supporting MPEG-4, MPEG2, H.264/H263, VC-1 and DivX video codec Supporting 2D graphics acceleration, maximum resolution 8000*8000 Supporting 3D graphics acceleration(power VR SGX540) Memory Default mounted 512MB DDR2 inand Samsung KLM4G1FE3B, 4GB inand Power 5V power supply for CPU board CPU Board Dimension 60mm 60mm COM-0, five-wire DB9 RS232 serial port Serial Ports COM-1, four-wire RJ11 serial port (UARTs) COM-2, four-wire RJ11 serial port Resistor Touch Screen: The board supports driver for 4.3", 7", 10.1", LCD 15"(1024*768) TFT LCD Capacitive Touch Screen: The board supports driver for 4.3" and 7" Ethernet 10M/100M High performance Ethernet, RJ45 interface USB 2 USB Host2.0, 1 USB2.0 OTG Camera 1 20-pin 310Megapixels CMOS camera interface JTAG 1 10-pin JTAG Port Mouse Mouse working via USB Keyboard 6*7 Keypad interface, alternative module Audio codec Adopt WM9713 Audio chip, Audio I / O interface RTC Real Time Clock, powered by external lithium battery SD card 1 T-Flash card, 1 SIM card slot General Purpose I/O 1 30-pin SPI Expansion Connector Buttons 6 Programmable User Buttons WIFI b/g/n, alternative module WCDMA Supporting GSM card make calls, send messages, alternative module GPS Built-in non-directional antenna, alternative module Carrier board Dimension 108mm 141mm 2.2 Set boot mode EM210 provide a variety of boot mode, can be set by DIP switch. Currently we only use USB boot mode and inand boot mode. Set as follows: EM210 Linux User Manual 4

5 Boot Mode J1 J2 J3 J4 J5 J6 inand ON ON OFF OFF ON ON USB OFF ON ON ON OFF ON 3. Software Introduction 3.1 Version 1.Bootloader: u-boot Kernel: linux qtopia Cross Compile toolchain: arm-2009q3 3.2 Linux Features LCD driver LCD backlight driver Resistive touch screen driver HDMI driver HSMMC/SD/MMC/SDIO drvier IIC driver IIS driver KEYBD driver Audio driver,supprot AC97 and IIS DMA driver RTC driver USB HOST/DEVICE driver JPEG hardware codec driver MFC multimedia hardware codec driver(supports MPEG-4/MPEG2, H.264/263,VC-1,DivX and other formats) CMOS/CCD Camera driver 2D hardware acceleration driver 3D hardware acceleration driver Ethernet driver SD card driver(the maximum capacity 32G) 3G driver SDIO WIFI driver BT driver Capacitive touch screen driver Power management driver EM210 Linux User Manual 5

6 4. Compiler Environment 4.1 Vmwa re7.0+ubuntu10.04 Install Vmware7.0 in windows OS, and then install ubuntu10.04 in vmware to compile. You can see the installing steps in the initial version. 4.2 Install the Cross Compile toolchain cross compile toolchain version: arm -2009q3 location: Tools\linux You had better install the cross compile toolchain to /usr/local/arm/ ( The makefile have designated the directory in the source ). User also can install other versions of the tool chain according your demand.you can reference to the following installing steps: # mkdir /usr/local/arm # tar xvjf arm-2009q3.tar.bz2 C /usr/local/arm # gedit /etc/bash.bashrc Add the following information in the end of bash.bahshrc : PATH=/usr/local/arm/arm-2009q3/bin:$PATH Export PATH Save bash.bashrc and execute the following command to set a default cross-compiler: #source /etc/ bash.bashrc Execute the following command to check if the cross-compiler has been installed successfully and check the revised version: # arm-linux-gcc -v 5. Compile the Source 5.1 Compile u boot u-boot.bin is mainly used to guide and start the kernel.the steps of compiling: # tar xvf uboot_smdkv210-boardcon_v6_inand.tar.gz # cd uboot_smdkv210-boardcon # make distclean # make smdkv210single_config # make If it is ok, you can get the u-boot. bin in the current path. 5.2 Compile kernel There is em210.config file which we had configured in the kernel source folder,and you can use directly, the default LCD is 7 inch. The steps of compiling: # tar xvf kernel_v6.0_inand.tar.gz # cd kernel # make distclean EM210 Linux User Manual 6

7 # cp EM210_iNand_config.config # make If it is ok,you can get the zimage file in the arch/arm/boot folder. 5.3 Generate the root file system(ext2) 1 generate the genext2fs command # sudo tar xvf genext2fs tar.gz # cd genext2fs #./configure # make # make install Now the genext2fs will be generated in current directory,as follow: 2 Edit script(the script is in \Linux\Tools\linux directory) #!/bin/bash num_blocks=`du sk /home/zgf/desktop/210/system tail -n1 awk '{print $1;}'` if [ $num_blocks -lt ]; then extra_blocks=3072; else extra_blocks=20480; fi num_blocks=`expr $num_blocks + $extra_blocks` num_inodes=`find /home/zgf/desktop/210/system wc -l` num_inodes=`expr $num_inodes + 500` /home/zgf/desktop/genext2fs -d /home/zgf/desktop/210/system -b $num_blocks -N $num_inodes -m 0 /nfsboot/system.img tune2fs -L system /nfsboot/system.img tune2fs -C 1 /nfsboot/system.img tune2fs -O rw /nfsboot/system.img e2fsck -fy /nfsboot/system.img EM210 Linux User Manual 7

8 Note: the red part needs to be changed to your own the corresponding file system, the file system name should be change to system.blue command is your first step to do the command position. Give permission to execute, execute the following command: # sudo chmod +x install.sh 3 unzip the file system source code package and generate the file system of ext2 format # sudo tar xvf system.tar.gz # sudo./install.sh Now system.img is in directory nfsboot,you can burn it to the development board and then start the system. 6. Burn images to inand 6.1 Burn uboot.bin to inand when there have no uboot.bin in inand. Step 1: Set EM210 board to USB boot mode. The boot mode configuration: Boot Mode J1 J2 J3 J4 J5 J6 inand ON ON OFF OFF ON ON USB OFF ON ON ON OFF ON Step 2: EM210 board connect 5V adapter, serial cable, USB cable (between EM210 USB OTG port and PC). Step 3: Power on EM210 board. The PC will report that found new hardware if your PC have not ever install this usb drive(tools\windows\usb_download_driver),install the driver as followings, EM210 Linux User Manual 8

9 Click next and select tools/windows/usb_download_driver director. EM210 Linux User Manual 9

10 EM210 Linux User Manual 10

11 Click Browse and select tools/windows/usb_download_driver/secusb2.sys. Click Open and then clilck OK. EM210 Linux User Manual 11

12 Now,the USB download driver is installed successfully. EM210 Linux User Manual 12

13 Step 4: Open DNW(Tools\windows\dnw\dnw.exe) Serial Port->connect: to connect EM210 serial console configuration->options: to set USB Port download address:0xd This time on the top of DNW window will show: [COM1:115200bps][USB:OK] [ADDR:0xd ] Then lunch USB Port->transmit:transmit to download images\v210_usb.bl2.bin to EM210 RAM. notice: All the images and tool cmd.exe(include V210_USB.BL2.bin,u-boot.bin,zImage-7inch_R and system.img) are stored in the directory \Linux\Images Confiure->Option to set USB Port download address: 0x23e00000 lunch USB Port->transmit->transmit to download Linux\Images\uboot.bin to EM210 RAM. This time uboot.bin are going to run in EM210 board and will output message through serial port. Following pictures show the detailed process: EM210 Linux User Manual 13

14 EM210 Linux User Manual 14

15 EM210 Linux User Manual 15

16 EM210 Linux User Manual 16

17 Step 5: Select option e go into command line mode, EM210 Linux User Manual 17

18 in uboot console create 3 partitions for inand as followings, SMDKV210#fdisk -c 0 Then lunch fastboot SMDKV210#fastboot The pc will report that have found new hardware if you have not ever install this usb driver(tools\windows\usb_fastboot_driver) EM210 Linux User Manual 18

19 Now you need to install the USB fastboot driver. Click next and select Tools/windows/usb_fastboot_driver director. EM210 Linux User Manual 19

20 Click Browse and select Tools/windows/usb_fastboot_driver/i386/WinUSBCoInstaller.dll. EM210 Linux User Manual 20

21 EM210 Linux User Manual 21

22 Now,the USB fastboot driver is installed successfully. EM210 Linux User Manual 22

23 Step 6: Open cmd.exe(\linux\image, double-click directly and open cmd.exe in the directory) and lunch fastboot flash bootloader u-boot.bin to flash uboot.bin to inand, following pictures show the detailed process. EM210 Linux User Manual 23

24 6.2 burn kernel and system Step 1: Set the JP106 to inand boot mode as follow: Step 2: Boot Mode J1 J2 J3 J4 J5 J6 inand ON ON OFF OFF ON ON Power on EM210 board and press any key within 3 seconds in serial console, Select option e go into command line mode,(if your PC have not ever install fastboot usb driver,the PC will report found new hardware),and input fastboot in uboot console create 3 partitions for inand as following, EM210 Linux User Manual 24

25 Open cmd.exe(\linux\image, double-click directly and open cmd.exe in the directory),and lunch follow command to burn kernel and system to inand: fastboot flash kernel zimage fastboot flash system system.img EM210 Linux User Manual 25

26 So far, all images have been flashed to inand. And now we can reboot the system. Step 3: uboot setup boot parameters, select [s]: EM210 Linux User Manual 26

27 Power on EM210 board and press any key within 3 seconds in serial console, Select option e go into command line mode SMDKV210#rm etc/pointercal SMDKV210#reboot Now the system go into calibrate the touch screen mode. Note: if you want to erase the system partition,please power on EM210 board and press any key within 3 seconds in serial console, select option f and y, it will be cleaned. As follow: EM210 Linux User Manual 27

28 Note: Sometimes fails to start, you need to set the startup parameters. Connect power, press and hold the power button for 3 seconds, and the system running, type any key in 3 seconds to enter uboot command line, enter your Selection: e, as following: # setenv bootcmd "movi read kernel C ; movi read rootfs ; bootm C " # setenv bootargs "console=ttysac2, noinitrd root=/dev/mmcblk0p1 rootfstype=ext2 rootdelay=2 rw init=/linuxrc " # saveenv EM210 Linux User Manual 28

Idea6410 Ubuntu User Manual V 0.19

Idea6410 Ubuntu User Manual V 0.19 V 0.19 Version: Ubuntu-9.04_v0.19 Linux PC environment: Ubuntu-9.04 1 1. Install Cross-compile 1.1 Open Linux-ubuntu_v0.19\cross_compile\ folder, and copy Arm-none-lunux-gnueabi-arm-2008q3-72-for-linux.tar.bz2

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

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

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

DevKit7000 Evaluation Kit

DevKit7000 Evaluation Kit DevKit7000 Evaluation Kit Samsung S5PV210 Processor based on 1GHz ARM Cortex-A8 core Onboard 512MByte DDR2 and 512MByte NAND Flash 4 UART, 4 USB Host, USB Device, Ethernet, Audio, TF, RTC,... Supports

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

Introduction to the TenByTen6410

Introduction to the TenByTen6410 Introduction to the TenByTen6410 Illustration shows a pre-production unit, appearance might be slightly different on final product. Introduction The TenByTen6410 is a high performance ARM11 single board

More information

Installation Guide for MV6410 (Linux 2.6)

Installation Guide for MV6410 (Linux 2.6) Installation Guide for MV6410 (Linux 2.6).,Cd.Ltd MV6410 Linux 2.6 Guide 1 Document Information Version 1.0 File Name Mv6410 Linux 2.6 Guide.doc Date 2009.1.30. Satus Working Revision History Date Version

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

SBC8140 Single Board Computer

SBC8140 Single Board Computer SBC8140 Single Board Computer TI DM3730 Processor based on 1GHz ARM Cortex-A8 core Flexible Design with a Tiny CPU Board mounted on Expansion Board Memory supporting 256MByte DDR SDRAM and 512MByte NAND

More information

OK335x Products Guide. Contents

OK335x Products Guide. Contents Contents Contents... 2 Version history... 3 Chapter One General Introduction... 4 1.1 Products Overview... 4 1.2 Application Fields... 5 Chapter Two OK335xD Single Board Computer... 6 2.1 Product Introduction...

More information

DEVELOPMENT GUIDE VAB-630. Linux BSP v

DEVELOPMENT GUIDE VAB-630. Linux BSP v DEVELOPMENT GUIDE VAB-630 Linux BSP v1.0.1 100-09182017-114400 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

User s Manual for the Boundary Devices Nitrogen R board

User s Manual for the Boundary Devices Nitrogen R board 1 User s Manual for the Boundary Devices Nitrogen R board July 6, 2010 2 1 Revision History Date Revision Description 2010-06-17 1.0 First (rough) draft 2010-06-25 1.1 Still rough. Additional details on

More information

DevKit8500D Evaluation Kit

DevKit8500D Evaluation Kit DevKit8500D Evaluation Kit TI DM3730 Processor based on 800MHz ARM Cortex-A8 core Onboard 512MByte DDR SDRAM and 512MByte NAND Flash 3 UART, 4 USB Host, USB OTG, Ethernet, Audio, TF, Keyboard, Jtag,...

More information

Matrix. Get Started Guide

Matrix. Get Started Guide Matrix Get Started Guide Overview Matrix is a single board mini computer based on ARM with a wide range of interface, equipped with a powerful i.mx6 Freescale processor, it can run Android, Linux and other

More information

DEVELOPMENT GUIDE VAB-630. Android BSP v

DEVELOPMENT GUIDE VAB-630. Android BSP v DEVELOPMENT GUIDE VAB-630 Android BSP v1.0.3 1.00-08112017-153900 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

DS2 Products Auto-Update Tool BSP

DS2 Products Auto-Update Tool BSP 1.01-05192015-174700 USER GUIDE DS2 Products Auto-Update Tool BSP V1.3 Copyright Copyright 2013 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted,

More information

AT-501 Cortex-A5 System On Module Product Brief

AT-501 Cortex-A5 System On Module Product Brief AT-501 Cortex-A5 System On Module Product Brief 1. Scope The following document provides a brief description of the AT-501 System on Module (SOM) its features and ordering options. For more details please

More information

MYD-Y6ULX Development Board

MYD-Y6ULX Development Board MYD-Y6ULX Development Board MYC-Y6ULX CPU Module as Controller Board 528Hz NXP i.mx 6UL/6ULL ARM Cortex-A7 Processors 1.0mm pitch 140-pin Stamp Hole Expansion Interface for Board-to-Board Connections 256MB

More information

EX-9686U/A-L(A9) Hardware User Manual

EX-9686U/A-L(A9) Hardware User Manual EX-9686U/A-L(A9) Hardware User Manual Release Notes Version Release Date Notes 1.00 November, 2013 Initial Release 2.00 January, 2014 The 2 nd release Disclaimer This documentation is provided for use

More information

Embest SOC8200 Single Board Computer

Embest SOC8200 Single Board Computer Embest SOC8200 Single Board Computer TI's AM3517 ARM Cortex A8 Microprocessors 600MHz ARM Cortex-A8 Core NEON SIMD Coprocessor POWERVR SGX Graphics Accelerator (AM3517 only) 16KB I-Cache, 16KB D-Cache,

More information

This product is RoHS compliant PKA1GxxxRx-00R

This product is RoHS compliant PKA1GxxxRx-00R This product is RoHS compliant PKA1GxxxRx-00R Specification 2014.8.26 Version 0.5 Features System - ARM Cortex-A8 @ 600MHz - 256 MB LPDDR DRAM / 256 MB NAND Flash - 512 MB LPDDR DRAM / 512 MB NAND Flash

More information

Matrix. Get Started Guide V2.0

Matrix. Get Started Guide V2.0 Matrix Get Started Guide V2.0 Overview Matrix is a single board mini computer based on ARM with a wide range of interface, equipped with a powerful i.mx6 Freescale processor, it can run Android, Linux,

More information

1 Preparatory work. Q: How to burn images to Nand in KIT210 (Android2.3)? A:

1 Preparatory work. Q: How to burn images to Nand in KIT210 (Android2.3)? A: Q: How to burn images to Nand in KIT210 (Android2.3)? A: 1 Preparatory work Step 1: The necessary hardware to connect. 1. USB cable (the small port of cable is connected to the mini USB interface of KIT210,

More information

MYC-C437X CPU Module

MYC-C437X CPU Module MYC-C437X CPU Module - Up to 1GHz TI AM437x Series ARM Cortex-A9 Processors - 512MB DDR3 SDRAM, 4GB emmc Flash, 32KB EEPROM - Gigabit Ethernet PHY - Power Management IC - Two 0.8mm pitch 100-pin Board-to-Board

More information

OK335xS Users Manual Part I - Introduction

OK335xS Users Manual Part I - Introduction OK335xS Users Manual Part I - Introduction Copyright@2013-2014 http://www.arm9board.net COPYRIGHT STATEMENT Contents (content being images, text, programs and scripts) of this manual is copyright Witech

More information

DevKit8000 Evaluation Kit

DevKit8000 Evaluation Kit DevKit8000 Evaluation Kit TI OMAP3530 Processor based on 600MHz ARM Cortex-A8 core Memory supporting 256MByte DDR SDRAM and 256MByte NAND Flash UART, USB Host/OTG, Ethernet, Camera, Audio, SD, Keyboard,

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

Quick Start Guide. SABRE Platform for Smart Devices Based on the i.mx 6 Series

Quick Start Guide. SABRE Platform for Smart Devices Based on the i.mx 6 Series Quick Start Guide SABRE Platform for Smart Devices Based on the i.mx 6 Series Quick Start Guide About the SABRE Platform for Smart Devices Based on the i.mx 6 Series The Smart Application Blueprint for

More information

This product is RoHS compliant PK65VxxxRx-00R

This product is RoHS compliant PK65VxxxRx-00R This product is RoHS compliant PK65VxxxRx-00R Specification 2013-09-06 Version 0.4 Features System - ARM Cortex-A8 @ 600MHz - 256 MB LPDDR DRAM / 256 MB NAND Flash - 512 MB LPDDR DRAM / 512 MB NAND Flash

More information

This product is RoHS compliant PK70WxxxRx-00R

This product is RoHS compliant PK70WxxxRx-00R This product is RoHS compliant PK70WxxxRx-00R Specification 2013.09.06 Version 0.5 Features System - ARM Cortex-A8 @ 600MHz - 256 MB LPDDR DRAM / 256 MB NAND Flash - 512 MB LPDDR DRAM / 512 MB NAND Flash

More information

MYD-C7Z010/20 Development Board

MYD-C7Z010/20 Development Board MYD-C7Z010/20 Development Board MYC-C7Z010/20 CPU Module as Controller Board Two 0.8mm pitch 140-pin Connectors for Board-to-Board Connections 667MHz Xilinx XC7Z010/20 Dual-core ARM Cortex-A9 Processor

More information

MYD-C437X-PRU Development Board

MYD-C437X-PRU Development Board MYD-C437X-PRU Development Board MYC-C437X CPU Module as Controller Board Two 0.8mm pitch 100-pin Connectors for Board-to-Board Connections Up to 1GHz TI AM437x Series ARM Cortex-A9 Processors 512MB DDR3

More information

This product is RoHS compliant PK80SxxxRx-00R

This product is RoHS compliant PK80SxxxRx-00R This product is RoHS compliant PK80SxxxRx-00R Specification 2013-09-16 Version0.5 Features System - ARM Cortex-A8 @ 600MHz - 256 MB LPDDR DRAM / 256 MB NAND Flash - 512 MB LPDDR DRAM / 512 MB NAND Flash

More information

Hugo Cunha. Senior Firmware Developer Globaltronics

Hugo Cunha. Senior Firmware Developer Globaltronics Hugo Cunha Senior Firmware Developer Globaltronics NB-IoT Product Acceleration Platforms 2018 Speaker Hugo Cunha Project Developper Agenda About us NB IoT Platforms The WIIPIIDO The Gateway FE 1 About

More information

MYD-SAMA5D3X Development Board

MYD-SAMA5D3X Development Board MYD-SAMA5D3X Development Board MYC-SAMA5D3X CPU Module as Controller Board DDR2 SO-DIMM 200-pin Signals Consistent with Atmel's Official Board 536MHz Atmel SAMA5D3 Series ARM Cortex-A5 Processors 512MB

More information

REX-RED Community Android 4.3

REX-RED Community Android 4.3 REX-RED Community Android 4.3 Build Guide REXNOS CO.,Ltd Document Information Version 1.1 File Name REX5260 Android 4.3 Build Guide.doc Date May 20, 2014 Status Working Revision History Date Version Update

More information

S3C6410-TFAUbuntu Easy Guide

S3C6410-TFAUbuntu Easy Guide S3C6410-TFA Ubuntu TABLE OF CONTENTS S3C6410-TFAUbuntu simple manual...- 1 - S3C6410-TFAUbuntu simple manual......- 5-- 1.1 install and run Ubuntu......- 5-- 1.1.1 Ubuntu install to the development board

More information

MYD-IMX28X Development Board

MYD-IMX28X Development Board MYD-IMX28X Development Board MYC-IMX28X CPU Module as Controller Board Two 1.27mm pitch 80-pin SMT Connectors for Board-to-Board Connections 454MHz Freescale i.mx28 Series ARM926EJ-S Processors 128MB DDR2

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

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

SBC3100 (Cortex-A72) Single Board Computer

SBC3100 (Cortex-A72) Single Board Computer (Cortex-A72) Single Board Computer Ultra High Performance SBC with RK3399 (Cortex-A72 x2 + Cortex-A53 x4) @ 2Ghz : Single Board Computer H310: Input (receiver) Module : Output (display) Module D120: 4xCOM

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

PRODUCT Datasheet TECHNICAL FEATURES

PRODUCT Datasheet TECHNICAL FEATURES PRODUCT Datasheet TECHNICAL FEATURES Processor: Freescale i.mx6 Series ARM Cortex A9 scalable multicore (single, dual, quad) Clock: 1,2 GHz per core Perfomance MIPS (Coremark): Solo: 1128 (0.94), Dual:

More information

EM3188 Android5.1 User Manual

EM3188 Android5.1 User Manual EM3188 Android5.1 User Manual V1.0 Date: 2017-07-04 Boardcon Technology Limited www.armdesigner.com Change History Ver Date Description Author V1.0 2017-07-04 The initial released Version. Zhao Linhai,

More information

ROiK2 Digital Version

ROiK2 Digital Version ROiK2 Digital Version - MODEL : ROiK2 Digital - DATE : 2016.08.26 1. Main Spec. OS : Android 5.0.2(Lollipop) CPU : NXP4330Q - Cortex-A9 Quad Core @1.4Ghz Mali-400 MP4 GPU Memory : 1GB DDR3 @800Mhz SD Card

More information

QUICK START GUIDE VAB-600. Android BSP v

QUICK START GUIDE VAB-600. Android BSP v QUICK START GUIDE VAB-600 Android BSP v1.2.2 1.00-09072016-160200 Copyright Copyright 2016 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

망고 210 ICS mmc booting 메뉴얼 작성및 patch

망고 210 ICS mmc booting 메뉴얼 작성및 patch 망고 210 ICS mmc booting 메뉴얼 작성및 patch http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys CRZ Technology 1 Document

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

MYD-JA5D2X Development Board

MYD-JA5D2X Development Board MYD-JA5D2X Development Board MYC-JA5D2X CPU Module as Controller Board 500MHz Atmel SAMA5D26/27 ARM Cortex-A5 Processor 256MB DDR3 SDRAM, 256MB Nand Flash, 4MB Data FLASH, 64KB EEPROM Serial ports, USB,

More information

DEVELOPMENT GUIDE AMOS-820. Linux BSP v

DEVELOPMENT GUIDE AMOS-820. Linux BSP v DEVELOPMENT GUIDE AMOS-820 Linux BSP v4.1.1 1.00-05242017-134700 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

Hands-on with the Sitara Linux SDK

Hands-on with the Sitara Linux SDK Hands-on with the Sitara Linux SDK This presentation provides a hands-on overview of the Sitara Linux SDK. It focuses on the software and tools found in the SDK and how to use these tools to develop for

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

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

Contents. 1 Introduction Features Product Specifications Hardware Specification Software Specification...

Contents. 1 Introduction Features Product Specifications Hardware Specification Software Specification... SOM335x Specifications Contents 1 Introduction...2 2 Features... 3 3 Product Specifications...5 3.1 Hardware Specification... 6 3.2 Software Specification...8 3.3 Product Dimension... 10 4 Application

More information

PICO-i.MX6UL Development Platform for Android Things Quick Start Guide

PICO-i.MX6UL Development Platform for Android Things Quick Start Guide NXP Semiconductors Document Number: PICOIMX6ULQSUG User's Guide Rev. 0, 12/2017 PICO-i.MX6UL Development Platform for Android Things Quick Start Guide 1. Overview This tutorial helps new developers get

More information

DMT80480T070-32WT User Guide

DMT80480T070-32WT User Guide DMT80480T070-32WT User Guide Revision on April, 2014 Contents 1. Overview... 2 2. System Specifications... 2 3. Operating Guide... 4 3.1 Update the Boot Animation... 4 3.2 Hide / Show the Status Bar...

More information

Introduction Video Camera Support Option TREQ Platform Datasheet. January Rev. 2 A-317 Video Getting Started Guide 1 / 6

Introduction Video Camera Support Option TREQ Platform Datasheet. January Rev. 2 A-317 Video Getting Started Guide 1 / 6 Introduction Video Camera Support Option TREQ -317 Platform Datasheet January 2018 Rev. 2 A-317 Video Getting Started Guide 1 / 6 Introduction The TREQ -317 is a rugged Automotive Tablet designed for in-cab

More information

SABRE Board for Smart Devices

SABRE Board for Smart Devices Quick Start Guide SABRE Board for Smart Devices Based on the i.mx 7Dual Applications Processor SMART APPLICATION BLUEPRINT FOR RAPID ENGINEERING (SABRE) Quick Start Guide GET TO KNOW SABRE BOARD FOR SMART

More information

A-307. Mobile Data Terminal. Android OS Platform Datasheet

A-307. Mobile Data Terminal. Android OS Platform Datasheet A-307 Mobile Data Terminal Android OS Platform Datasheet Revision 1.2 March, 2014 A-307 Platform Overview A-307 Platform Overview The A-307 provides Original Equipment Manufacturers (OEMs) and Telematics

More information

Quick Start Guide. i.mx 6SoloLite Evaluation Kit

Quick Start Guide. i.mx 6SoloLite Evaluation Kit Quick Start Guide i.mx 6SoloLite Evaluation Kit Quick Start Guide About the i.mx 6SoloLite Evaluation Kit The i.mx 6SoloLite evaluation kit (EVK) offers a solid platform to evaluate the i.mx 6 series single-core

More information

MYD-IMX28X Development Board

MYD-IMX28X Development Board MYD-IMX28X Development Board MYC-IMX28X CPU Module as Controller Board Two 1.27mm pitch 80-pin SMT Male Connectors for Board-to-Board Connections 454MHz Freescale i.mx28 Series ARM926EJ-S Processors 128MB

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

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. Poblano 43C TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages.

More information

MYC-C7Z010/20 CPU Module

MYC-C7Z010/20 CPU Module MYC-C7Z010/20 CPU Module - 667MHz Xilinx XC7Z010/20 Dual-core ARM Cortex-A9 Processor with Xilinx 7-series FPGA logic - 1GB DDR3 SDRAM (2 x 512MB, 32-bit), 4GB emmc, 32MB QSPI Flash - On-board Gigabit

More information

QuickStart Instructions. Programming Embedded Linux on phycore-lpc3180

QuickStart Instructions. Programming Embedded Linux on phycore-lpc3180 phycore -LPC3180 QuickStart Instructions Programming Embedded Linux on phycore-lpc3180 Note: The PHYTEC Spectrum CD includes the electronic version of the English phycore-lpc3180 Hardware Manual Edition:

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

RK3036 Kylin Board Hardware Manual V0.1

RK3036 Kylin Board Hardware Manual V0.1 RK3036 Kylin Board Hardware Manual V0.1 Content 1 Introduction 1.1 Kylin at first glance 1.2 Boot to console 1.3 Key features 1.4 Block diagram 2 Key parts in details 2.1 Processor 2.2 Memory 2.3 Storage

More information

Rugged Mobile Computer PT21 / PT26. Portable Innovation Technology The Power Behind Your Rugged Mobile Computing

Rugged Mobile Computer PT21 / PT26. Portable Innovation Technology The Power Behind Your Rugged Mobile Computing Rugged Mobile Computer PT21 / PT26 The Power Behind Your Rugged Mobile Computing Application If you are looking for a mobile computer that you can collect data for a whole day, your search is over. PT21

More information

INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION

INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION INTERRA@2018 GENERAL INFORMATION INTERRA IMINI TOUCHPANEL is an electronic device used in building automation systems. TECHNICAL SPECIFICATION: CPU Memory

More information

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. Pepper 43R TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages.

More information

IOT-GATE-iMX7 Datasheet

IOT-GATE-iMX7 Datasheet IOT-GATE-iMX7 Datasheet Industrial Internet of Things Gateway Product Specification v.1.3 Capable, compact, affordable: i.mx7 Dual IoT-Gate has been designed to answer demanding IoT application requirements

More information

NSD2100 Smart Display

NSD2100 Smart Display NSD2100 Smart Display The ideal platforms for multimedia, digital signage and HMI applications 1200nits High Brightness TFT LCD 5 inch ~ 22 inch, 1920 1080 pixel Resistive and Capacitive 9V ~ 36V Wide

More information

pcduino V3B XC4350 User Manual

pcduino V3B XC4350 User Manual pcduino V3B XC4350 User Manual 1 User Manual Contents Board Overview...2 System Features...3 Single-Board Computer Configuration......3 Pin Assignments...4 Single-Board Computer Setup...6 Required Hardware...6

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

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

More information

ID 730L: Getting Started with Multimedia Programming on Linux on SH7724

ID 730L: Getting Started with Multimedia Programming on Linux on SH7724 ID 730L: Getting Started with Multimedia Programming on Linux on SH7724 Global Edge Ian Carvalho Architect 14 October 2010 Version 1.0 Mr. Ian Carvalho System Architect, Global Edge Software Ltd. Responsible

More information

Baltos ir Contact Online. More Pictures. Click on the thumbnails for the large picture

Baltos ir Contact Online. More Pictures. Click on the thumbnails for the large picture VS Vision Systems GmbH / Part Number 6831 Features Sitara AM3352 Cortex-A8 @ 600MHz 256MB DDR3 256MB NAND Flash (for boot) 1 x SD-Slot 3 x LAN (1 Gigabit, 2 Fast Ethernet) 2 x USB 2.0 Host 2 x RS232/422/485

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

. Micro SD Card Socket. SMARC 2.0 Compliant

. Micro SD Card Socket. SMARC 2.0 Compliant MSC SM2S-IMX6 NXP i.mx6 ARM Cortex -A9 Description The design of the MSC SM2S-IMX6 module is based on NXP s i.mx 6 processors offering quad-, dual- and single-core ARM Cortex -A9 compute performance at

More information

iw-rainbow-g3 / G3V FAQs:

iw-rainbow-g3 / G3V FAQs: iw-rainbow-g3 / G3V FAQs: Processor / Memory / Configurations: 1. What is iw-rainbow-g3? It is a Design Solution based on Freescale s i.mx27 /ARM9 processor running at 400MHz core frequency. This can be

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

AFL2-12A 12.1 " Flat-bezel Touch Panel PC. Features Highlight

AFL2-12A 12.1  Flat-bezel Touch Panel PC. Features Highlight Features Highlight 12.1" 600nits 1024 x 768 Flatbezel LCD with LED backlight projected capacitive touchscreen or 5-wire resistive type touch screen Build-in two 1.5W speakers and microphone Dual GbE LAN

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

i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from at this pag

i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from   at this pag i.mx 6UltraLite Evaluation Kit Quick Start Guide s datasheet has been downloaded from http://www.digchip.com at this pag Quick Start Guide About the i.mx 6UltraLite Evaluation Kit The i.mx 6 UltraLite

More information

. SMARC 2.0 Compliant

. SMARC 2.0 Compliant MSC SM2S-IMX8 NXP i.mx8 ARM Cortex -A72/A53 Description The new MSC SM2S-IMX8 module offers a quantum leap in terms of computing and graphics performance. It integrates the currently most powerful i.mx8

More information

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. Cobalt MC Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages.

More information

Version History. V1.0 Original Version 1 / 13

Version History. V1.0 Original Version 1 / 13 SOM3288 Specifications Version History Version Description V1.0 Original Version 1 / 13 Contents Product Introduction...3 1 Introduction...3 2 Features... 4 3 Application Areas... 4 Product Specification...

More information

Creator Ci20 quick start guide

Creator Ci20 quick start guide Creator Ci20 is a high performance, fully featured development board for Linux and Android that can help you create applications for fast growing markets such as IoT, wearables, mobile and gaming. The

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

FriendlyARM. Mini2440.

FriendlyARM. Mini2440. FriendlyARM Mini2440 www.friendlyarm.net 1 Introduction...3 1.1 Features...4 2 Hardware Resource...6 2.1 Jumpers and Interfaces...6 2.2 Memory Map...7 2.2.1 Memory Adress Allocation...7 2.3 Power Supply...8

More information

Shenzhen Geniatech Co.,Ltd.

Shenzhen Geniatech Co.,Ltd. 深圳金亚太科技有限公司 SPECIFICATION MODEL:TPC1560K APPROVED BY GENIATECH PREPARED BY 编写 CHECKED BY 审核 APPROVED BY 批准 Please return the origional copy after approved by your company with seal and signature. 请在贵公司盖章并签字后寄回正本一份

More information

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite.

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite. EMBEDDED ARM TRAINING SUITE ARM SUITE INCLUDES ARM 7 TRAINER KIT COMPILER AND DEBUGGER THROUGH JTAG INTERFACE PROJECT DEVELOPMENT SOLUTION FOR ARM 7 e-linux LAB FOR ARM 9 TRAINING PROGRAM INTRODUCTION

More information

Developing on DragonBoard

Developing on DragonBoard Developing on DragonBoard Getting Started with APQ8060 and Pragmatux+Android Bill Gatliff bgat@billgatliff.com Ryan Kuester rkuester@insymbols.com 1 2 CPU Daughterboard APQ8060 ARMv7 Dual core 1.5 GHz

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

User Manual. cmt-iv5 Startup Guide

User Manual. cmt-iv5 Startup Guide User Manual cmt-iv5 Startup Guide v 2.2 JAN 8, 2016 Table of Contents Chapter1. Overview... 1 1.1. Specification... 1 1.2. Dimensions... 2 1.3. Ethernet port... 3 1.4. CR1225 battery... 3 1.5. Power connection...

More information

ARM Quad-Core Embedded Computer

ARM Quad-Core Embedded Computer ARM Embedded Computer Features High-performance Freescale imx6 (ARM Cortex-A9 core) computer @ 1Ghz Rich interfaces, supports, Gb Ethernet, /,, On-board 4GB Flash (emmc) Light weight aluminum enclosure

More information

Parallella Linux - quickstart guide. Antmicro Ltd

Parallella Linux - quickstart guide. Antmicro Ltd Parallella Linux - quickstart guide Antmicro Ltd June 13, 2016 Contents 1 Introduction 1 1.1 Xilinx tools.......................................... 1 1.2 Version information.....................................

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

w w w. b a s e t r a i n i n g i n s t i t u t e. c o

w w w. b a s e t r a i n i n g i n s t i t u t e. c o Disclaimer: Some of the images and most of the data in this presentation are collected from various sources in the internet. If you notice any copyright issues or mistakes, please let me know by mailing

More information