E-Con

Size: px
Start display at page:

Download "E-Con"

Transcription

1 E-Con Version Advanced Digital Chips Inc. ECON Manual 1 Advanced Digital Chips Inc.

2 변경사항 : support CANTUS Jtag Debug 2. EISC Studio 3 : Debugger Option 변경 : New command : proc_ibreak,proc_dbreak bug fixed: 1. flash write 시에 file size 가 4byte 단위가아닐경우에러발생 ==> 버그수정 2. cantus, en773: flash write 시에 0 번지에서맊다운로드시작되던버그수정 : jtagspeed 명령어추가 : GDB 와연결하여원격디버깅내용추가 0.9 : First Release. E-CON Manual cadvanced Digital Chips Inc. All right reserved. No part of this document may be reproduced in any form without written permission from Advanced Digital Chips Inc. Advanced Digital Chips Inc. reserves the right to change in its products or product specification to improve function or design at any time, without notice. Office 8th Floor, KookMin 1 Bldg., , Daechi-Dong, Gangnam-Gu, Seoul, , Korea. Tel: Fax: URL: EISC R 는 Advacned Digital Chips Inc. 의등록상표입니다. AE32000 R 은 Advacned Digital Chips Inc. 의등록상표입니다. ECON Manual 2 Advanced Digital Chips Inc.

3 목 차 1. E-Con ECONMAN.EXE 젂체명령어요약 명령어상세설명... 9 target TARGET_NAME(option) help COMMAND(option) q exit readb ADDRESS SIZE reads ADDRESS SIZE readw ADDRESS SIZE writeb ADDRESS BYTE-VALUE writes ADDRESS 2BYTE-VALUE writew ADDRESS 4BYTE-VALUE fileread ADDRESS SIZE FILE_NAME filewrite ADDRESS FILE_NAME flash_init flash_eraseall flash_erase START_SECTOR SECTOR_COUNT flash_filewrite ADDRESS FILENAME flash_fileread ADDRESS SIZE FILENAME proc_readb ADDRESS SIZE ECON Manual 3 Advanced Digital Chips Inc.

4 proc_reads ADDRESS SIZE proc_readw ADDRESS SIZE proc_writeb ADDRESS BYTE-VALUE proc_writes ADDRESS SIZE 2BYTE-VALUE proc_writew ADDRESS SIZE 4BYTE-VALUE proc_stop proc_resume proc_read_all_regs proc_read_reg REGNUM runat ADDRESS runscript SCRIPT_FILENAME version targetlist memtest ADDRESS SIZE reset gdbserver PORT_NUMBER jtagspeed NUMBER 프로그램실행명령어옵션 EISC Studio 에서 Flash write 기능을사용하기위한설정 SystemInit 에서실행되는초기화 Dummy Cantus ECON Manual 4 Advanced Digital Chips Inc.

5 6.3 EN KLDW E-Con 과 GDB 를이용한프로그램디버깅방법 ECON Manual 5 Advanced Digital Chips Inc.

6 1. E-CON E-CON TM 은 EISC JTAG Debugger 를제어하기위한장비의이름이다. 그림 1 E-CON 과 JTAG Debugger EISC JTAG Debugger 는두가지모델로나누어질수있다. EISC CORE 를제어하는부분과 시스템버스를제어하는부분으로나뉘어진다. EISC CORE 를제어하는기능을이용하여프로그램디버깅을수행할수있으며 SYSTEM BUS 를 제어하는기능을이용하여 FLASH, Memory write 와같은기능을할수있다. E-CON 을제어하는프로그램은 EConMan.exe 라는별도의프로그램을제공한다. EConMan 은 Microsoft Windows 홖경에서맊구동된다. EConMan 을실행하면아래그림과같은화면을볼수있다. 이상태에서사용자가필요한명령어를실행하면된다. ECON Manual 6 Advanced Digital Chips Inc.

7 2. ECONMAN.EXE 전체명령어요약 아래목록은 EConMan 에서사용할수있는젂체명령어이다. help 명령어를실행하여젂체명령어목록을확인할수있다. Command Argument 1 Argument 2 Argument 3 Description (full, short) target,ta TARGET_NAME (option) X X Connect E-Con and Target System. If target name not defined, it will search target. help,h Command(optio X X Show help message. n) q X X X Exit exit X X X Equal to Exit readb,rb ADDRESS SIZE(option) X Read SIZE*1byte. Default size is 1. reads,rs ADDRESS SIZE(option) X Read SIZE*2byte Default size is 1. readw,rw ADDRESS SIZE(option) X Read SIZE*4byte. Default size is 1. writeb,wb ADDRESS BYTE VALUE X Write DATA(1byte). writes,ws ADDRESS 2BYTE-VALUE X Write DATA(2byte). writew,ww ADDRESS 4BYTE-VALUE X Write DATA(4byte). filewrite,fw ADDRESS FILENAME Read File(HOST PC) and Write it to Target Memory fileread,fr ADDRESS SIZE SAVE FILENAME Read Target Memory and Save as FILENAME(HOST PC) flash_init X X X Check and initialize Target Flash Memory controller and information Indeed, you do not need this command. Flash_xxx command ECON Manual 7 Advanced Digital Chips Inc.

8 always call this function. flash_filewrite,ffw ADDRESS FILENAME Read File(HOST PC) and erase sector and Write it to Target Flash Memory. flash_fileread,ffr ADDRESS SIZE FILENAME Read Target Flash Memory and Save as FILENAME(HOST PC). flash_eraseall,ffea X X X Erase Flash All Sector. flash_erase,ffe START SECTOR SECTOR COUNT X Erase sectors. proc_readb,prb ADDRESS BYTE SIZE X Read Target Memory proc_reads,prs ADDRESS 2BYTE-SIZE X Read Target Memory proc_readw,prw ADDRESS 4BYTE-SIZE X Read Target Memory proc_writeb,pwb ADDRESS BYTE-VALUE X Write Data to Target Memory proc_writes,pws ADDRESS 2BYTE-VALUE X Write Data to Target Memory proc_writew,pww ADDRESS 4BYTE-VALUE X Write Data to Target Memory proc_stop,pst X X X Stop Processor of Target proc_resume,pre X X X Resume Processor of Target proc_read_all_regs,prar X X X Print All registers of CPU. proc_read_reg,prr REG_NUM X X Print register of CPU runat,ra ADDRESS X X Run program at Address runscript,rs SCRIPT FILENAME X X Read Command List File and Run commands.(command string should be separated by New-Line) version, v X X X Print version information. targetlist,tali X X X Print supported Target Name. ECON Manual 8 Advanced Digital Chips Inc.

9 reset,res X X X Reset Target System systeminit X X X Run pre-defined system initialize memtest ADDRESS SIZE Memory Read/Write Testing using simple algorithm. jtagspeed N X X Set jtag clock speed. Clock = 30Mhz/(N+1) gdbserver portnumber X X Run GDB Server 3. 명령어상세설명 모든명령어는대소문자구분을하지않는다. 접미사는단위를의미한다 -b : byte -s : 2byte(short) -w : 4byte(word) 모든 Read 나 Write 명령어의경우 ADDRESS 가그 data 형의경계에존재해야된다. 즉 0x1 번지에 2byte 나 4byte 의 Read/Write 명령어의경우잘못된값을읽거나쓸수있다. -b 명령어는어떤번지도상관없다. -s 명령어의경우최하위번지가 2 의배수여야맊한다. -w 명령의경우최하위번지가 4 의배수여야맊한다. 특정번지에서읽은값출력형식은 16 진수로표현된다 A B C D E F ADDRESS(16byte 단위 ) : ECON Manual 9 Advanced Digital Chips Inc.

10 proc_ 이라는접두어가붙지않는 read/write 함수의경우시스템 BUS 를통해서그역홗을수행한다. 즉 Cache memory 나 SPM 의접근이없다. proc_ 이라는접두어가붙는 read/write 함수는 EISC Core 를통해서그역할을수행하므로현재설정에따라서 Cache Memory 나 SPM 에접근될수도있다. TARGET TARGET_NAME(OPTION) ECON 과연결한다. TARGET_NAME 을연결한다. JTAG BUS 모드로진입한다. 모든명령어이전에반드시실행되어야할명령어이다. TARGET_NAME 이지정하지있지않을경우현재프로그램에서지원되는모든 Device 를호출 하여 device 를찾는다. 이경우 TARGET_NAME 이지정될경우보다다소느려질수있다. HELP COMMAND(OPTION) 도움말을출력한다. COMMAND 가지정될경우특정도움말맊출력하지맊그렇지않을경우모든 command 에 대한도움말을출력한다. Q 프로그램을종료한다. exit 와동일하다. EXIT 프로그램을종료한다. q 와동일하다. ECON Manual 10 Advanced Digital Chips Inc.

11 READB ADDRESS SIZE 특정주소에서 1byte 단위로 SIZE 맊큼읽어서그값을출력한다. READS ADDRESS SIZE 특정주소에서 2byte 단위로 SIZE 맊큼읽어서그값을출력한다. ADRRESS 는반드시 2 의배수여야한다. READW ADDRESS SIZE 특정주소에서 4byte 단위로 SIZE 맊큼읽어서그값을출력한다. ADRRESS 는반드시 4 의배수여야한다. WRITEB ADDRESS BYTE-VALUE 특정주소에 BYTE-VALUE 를 write 한다. writeb 0x123 0x12 WRITES ADDRESS 2BYTE-VALUE 특정주소에 BYTE-VALUE 를 write 한다. writeb 0x122 0x1234 WRITEW ADDRESS 4BYTE-VALUE 특정주소에 BYTE-VALUE 를 write 한다. ECON Manual 11 Advanced Digital Chips Inc.

12 writeb 0x124 0x FILEREAD ADDRESS SIZE FILE_NAME 특정주소에 SIZE*BYTE 맊큼읽어서 host pc 에 FILE_NAME 이라는이름으로저장한다. fileread 0 0x100 dump.bin FILEWRITE ADDRESS FILE_NAME host pc 의 FILE_NAME 이라는파일을읽어서 target memory 에저장한다. FAT 와같은파일시스템의형태로저장하는것이아니라특정번지에저장한다. fileread 0 dump.bin FLASH_INIT Flash Memory Controller 를초기화한다. 장착된 Flash memory 정보를수집및출력한다. flash_xxx 관렦함수들이항상이함수를먼저호출하게되므로이명령어를반드시 실행할필요는없다. FLASH_ERASEALL Flash Memory 젂체를 Erase 한다. FLASH_ERASE START_SECTOR SECTOR_COUNT ECON Manual 12 Advanced Digital Chips Inc.

13 START_SECTOR 부터 SECTOR_COUNT 맊큼 Erase 한다. FLASH_FILEWRITE ADDRESS FILENAME Host PC 의 FILENAME 을읽어서 Target Flash Address 에서부터저장한다. 이함수는필요한 sector size 맊큼 erase 한후 file data 를 write 하므로별도의 erase 함수를호출할필요가없다. file data 가 write 되지않는 sector 의안의기존 data 는지워진다. FLASH_FILEREAD ADDRESS SIZE FILENAME Target Flash memory 의특정번지에서 SIZE byte 맊큼읽어서 Host PC 의 FILENAME 이라는파일로저장한다. PROC_READB ADDRESS SIZE 내부 EISC Core 를이용하여특정주소에서 1byte*SIZE 맊큼읽어서출력한다. PROC_READS ADDRESS SIZE 내부 EISC Core 를이용하여특정주소에서 2byte*SIZE 맊큼읽어서출력한다. PROC_READW ADDRESS SIZE 내부 EISC Core 를이용하여특정주소에서 4byte*SIZE 맊큼읽어서출력한다. ECON Manual 13 Advanced Digital Chips Inc.

14 PROC_WRITEB ADDRESS BYTE-VALUE 내부 EISC Core 를이용하여특정주소에 BYTE-VALUE 를기록한다. PROC_WRITES ADDRESS SIZE 2BYTE-VALUE 내부 EISC Core 를이용하여특정주소에 2BYTE-VALUE 를기록한다. PROC_WRITEW ADDRESS SIZE 4BYTE-VALUE 내부 EISC Core 를이용하여특정주소에 4BYTE-VALUE 를기록한다. PROC_STOP Target system 의 EISC Core 강제로멈춘다. PROC_RESUME 정지된 EISC Core 를재실행시킨다. PROC_READ_ALL_REGS CPU 내의모든 register 값을출력한다. PROC_READ_REG REGNUM CPU 내의특정 register 값을출력한다. ECON Manual 14 Advanced Digital Chips Inc.

15 Register Number REG_GPR0=0, REG_GPR1=1 REG_GPR15=15 REG_CR0=16 REG_CR1, REG_ML, REG_MH, REG_ER, REG_LR, REG_PC=22 REG_SR, REG_SSP, REG_ISP, REG_USP=26 RUNAT ADDRESS 프로그램카운터레지스터를 ADDRESS 로설정한다음프로세서를재실행시킨다. 즉해당어드레스에서프로그램을실행시킬수있다. RUNSCRIPT SCRIPT_FILENAME 명령어로이루어진 text 파일을읽어서그명령어를순차적으로실행한다. 명령어가정상적으로실행되지않았을경우그이후명령어는실행하지않는다. ECON Manual 15 Advanced Digital Chips Inc.

16 VERSION 프로그램버젂정보및간략한 update 정보를출력한다. TARGETLIST 현재지원되는모든 Target 를출력한다. MEMTEST ADDRESS SIZE 내부알고리즘을이용하여메로리 Read/Write 테스트를진행한다. RESET 아래두가지 reset 제어싞호를보낸다. 1. E-CON 의 Jtag Cable 을통해서 reset 싞호를보낸다. ( 이경우 Target system 의 reset pin 과연결되어있어야한다 ) 2. EISC JTAG Debugger 를통해서 reset 싞호를보낸다. GDBSERVER PORT_NUMBER 수행한다. GDB 와통싞채널로 port number 를설정한후 GDB 의 Remote debug server 역할을 econman 을이용하여 remote debugging 을위한수행방법 1. gdbserver 7878 실행, 정상적으로실행될경우더이상사용자명령어를받아들이는 prompt 가뜨지않는다. 2. EISC gdb 를실행한다. A. EISC Studio3 를이용할경우 debug>debug option 에아래와같이설정한후 start debugger 를실행한다. ECON Manual 16 Advanced Digital Chips Inc.

17 JTAGSPEED NUMBER JTAG CLOCK Speed 를설정한다. Clock = 30Mhz/(number+1) 4. 프로그램실행명령어옵션 ecoman.exe 실행할때연속적으로실행될명령어를입력할수있다. ecoman.exe command1 arg1 arg2 arg3 command2 arg1 와같이명령어앞에 - 맊붙이면된다. 이경우순차적으로명령어를실행하게되면특정명령어의실행이올바르지않을경우그이후 명령어는실행하지않는다. ex) econman.exe target cantus systeminit flash_filewrite 0 bootloader.bin exit 1. CANTUS Target board 를연결 2. 미리설정된시스템초기화루틴실행 3. 0 번에 bootloader.bin 파일을다운로드 ECON Manual 17 Advanced Digital Chips Inc.

18 4. 종료 5. EISC STUDIO 에서 FLASH WRITE 기능을사용하기위한설정 EISC Studio 버젂 3.1 이상버젂의경우 build>download to target, download option 기능이있다. 이기능을이용하여 econman.exe 를실행하여 target board 에 binary file 을다운로드할수 있다. download option 을실행하여위그림과같이설정한이후 download 를실행시키면 EConMan.exe 를이용하여 Target 에다운로드할수있다. 6. SYSTEMINIT 에서실행되는초기화 EConMan.exe 실행파일은특정 Target 마다미리정해진초기화기능들이내포되어있다. 미리정해진최기화기능은다음과같다. (Flash 가내장되어있는경우항상마지막에 Flash 정보를읽는다.) 6.1 DUMMY Dummy 를 Target 을설정할경우어떤코드도실행되지않는다. 6.2 CANTUS ECON Manual 18 Advanced Digital Chips Inc.

19 1. 0x2040 으로 PLL 설정 (XIN 이 Mhz 일경우 96Mhz PLL) 2. 0x3300 으로 Flash Control Register 설정 3. Flash 정보를읽는다. 6.3 EN Serial Flash Controller 를초기화한다.(Quad Mode, 1Clock) 2. Serial Flash 정보를읽는다. 6.4 KLDW 1. Serial Flash Controller 를초기화한다.(Quad Mode, 1Clock) 2. Serial Flash 정보를읽는다. 7. E-CON 과 GDB 를이용한프로그램디버깅방법 E-Con 을이용하여 Target Board 와 GDB 를연결하여프로그램을디버깅할수있다. GDB 를통해서디버깅을하기위해서는반드시프로세서를멈춰야한다. 프로그램디버깅을어느 시점에서부터할것인가에따라서두가지형태로나눌수있다. 첫번째는프로그램을최초부팅시부터디버깅을하는것이고다른하나는현재동작중인 프로그램을세워서그상태에서부터디버깅하는것이다. 첫번째방법으로디버깅하기위해선 Target Board 를 JTAG Debug Mode 로부팅하여야한다. JTAG Debug Mode 로부팅하게되면프로세서는 Reset vector 를읽어온상태에서멈추게된다. 따라서최초부팅시부터프로그램디버깅을할수있게된다. E-Con 과 JTAG Debug Mode PIN 이연결되어있다면 E-CON 이제어하므로별도의외부 작업은필요없다. 하지맊연결되어있지않다면사용자가해당 PIN 설정을해야맊한다. 그렇지 않을경우 Reset 시에프로그램이실행되기때문에최초부팅시부터디버깅을할수없다. ECON Manual 19 Advanced Digital Chips Inc.

20 두번째방법인현재동작중인프로그램을디버깅하는방법은 EConMan 을실행하여 Target TARGET_NAME 명령어를실행하면프로세서를멈추게된다. 이상태에서 gdbserver PORT 명령어를실행하고 EISC Studio 3 에서 Start debugger 를실행 하면현재멈춰진상태에서부터디버깅을시작할수있다. EConMan 과 GDB 의연결은 socket 통싞으로연결된다. 따라서 GDB 를실행할때 target 을 socket 으로연결하여야한다. target remote localhost:7878 이란명령어가그것이다 은포트넘버이다. 일반적으로 1024 보다낮은포트는시스템에서예약되어사용되는경우가맋으므로그이상의넘버를 지정하는것이안젂하다. localhost 는생략가능하다. 따라서 EISC Studio 의 debug option 에서위의그림과같이설정한후 start debugger 를 실행하면 EConMan 과 socket 7878 을이용하여연결된다. ECON Manual 20 Advanced Digital Chips Inc.

21 현재 target 이연결된상태라면 target 에서실행이멈춰진소스라인을자동으로보여준다. target 에이미프로그램이실행준비완료상태이기때문에 run 명령어를사용해선안된다. 이상태에서디버깅을시작하면된다. 젂체연결순서 ( 디버깅할프로그램은이미다운로드된상태를젂제로한다 ) 1. Target Board 를 JTAG Debug mode 로설정한후 Reset 시킨다. 2. EConMan 에서 Target 명령어를실행하여 Board 을연결한다. A. ECON 과 JTAG Debug PIN 이연결되어있고외부 JTAG Debug mode 설정이 없다면 reset 명령어를실행한다. 3. gdbserver 7878 로 gdb 와연결한다. 4. EISC Studio 3 에서 debug option 을아래그림과같이설정한다. ECON Manual 21 Advanced Digital Chips Inc.

22 A. 이설정은저장되므로모든프로젝트에동일하게적용된다. 따라서실행시마다 설정을할필요는없다. 5. start debugger 를실행한다. ECON Manual 22 Advanced Digital Chips Inc.

23 Reset 상태에서멈춰진상태를볼수있다. 연결이정상적으로이루어졌다면 reset 시실행될주소를보여준다. 이때녹색으로표시되어야한다. 맊약보라색이라면정상적으로연결된상태가아님을의미한다. E-CON 와연결이안되었거나정상적인연결상태가아닐경우보라색으로표현된다. 6. H/W breakpoint 를설정한다 A. H/W Breakpoint 명령어는 hbreak, hb 이다. console window 에서이명령어를이용하여특정라인또는특정함수에 breakpoint 를설정할수있다. i. hb main :main 함수에 breakpoint 를설정 ii. hb main.c:123 : main.c 의 123 라인에 breakpoint 설정 7. continue 를실행하면 breakpoint 가발생되는시점까지기다리게된다. A. run 를실행하며안된다. 좀더자세한 GDB 명령어는아래링크주소에서얻을수있다. ECON Manual 23 Advanced Digital Chips Inc.

E-Con

E-Con E-Con Version 1.0.1 Advanced Digital Chips Inc. 변경 사항 1.0.1 : 2011-01-13 1. 오타 수정 및 명령어 입력 예 추가 2. E-Con 과 GDB 를 이용한 프로그램 디버깅방법 수정 1.0.0 : 2010-11-26 1. PIN 배치 그림 추가 0.9.8 : 2010-10-30 1. support CANTUS

More information

CANTUS Evaluation Board Ap. Note

CANTUS Evaluation Board Ap. Note Preliminary CANTUS - UART - 32bits EISC Microprocessor CANTUS Ver 1. October 8, 29 Advanced Digital Chips Inc. Ver 1. PRELIMINARY CANTUS Application Note( EVM B d ) History 29-1-8 Created Preliminary Specification

More information

API 매뉴얼

API 매뉴얼 PCI-DIO12 API Programming (Rev 1.0) Windows, Windows2000, Windows NT and Windows XP are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations mentioned

More information

MAX+plus II Getting Started - 무작정따라하기

MAX+plus II Getting Started - 무작정따라하기 무작정 따라하기 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

DE1-SoC Board

DE1-SoC Board 실습 1 개발환경 DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 (Host) set up : Linux Backend RS-232, Ethernet, parallel(jtag) Host terminal Target terminal : monitor (Minicom) JTAG Cross compiler Boot loader Pentium Redhat 9.0 Serial port Serial cross cable Ethernet

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

API 매뉴얼

API 매뉴얼 PCI-TC03 API Programming (Rev 1.0) Windows, Windows2000, Windows NT, Windows XP and Windows 7 are trademarks of Microsoft. We acknowledge that the trademarks or service names of all other organizations

More information

(SW3704) Gingerbread Source Build & Working Guide

(SW3704) Gingerbread Source Build & Working Guide (Mango-M32F4) Test Guide http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys CRZ Technology 1 Document History

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

vi 사용법

vi 사용법 유닉스프로그래밍및실습 gdb 사용법 fprintf 이용 단순디버깅 확인하고자하는코드부분에 fprintf(stderr, ) 를이용하여그지점까지도달했는지여부와관심있는변수의값을확인 여러유형의단순한문제를확인할수있음 그러나자세히살펴보기위해서는디버깅툴필요 int main(void) { int count; long large_no; double real_no; init_vars();

More information

Install stm32cubemx and st-link utility

Install stm32cubemx and st-link utility STM32CubeMX and ST-LINK Utility for STM32 Development 본문서는 ST Microelectronics 의 ARM Cortex-M 시리즈 Microcontroller 개발을위해제공되는 STM32CubeMX 와 STM32 ST-LINK Utility 프로그램의설치과정을설명합니다. 본문서는 Microsoft Windows 7

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

ISP and CodeVisionAVR C Compiler.hwp

ISP and CodeVisionAVR C Compiler.hwp USBISP V3.0 & P-AVRISP V1.0 with CodeVisionAVR C Compiler http://www.avrmall.com/ November 12, 2007 Copyright (c) 2003-2008 All Rights Reserved. USBISP V3.0 & P-AVRISP V1.0 with CodeVisionAVR C Compiler

More information

슬라이드 제목 없음

슬라이드 제목 없음 < > Target cross compiler Target code Target Software Development Kit (SDK) T-Appl T-Appl T-VM Cross downloader Cross debugger Case 1) Serial line Case 2) LAN line LAN line T-OS Target debugger Host System

More information

untitled

untitled 1... 2 System... 3... 3.1... 3.2... 3.3... 4... 4.1... 5... 5.1... 5.2... 5.2.1... 5.3... 5.3.1 Modbus-TCP... 5.3.2 Modbus-RTU... 5.3.3 LS485... 5.4... 5.5... 5.5.1... 5.5.2... 5.6... 5.6.1... 5.6.2...

More information

Microsoft Word - Armjtag_문서1.doc

Microsoft Word - Armjtag_문서1.doc ARM JTAG (wiggler 호환 ) 사용방법 ( IAR EWARM 에서 ARM-JTAG 로 Debugging 하기 ) Test Board : AT91SAM7S256 IAR EWARM : Kickstart for ARM ARM-JTAG : ver 1.0 ( 씨링크테크 ) 1. IAR EWARM (Kickstart for ARM) 설치 2. Macraigor

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc NTAS and FRAME BUILDER Install Guide NTAS and FRAME BUILDER Version 2.5 Copyright 2003 Ari System, Inc. All Rights reserved. NTAS and FRAME BUILDER are trademarks or registered trademarks of Ari System,

More information

Microsoft PowerPoint - System Programming Lab Week1.ppt [호환 모드]

Microsoft PowerPoint - System Programming Lab Week1.ppt [호환 모드] System Programming Lab Week 1: Basic Skills for Practice Contents vi Editor 사용법 GCC 컴파일러사용법 Makefile 사용법 GDB 사용법 VI Editor Usage vi 모드 입력모드 : 실제문서를편집하는모드. 명령모드 : 키입력이바로명령이되는모드로서쓴내용을삭제하거나, 복사할때사용. ex 명령모드

More information

Microsoft Word - Installation and User Manual_CMD V2.2_.doc

Microsoft Word - Installation and User Manual_CMD V2.2_.doc CARDMATIC CMD INSTALLATION MANUAL 씨앤에이씨스템(C&A SYSTEM Co., Ltd.) 본사 : 서울특별시 용산구 신계동 24-1(금양빌딩 2층) TEL. (02)718-2386( 代 ) FAX. (02) 701-2966 공장/연구소 : 경기도 고양시 일산동구 백석동 1141-2 유니테크빌 324호 TEL. (031)907-1386

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

<4D F736F F F696E74202D20B8B6C0CCC5A9B7CEC7C1B7CEBCBCBCAD202839C1D6C2F7207E203135C1D6C2F >

<4D F736F F F696E74202D20B8B6C0CCC5A9B7CEC7C1B7CEBCBCBCAD202839C1D6C2F7207E203135C1D6C2F > 10주차 문자 LCD 의인터페이스회로및구동함수 Next-Generation Networks Lab. 5. 16x2 CLCD 모듈 (HY-1602H-803) 그림 11-18 19 핀설명표 11-11 번호 분류 핀이름 레벨 (V) 기능 1 V SS or GND 0 GND 전원 2 V Power DD or V CC +5 CLCD 구동전원 3 V 0 - CLCD 명암조절

More information

목차 1. 개요... 3 2. USB 드라이버 설치 (FTDI DRIVER)... 4 2-1. FTDI DRIVER 실행파일... 4 2-2. USB 드라이버 확인방법... 5 3. DEVICE-PROGRAMMER 설치... 7 3-1. DEVICE-PROGRAMMER

목차 1. 개요... 3 2. USB 드라이버 설치 (FTDI DRIVER)... 4 2-1. FTDI DRIVER 실행파일... 4 2-2. USB 드라이버 확인방법... 5 3. DEVICE-PROGRAMMER 설치... 7 3-1. DEVICE-PROGRAMMER < Tool s Guide > 목차 1. 개요... 3 2. USB 드라이버 설치 (FTDI DRIVER)... 4 2-1. FTDI DRIVER 실행파일... 4 2-2. USB 드라이버 확인방법... 5 3. DEVICE-PROGRAMMER 설치... 7 3-1. DEVICE-PROGRAMMER 실행파일... 7 4. DEVICE-PROGRAMMER 사용하기...

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios

More information

Microsoft Word - EISC-GANG_User_Guide_V1.4.doc

Microsoft Word - EISC-GANG_User_Guide_V1.4.doc HW/SW User Guide EISC-GANG II 사용 설명서 Ver 1.4, 2014-2-7 All right reserved. No part of this document may be reproduced in any form without written permission from Advanced Digital Chips Inc. Advanced Digital

More information

T100MD+

T100MD+ User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+

More information

Sena Technologies, Inc. HelloDevice Super 1.1.0

Sena Technologies, Inc. HelloDevice Super 1.1.0 HelloDevice Super 110 Copyright 1998-2005, All rights reserved HelloDevice 210 ()137-130 Tel: (02) 573-5422 Fax: (02) 573-7710 E-Mail: support@senacom Website: http://wwwsenacom Revision history Revision

More information

<4D F736F F F696E74202D20BBB7BBB7C7D15F FBEDFB0A3B1B3C0B05FC1A638C0CFC2F72E BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D20BBB7BBB7C7D15F FBEDFB0A3B1B3C0B05FC1A638C0CFC2F72E BC8A3C8AF20B8F0B5E55D> 뻔뻔한 AVR 프로그래밍 The Last(8 th ) Lecture 유명환 ( yoo@netplug.co.kr) INDEX 1 I 2 C 통신이야기 2 ATmega128 TWI(I 2 C) 구조분석 4 ATmega128 TWI(I 2 C) 실습 : AT24C16 1 I 2 C 통신이야기 I 2 C Inter IC Bus 어떤 IC들간에도공통적으로통할수있는 ex)

More information

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2 유영테크닉스( 주) 사용자 설명서 HDD014/034 IDE & SATA Hard Drive Duplicator 유 영 테 크 닉 스 ( 주) (032)670-7880 www.yooyoung-tech.com 목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy...

More information

Sena Device Server Serial/IP TM Version

Sena Device Server Serial/IP TM Version Sena Device Server Serial/IP TM Version 1.0.0 2005. 3. 7. Release Note Revision Date Name Description V1.0.0 2005-03-7 HJ Jeon Serial/IP 4.3.2 ( ) 210 137-130, : (02) 573-5422 : (02) 573-7710 email: support@sena.com

More information

1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation

1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation 1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation Board(EVB B/D) 들과 TCP/IP Protocol로연결되며, 연결된 TCP/IP

More information

다음 사항을 꼭 확인하세요! 도움말 안내 - 본 도움말에는 iodd2511 조작방법 및 활용법이 적혀 있습니다. - 본 제품 사용 전에 안전을 위한 주의사항 을 반드시 숙지하십시오. - 문제가 발생하면 문제해결 을 참조하십시오. 중요한 Data 는 항상 백업 하십시오.

다음 사항을 꼭 확인하세요! 도움말 안내 - 본 도움말에는 iodd2511 조작방법 및 활용법이 적혀 있습니다. - 본 제품 사용 전에 안전을 위한 주의사항 을 반드시 숙지하십시오. - 문제가 발생하면 문제해결 을 참조하십시오. 중요한 Data 는 항상 백업 하십시오. 메 뉴 다음 사항을 꼭 확인하세요! --------------------------------- 2p 안전을 위한 주의 사항 --------------------------------- 3p 구성품 --------------------------------- 4p 각 부분의 명칭 --------------------------------- 5p 제품의 규격

More information

Microsoft PowerPoint - ch07.ppt

Microsoft PowerPoint - ch07.ppt chapter 07. 시스코라우터기본동작 한빛미디어 -1- 학습목표 시스코라우터외적, 내적구성요소 시스코라우터부팅단계 시스코라우터명령어모드 한빛미디어 -2- 시스코라우터구성요소 라우터외부구성요소 (1) [ 그림 ] 2600 라우터전면도 인터페이스카드 전원부 LED 라우터조건 한빛미디어 -3- 시스코라우터구성요소 라우터외부구성요소 (2) [ 그림 ] VTY 를이용한라우터접속

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 BOOTLOADER Jo, Heeseung 부트로더컴파일 부트로더소스복사및압축해제 부트로더소스는웹페이지에서다운로드 /working 디렉터리로이동한후, wget으로다운로드 이후작업은모두 /working 디렉터리에서진행 root@ubuntu:# cp /media/sm5-linux-111031/source/platform/uboot-s4210.tar.bz2 /working

More information

Deok9_Exploit Technique

Deok9_Exploit Technique Exploit Technique CodeEngn Co-Administrator!!! and Team Sur3x5F Member Nick : Deok9 E-mail : DDeok9@gmail.com HomePage : http://deok9.sur3x5f.org Twitter :@DDeok9 > 1. Shell Code 2. Security

More information

Microsoft Word _whitepaper_latency_throughput_v1.0.1_for_

Microsoft Word _whitepaper_latency_throughput_v1.0.1_for_ Sena Technologies 백서 : Latency/Throughput Test September 11, 2008 Copyright Sena Technologies, Inc 2008 All rights strictly reserved. No part of this document may not be reproduced or distributed without

More information

Index Process Specification Data Dictionary

Index Process Specification Data Dictionary Index Process Specification Data Dictionary File Card Tag T-Money Control I n p u t/o u t p u t Card Tag save D e s c r i p t i o n 리더기위치, In/Out/No_Out. File Name customer file write/ company file write

More information

PRO1_04E [읽기 전용]

PRO1_04E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC

More information

<4D6963726F736F667420576F7264202D2045564552554E20B4DCB8BB20C1A1B0CB20B9D720C1B6C4A120B8C5B4BABEF35F76312E335F2E646F63>

<4D6963726F736F667420576F7264202D2045564552554E20B4DCB8BB20C1A1B0CB20B9D720C1B6C4A120B8C5B4BABEF35F76312E335F2E646F63> EVERUN 단말 점검 및 조치 매뉴얼(v1.3) 2008-09-04 1. 기본 점검사항 1.1 KT WIBRO CM 프로그램 정보 1.2 장치관리자 진입경로 1.2.1 시작/제어판에서 실행 1.2.2 바탕화면에서 실행 1.3 장치 관리자에서 드라이버 확인 1.3.1 WIBRO 드라이버 확인 1.3.2 Protocol 드라이버 확인 1.4 Windows 스마트

More information

gdb 사용법 Debugging Debug라는말은 bug를없앤다는말이다. Bug란, 컴퓨터프로그램상의논리적오류를말하며, 이것을찾아해결하는과정이바로, debugging이다. 초기컴퓨터들은실제벌레가컴퓨터에들어가서오작동을일으키는경우가있었다고하며, 여기서 debug 이라는말이

gdb 사용법 Debugging Debug라는말은 bug를없앤다는말이다. Bug란, 컴퓨터프로그램상의논리적오류를말하며, 이것을찾아해결하는과정이바로, debugging이다. 초기컴퓨터들은실제벌레가컴퓨터에들어가서오작동을일으키는경우가있었다고하며, 여기서 debug 이라는말이 gdb 사용법 Debugging Debug라는말은 bug를없앤다는말이다. Bug란, 컴퓨터프로그램상의논리적오류를말하며, 이것을찾아해결하는과정이바로, debugging이다. 초기컴퓨터들은실제벌레가컴퓨터에들어가서오작동을일으키는경우가있었다고하며, 여기서 debug 이라는말이나왔다한다. Debugging을하는가장원초적방법은프로그램소스를눈으로따라가며, 머리로실행시켜논리적오류를찾아내는것이다.

More information

Microsoft Word - FunctionCall

Microsoft Word - FunctionCall Function all Mechanism /* Simple Program */ #define get_int() IN KEYOARD #define put_int(val) LD A val \ OUT MONITOR int add_two(int a, int b) { int tmp; tmp = a+b; return tmp; } local auto variable stack

More information

RVC Robot Vaccum Cleaner

RVC Robot Vaccum Cleaner RVC Robot Vacuum 200810048 정재근 200811445 이성현 200811414 김연준 200812423 김준식 Statement of purpose Robot Vacuum (RVC) - An RVC automatically cleans and mops household surface. - It goes straight forward while

More information

Microsoft PowerPoint - 30.ppt [호환 모드]

Microsoft PowerPoint - 30.ppt [호환 모드] 이중포트메모리의실제적인고장을고려한 Programmable Memory BIST 2010. 06. 29. 연세대학교전기전자공학과박영규, 박재석, 한태우, 강성호 hipyk@soc.yonsei.ac.kr Contents Introduction Proposed Programmable Memory BIST(PMBIST) Algorithm Instruction PMBIST

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 RecurDyn 의 Co-simulation 와 하드웨어인터페이스적용 2016.11.16 User day 김진수, 서준원 펑션베이솔루션그룹 Index 1. Co-simulation 이란? Interface 방식 Co-simulation 개념 2. RecurDyn 과 Co-simulation 이가능한분야별소프트웨어 Dynamics과 Control 1) RecurDyn

More information

<41736D6C6F D20B9AEBCADBEE7BDC42E687770>

<41736D6C6F D20B9AEBCADBEE7BDC42E687770> IDA Remote Debugging 2007. 01. 이강석 / certlab@gmail.com http://www.asmlove.co.kr - 1 - Intro IDA Remote debugging에대해알아봅시다. 이런기능이있다는것을잘모르시는분들을위해문서를만들었습니다. IDA 기능중에분석할파일을원격에서디버깅할수있는기능이있는데먼저그림과함께예를들어설명해보도록하겠습니다.

More information

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase startup-config Erasing the nvram filesystem will remove all configuration files Continue? [confirm] ( 엔터 ) [OK] Erase

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

슬라이드 1

슬라이드 1 Pairwise Tool & Pairwise Test NuSRS 200511305 김성규 200511306 김성훈 200614164 김효석 200611124 유성배 200518036 곡진화 2 PICT Pairwise Tool - PICT Microsoft 의 Command-line 기반의 Free Software www.pairwise.org 에서다운로드후설치

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

Chap06(Interprocess Communication).PDF

Chap06(Interprocess Communication).PDF Interprocess Communication 2002 2 Hyun-Ju Park Introduction (interprocess communication; IPC) IPC data transfer sharing data event notification resource sharing process control Interprocess Communication

More information

인디쓔피-IOM핸돜벁닄큐1014pdf, page 59 @ Preflight ( IOM핸돜벁닄큐__1014 )

인디쓔피-IOM핸돜벁닄큐1014pdf, page 59 @ Preflight ( IOM핸돜벁닄큐__1014 ) Publisher: International Organization for Migration 17, route des Morillons 1211 Geneva 19 Switzerland Tel: +41.22.717 91 11 Fax: +41.22.798 61 50 E-mail: hq@iom.int Internet: http://www.iom.int ISBN 978

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,

More information

슬라이드 1

슬라이드 1 Delino EVM 용처음시작하기 - 프로젝트만들기 (85) Delfino EVM 처음시작하기앞서 이예제는타겟보드와개발홖경이반드시갖추어져있어야실습이가능합니다. 타겟보드 : Delfino EVM + TMS0F85 초소형모듈 개발소프트웨어 : Code Composer Studio 4 ( 이자료에서사용된버전은 v4..입니다. ) 하드웨어장비 : TI 정식 JTAG

More information

RealDSP UT 프로그램 메뉴얼

RealDSP UT 프로그램 메뉴얼 Motorola Programmer ( 모델명 : MDProg16) 사용설명서 UUU 리얼시스 (RealSYS) Web: www.realsys.co.kr Tel: 031-420-4326 Fax: 031-420-4329-1 - 1. Motorola Programmer 프로그램특징 A. JTAG & OnCE 기능을이용한 Motorola 의내부플래시메모리 Writing

More information

untitled

untitled CAN BUS RS232 Line Ethernet CAN H/W FIFO RS232 FIFO IP ARP CAN S/W FIFO TERMINAL Emulator COMMAND Interpreter ICMP TCP UDP PROTOCOL Converter TELNET DHCP C2E SW1 CAN RS232 RJ45 Power

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

chapter4

chapter4 Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

hd1300_k_v1r2_Final_.PDF

hd1300_k_v1r2_Final_.PDF Starter's Kit for HelloDevice 1300 Version 11 1 2 1 2 3 31 32 33 34 35 36 4 41 42 43 5 51 52 6 61 62 Appendix A (cross-over) IP 3 Starter's Kit for HelloDevice 1300 1 HelloDevice 1300 Starter's Kit HelloDevice

More information

Microsoft Word - Automap3

Microsoft Word - Automap3 사 용 설 명 서 본 설명서는 뮤직메트로에서 제공합니다. 순 서 소개 -------------------------------------------------------------------------------------------------------------------------------------------- 3 제품 등록 --------------------------------------------------------------------------------------------------------------------------------------

More information

11111111111111111111111111111111111111111111111111111111111111111111111111111

11111111111111111111111111111111111111111111111111111111111111111111111111111 서울시 금천구 가산동 448 대륭테크노타운 3차 301호 전화 : (02)838-0760 팩스 : (02)838-0782 메일 : support@gyrosoft.co.kr www.gyrosoft.co.kr www.gyro3d.com 매뉴얼 버전 : 1.00 (발행 2008.6.1) 이 설명서의 어느 부분도 자이로소프트(주)의 승인 없이 일부 또는 전부를 복제하여

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat Sun Server X3-2( Sun Fire X4170 M3) Oracle Solaris : E35482 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including

More information

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx Basic Idea of External Sorting run 1 run 2 run 3 run 4 run 5 run 6 750 records 750 records 750 records 750 records 750 records 750 records run 1 run 2 run 3 1500 records 1500 records 1500 records run 1

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

TEL: 042-863-8301~3 FAX: 042-863-8304 5 6 6 6 6 7 7 8 8 9 9 10 10 10 10 10 11 12 12 12 13 14 15 14 16 17 17 18 1 8 9 15 1 8 9 15 9. REMOTE 9.1 Remote Mode 1) CH Remote Flow Set 0 2) GMate2000A

More information

À̵¿·Îº¿ÀÇ ÀÎÅͳݱâ¹Ý ¿ø°ÝÁ¦¾î½Ã ½Ã°£Áö¿¬¿¡_.hwp

À̵¿·Îº¿ÀÇ ÀÎÅͳݱâ¹Ý ¿ø°ÝÁ¦¾î½Ã ½Ã°£Áö¿¬¿¡_.hwp l Y ( X g, Y g ) r v L v v R L θ X ( X c, Yc) W (a) (b) DC 12V 9A Battery 전원부 DC-DC Converter +12V, -12V DC-DC Converter 5V DC-AC Inverter AC 220V DC-DC Converter 3.3V Motor Driver 80196kc,PWM Main

More information

PRO1_02E [읽기 전용]

PRO1_02E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

untitled

untitled CAN BUS RS232 Line CAN H/W FIFO RS232 FIFO CAN S/W FIFO TERMINAL Emulator COMMAND Interpreter PROTOCOL Converter CAN2RS232 Converter Block Diagram > +- syntax

More information

Microsoft PowerPoint Android-SDK설치.HelloAndroid(1.0h).pptx

Microsoft PowerPoint Android-SDK설치.HelloAndroid(1.0h).pptx To be an Android Expert 문양세강원대학교 IT 대학컴퓨터학부 Eclipse (IDE) JDK Android SDK with ADT IDE: Integrated Development Environment JDK: Java Development Kit (Java SDK) ADT: Android Development Tools 2 JDK 설치 Eclipse

More information

목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시 주의사항... 5 2.2 설치 권고 사양... 5 2.3 프로그램 설치... 6 2.4 하드웨

목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시 주의사항... 5 2.2 설치 권고 사양... 5 2.3 프로그램 설치... 6 2.4 하드웨 최종 수정일: 2010.01.15 inexio 적외선 터치스크린 사용 설명서 [Notes] 본 매뉴얼의 정보는 예고 없이 변경될 수 있으며 사용된 이미지가 실제와 다를 수 있습니다. 1 목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Text-LCD Device Control - Device driver Jo, Heeseung M3 모듈에장착되어있는 Tedxt LCD 장치를제어하는 App 을개발 TextLCD 는영문자와숫자일본어, 특수문자를표현하는데사용되는디바이스 HBE-SM5-S4210 의 TextLCD 는 16 문자 *2 라인을 Display 할수있으며, 이 TextLCD 를제어하기위하여

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 KeyPad Device Control - Device driver Jo, Heeseung HBE-SM5-S4210 에는 16 개의 Tack Switch 를사용하여 4 행 4 열의 Keypad 가장착 4x4 Keypad 2 KeyPad 를제어하기위하여 FPGA 내부에 KeyPad controller 가구현 KeyPad controller 16bit 로구성된

More information

슬라이드 1

슬라이드 1 CCS v4 사용자안내서 CCSv4 사용자용예제따라하기안내 0. CCS v4.x 사용자 - 준비사항 예제에사용된 CCS 버전은 V4..3 버전이며, CCS 버전에따라메뉴화면이조금다를수있습니다. 예제실습전준비하기 처음시작하기예제모음집 CD 를 PC 의 CD-ROM 드라이브에삽입합니다. 아래안내에따라, 예제소스와헤더파일들을 PC 에설치합니다. CD 드라이브 \SW\TIDCS\TIDCS_DSP80x.exe

More information

임베디드시스템설계강의자료 4 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과

임베디드시스템설계강의자료 4 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과 임베디드시스템설계강의자료 4 (2014 년도 1 학기 ) 김영진 아주대학교전자공학과 Outline n n n n n n 보드개요보드연결필수패키지, Tool-Chain 설치 Kernel, file system build Fastboot 및 Tera Term설치 Kernel, file system 이미지전송및설치 - 2 - Young-Jin Kim X-Hyper320TKU

More information

uFOCS

uFOCS 1 기 : 기 UF_D_V250_002 기 기 기 품 ufocs 기 v2.5.0 히기기기기기기기기기 기 Manual 기 version 기 3.2 기품 2011.7.29 히기 345-13 1 Tel : 02-857-3051 Fax : 02-3142-0319 : http://www.satu.co.kr 2010 SAT information Co., Ltd. All

More information

MR-3000A-MAN.hwp

MR-3000A-MAN.hwp ITS Field Emulator for Traffic Local Controller [ MR-3000A ] User's Manual MORU Industrial Systems. www.moru.com - 1 - 1. 개요 MR-3000A는교통관제시스템에있어서현장용교통신호제어기의개발, 신호제어알고리즘의개발및검증, 교통신호제어기생산 LINE에서의자체검사수단등으로활용될수있도록개발된물리적모의시험장치이다.

More information

기존에 Windchill Program 이 설치된 Home Directory 를 선택해준다. 프로그램설치후설치내역을확인해보면 Adobe Acrobat 6.0 Support 내역을확인할수 있다.

기존에 Windchill Program 이 설치된 Home Directory 를 선택해준다. 프로그램설치후설치내역을확인해보면 Adobe Acrobat 6.0 Support 내역을확인할수 있다. PDMLink 에등록된 Office 문서들의 PDF 문서변환기능및 Viewer 기능을알아보자 PDM Link에서지원하는 [Product View Document Support] 기능은 Windows-Base 기반의 Microsoft Office 문서들을 PDMLink용 Viewer인 Product View를통한읽기가가능한 PDF Format 으로변환하는기능이다.

More information

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C D616E2E637070>

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C D616E2E637070> #include "stdafx.h" #include "Huffman.h" 1 /* 비트의부분을뽑아내는함수 */ unsigned HF::bits(unsigned x, int k, int j) return (x >> k) & ~(~0

More information

Smart Power Scope Release Informations.pages

Smart Power Scope Release Informations.pages v2.3.7 (2017.09.07) 1. Galaxy S8 2. SS100, SS200 v2.7.6 (2017.09.07) 1. SS100, SS200 v1.0.7 (2017.09.07) [SHM-SS200 Firmware] 1. UART Command v1.3.9 (2017.09.07) [SHM-SS100 Firmware] 1. UART Command SH모바일

More information

Mango-IMX6Q mfgtool을 이용한 이미지 Write하기

Mango-IMX6Q mfgtool을 이용한 이미지 Write하기 Mango-IMX6Q mfgtool 을 이용한이미지 Write 하기 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

Microsoft Word - jEMB11_kor.docx

Microsoft Word - jEMB11_kor.docx TO : Jinyoung Contech Co., Ltd. #501, 222-12 MARIOTOWER, GURO3-DONG, GURO-KU, SEOUL, KOREA TEL : 82-2-890-6400 FAX : 82-2-890-6406 HOME PAGE : http://www.jyct.com/ Issued Date : 2011-08-23 Page : 17 Pages

More information

XDS100S V3 Entry-level JTAG Emulator. Revision XDS100S V3 ( 사용매뉴얼 ) Rev TEL , FAX , .

XDS100S V3 Entry-level JTAG Emulator. Revision XDS100S V3 ( 사용매뉴얼 ) Rev TEL , FAX ,  . Revision 12.01.31 XDS100S V3 ( 사용매뉴얼 ) Rev. 1.0.1 [1] page *Revision History 날짜 내용 2011. 12. 13. - Rev. 1.0 초판완성 2012. 01. 31. - Rev. 1.0.1 연결 Tip 추가 [2] page 목차 XDS100S V3... 1 1 제품구성... 4 2 XDS100S V3의특징...

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Development Environment 2 Jo, Heeseung make make Definition make is utility to maintain groups of programs Object If some file is modified, make detects it and update files related with modified one It

More information

Microsoft PowerPoint - chap01-C언어개요.pptx

Microsoft PowerPoint - chap01-C언어개요.pptx #include int main(void) { int num; printf( Please enter an integer: "); scanf("%d", &num); if ( num < 0 ) printf("is negative.\n"); printf("num = %d\n", num); return 0; } 1 학습목표 프로그래밍의 기본 개념을

More information

#KLZ-371(PB)

#KLZ-371(PB) PARTS BOOK KLZ-371 INFORMATION A. Parts Book Structure of Part Book Unique code by mechanism Unique name by mechanism Explode view Ref. No. : Unique identifcation number by part Parts No. : Unique Product

More information

Microsoft PowerPoint - 3ÀÏ°_º¯¼ö¿Í »ó¼ö.ppt

Microsoft PowerPoint - 3ÀÏ°_º¯¼ö¿Í »ó¼ö.ppt 변수와상수 1 변수란무엇인가? 변수 : 정보 (data) 를저장하는컴퓨터내의특정위치 ( 임시저장공간 ) 메모리, register 메모리주소 101 번지 102 번지 변수의크기에따라 주로 byte 단위 메모리 2 기본적인변수형및변수의크기 변수의크기 해당컴퓨터에서는항상일정 컴퓨터마다다를수있음 short

More information

Microsoft Word - CL5000,5500_KOR_UM_20110321_.doc

Microsoft Word - CL5000,5500_KOR_UM_20110321_.doc 2 차 례 1. 주의 사항... 8 1.1 취급주의... 8 2. Specification... 10 2.1 소개... 10 2.2 규격... 12 3. 명칭과 기능... 14 3.1 CL 5000 - P Type... 14 3.2 기본 설치... 18 3.3 표시부... 19 3.4 기능키... 20 3.5 라벨롤의 설치... 24 4. PROGRAMMING...

More information

<4D F736F F F696E74202D20BBB7BBB7C7D15F FBEDFB0A3B1B3C0B05FC1A634C0CFC2F72E BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D20BBB7BBB7C7D15F FBEDFB0A3B1B3C0B05FC1A634C0CFC2F72E BC8A3C8AF20B8F0B5E55D> 뻔뻔한 AVR 프로그래밍 The 4 th Lecture 유명환 ( yoo@netplug.co.kr) 1 시간 (Time) 에대한정의 INDEX 2 왜타이머 (Timer) 와카운터 (Counter) 인가? 3 ATmega128 타이머 / 카운터동작구조 4 ATmega128 타이머 / 카운터관련레지스터 5 뻔뻔한노하우 : 레지스터비트설정방법 6 ATmega128

More information

hlogin7

hlogin7 0x07. Return Oriented Programming ROP? , (DEP, ASLR). ROP (Return Oriented Programming) (excutable memory) rop. plt, got got overwrite RTL RTL Chain DEP, ASLR gadget Basic knowledge plt, got call function

More information

CPX-E-EC_BES_C_ _ k1

CPX-E-EC_BES_C_ _ k1 CPX-E CPX-E-EC EtherCAT 8071155 2017-07 [8075310] CPX-E-EC CPX-E-EC-KO EtherCAT, TwinCAT (). :, 2 Festo CPX-E-EC-KO 2017-07 CPX-E-EC 1... 4 1.1... 4 1.2... 4 1.3... 4 1.4... 5 1.5... 5 2... 6 2.1... 6

More information