FSA. Library Link. Rev.1.0

Size: px
Start display at page:

Download "FSA. Library Link. Rev.1.0"

Transcription

1 FSA Library Object Link Manual Rev.1.0

2 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation, demonstration, or development purposes only. Do not use it for other purposes. It is not intended to meet the requirements of design for finished products. 2. This evaluation board/kit or development tool is intended for use by an electronics engineer and is not a consumer product. The user should use it properly and in a safe manner. Seiko Epson dose not assume any responsibility or liability of any kind of damage and/or fire coursed by the use of it. The user should cease to use it when any abnormal issue occurs even during proper and safe use. 3. The part used for this evaluation board/kit or development tool may be changed without any notice. NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right to make changes to this material without notice. Seiko Epson does not assume any liability of any kind arising out of any inaccuracies contained in this material or due to its application or use in any product or circuit and, further, there is no representation that this material is applicable to products requiring high level reliability, such as, medical products. Moreover, no license to any intellectual property rights is granted by implication or otherwise, and there is no representation or warranty that anything made in accordance with this material will be free from any patent or copyright infringement of a third party. When exporting the products or technology described in this material, you should comply with the applicable export control laws and regulations and follow the procedures required by such laws and regulations. You are requested not to use, to resell, to export and/or to otherwise dispose of the products (and any technical information furnished, if any) for the development and/or manufacture of weapon of mass destruction or for other military purposes. All brands or product names mentioned herein are trademarks and/or registered trademarks of their respective companies. SEIKO EPSON CORPORATION 2015, All rights reserved.

3 Table of Contents 1. Overview Environment FSA Library Files Link Procedures... 2 Step-1 Setting Symbol Information... 2 Step-2 Setting Include Path... 3 Step-3 Adding FSA Library Object... 4 Step-4 Setting FSA Relevant Section... 5 Adding.fsacons Section... 5 Adding.fsacode Section... 6 Adding.fsawork Section... 7 Step-5 Adding Boot Process... 9 Step-6 Building Project Confirming FSA Stack Memory Area Revision History FSA Library Object Link Manual Seiko Epson Corporation i

4 1. Overview 1. Overview This document is intended to describe procedures to link FSA objects in the C17 integrated development environment (Eclipse). 2. Environment C17 integrated development environment (Eclipse) and PC FSA 2.0 SDK is installed 3. FSA Library Files In general, the FSA library is composed of files listed in Table 3.1. The symbol XXXX in the table represents an FSA library name. Table 3.1 FSA Library File List File XXXX.o XXXX_fsa.o fsa_symbols_xxxx.def XXXX.h Description Object file for C17 program codes and constant arrays Object file for FSA program codes Symbol definition file for the linker to resolve symbols in FSA programs Library function declaration and parameter definition FSA Library Object Link Manual Seiko Epson Corporation 1

5 4. Link Procedures 4. Link Procedures This section describes example procedures to link the FFT library shown below when thee library configuration file below is located at the fsalib folder immediately below the GNU17 project folder. fsafft fsa.o fsafft.o fsa_symbols_fsafft.def fsafft.h Step-1 Setting Symbol Information In the Properties screen of target project, select Build Options, Linker, and General in order. Add -R fsasymbols_fsafft.def to thee Linker flags field shown at the right. (-R filename: Reads symbol names and their addresses from the file filename.) 2 Seiko Epson Corporation FSA Library Object Link Manual

6 4.. Link Procedures Step-2 Setting Include Path In the Properties screen of target project, select Build Options, Compiler, and Directories in order. Add $(FSA_DIR)/include to the Include Paths fieldd shown at the right. (FSA_DIR is automatically added to environment variables when installing FSA2.0-SDK.) Also, add the FSA library folder (./fsalib) here. FSA Library Object Link Manual Seiko Epson Corporation 3

7 4. Link Procedures Step-3 Adding FSA Library Object In the Properties screen of target project, select Build Options, Linker, and Libraries in order. Add the FSA library objects (fsalib/fsafft.o, fsakib/fsafft_fsa.o) to the Libraries field shown at the right. 4 Seiko Epson Corporation FSA Library Object Link Manual

8 4.. Link Procedures Step-4 Setting FSA Relevant Section In the Properties screen of target project, select Linker Script Settings shown at the left. Add the.fsacons,.fsacode, and.fsawork sections in the Linker Script Settings shown at the right. r (*1) Place FSA objects in these three sections. (*1) :.fsacons,.fsacode, and.fsawork are predetermined section names. Do not change them. Place three FSA sectionss in the area accessible a from FSA. However, to holdd the FSA programs and constant arrays in nonvolatile memory, set these sections above as VMA and set nonvolatile memory area as LMA. Adding.fsacons Section In the Linker Script Settings screen, click the [Add] button and add fsacons section as shown below. In the example below, Virtual map address (VMA)( is set t to 0x0C0000, the [LMA VMA] checkbox is selected, and the Load map address (LMA) is set to data section. Change thesee settings, if needed. n Select.rodata as File Attributes. Note that there is no need to add objects to Allocated files fieldd especially. FSA Library Object Link Manual Seiko Epson Corporation 5

9 4. Link Procedures Adding.fsacode Section In the Linker Script Settings screen, click the [Add] button and add fsacods as shownn below. In the example below, Virtual map address (VMA) iss set to 0x0C1000, the [LMA VMA] checkbox is selected, and the t Load map addresss (LMA) is set to fsacons section. Change these settings, if needed. Select.text as File Attributes. Note that there is no need to add objects to Allocated files field especially. 6 Seiko Epson Corporation FSA Library Object Link Manual

10 4.. Link Procedures Adding.fsawork Section Since the variable.fsawork does not have initiall value, there is nothing wrong when the variable is directly laid out on RAM. Therefore, add it as follows. In the example below, Virtual map address is set to 0x0C2000. Change this setting, if needed. Note that theree is no need too add objects to Allocatedd files field especially. FSA Library Object Link Manual Seiko Epson Corporation 7

11 4. Link Procedures When the.fsacons,.fsacode, and.fsawork sections are added as mentioned above,, the Linker Script Settings screen becomes as follows. Tip Since FSA-RAM for MCU equipped with FSA is composed of multiple RAM banks, place each section in different RAM bank, by all possible means. It can reduce the memory access conflict andd improve performance to place each section in different RAM bank. Especially, it is recommended to allocate the.fsacode section where the FSA program is placed to independent RAM bank. 8 Seiko Epson Corporation FSA Library Object Link Manual

12 4. Link Procedures Step-5 Adding Boot Process The FSA programs and constant arrays will be copied from LMA to VMA at system boot time. In general, add the lines below to the boot process. extern unsigned long START_fsacode; extern unsigned long START_fsacode_lma; extern unsigned long END_fsacode; extern unsigned long START_fsacons; extern unsigned long START_fsacons_lma; extern unsigned long END_fsacons; memcpy(& START_fsacode, & START_fsacode_lma, & END_fsacode - & START_fsacode); memcpy(& START_fsacons, & START_fsacons_lma, & END_fsacons - & START_fsacons); Step-6 Building Project When the settings above are finished, build the target project. After the building, check whether there is anything wrong with the link based on the mapped file, etc. FSA Library Object Link Manual Seiko Epson Corporation 9

13 5. Confirming FSA Stack Memory Area 5. Confirming FSA Stack Memory Area FSA uses the uppermost accessible memory area as temporary working space. This area is called an FSA stack memory and its size to use is defined for each FSA library. In particular, the largest size of area must be ensured of all FSA stack memories to be used by the FSA library functions implemented. It is impossible to place the section data, such as.fsacons,.fsacode, and.fsawork, in this FSA stack memory. The FSA stack memory size is described in the requirement memory section of each library specifications. Upper address The area below the upper bound address is used as a stack. Memory area accessible by FSA (FSA-RAM) Lower address Figure 5.1 FSA Stack Memory 10 Seiko Epson Corporation FSA Library Object Link Manual

14 Revision History Revision History Rev. No. Date Page Category Contents Rev /01/09 All new Attachment-1 FSA Library Object Link Manual Seiko Epson Corporation 11

15 International Sales Operations AMERICA EPSON ELECTRONICS AMERICA, INC. 214 Devcon Drive, San Jose, CA 95112, USA Phone: FAX: EUROPE EPSON EUROPE ELECTRONICS GmbH Riesstrasse 15, Munich, GERMANY Phone: FAX: ASIA EPSON (CHINA) CO., LTD. 7F, Jinbao Bldg., No.89 Jinbao St., Dongcheng District, Beijing , CHINA Phone: FAX: SHANGHAI BRANCH 7F, Block B, Hi-Techh Bldg., 900 Yishan Road, Shanghai , CHINA C Phone: FAX: SHENZHEN BRANCH 12F, Dawning Mansion, Keji South 12th Road, Hi-Tech Park, Shenzhen , CHINA Phone: FAX: EPSON HONG KONG K LTD. Unit , 7/F Trade Square, 681 Cheung Sha Wann Road, Kowloon, Hong Kong. Phone: FAX: EPSON TAIWAN TECHNOLOGYY & TRADING LTD. 14F, No. 7, Song Ren Road, Taipei 110, TAIWAN Phone: FAX: EPSON SINGAPORE PTE., LTD. 1 HarbourFront Place, #03-02 HarbourFront Tower One, Singapore Phone: FAX: SEIKO EPSON CORP. C KOREA OFFICE 5F, KLI 63 Bldg., 60 Yoido-dong, Youngdeungpo-Ku, Seoul , KOREA Phone: FAX: SEIKO EPSON CORP. C MICRODEVICESS OPERATIONSS DIVISION Device Sales & Marketing M Department 421-8, Hino, Hino-shi, Tokyo , JAPAN Phone: FAX: Document Code: First Issue January in JAPAN

S1V3G340 External SPI-Flash Select Guide

S1V3G340 External SPI-Flash Select Guide S1V3G340 External SPI-Flash Select Guide Rev.1.00 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson

More information

For S1C63 Family Flash microcontroller Multiple-Programming ROM Writer Software (GW63)

For S1C63 Family Flash microcontroller Multiple-Programming ROM Writer Software (GW63) For S1C63 Family Flash microcontroller Multiple-Programming ROM Writer Software (GW63) Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool

More information

S1C17 Family EEPROM Emulation Library Manual

S1C17 Family EEPROM Emulation Library Manual S1C17 Family EEPROM Emulation Library Manual Rev.1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation,

More information

S1C17 Family Port Nested Interrupt Application Notes

S1C17 Family Port Nested Interrupt Application Notes S1C17 Family Port Nested Interrupt Application Notes Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering

More information

S1C17 Family Application Library S1C17 Series Steps Calculation Library

S1C17 Family Application Library S1C17 Series Steps Calculation Library S1C17 Family Application Library S1C17 Series Steps Calculation Library Rev. 2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed

More information

S1C31 Family PA File Creation Tool Manual

S1C31 Family PA File Creation Tool Manual CMOS 32-BIT SINGLE CHIP MICROCONTROLLER S1C31 Family PA File Creation Tool Manual Rev.2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is

More information

Connecting EPSON Display Controllers to Topway LCD Panels

Connecting EPSON Display Controllers to Topway LCD Panels Connecting EPSON Display Controllers to Topway LCD Panels Document Number: Issue Date: 2012/04/23 SEIKO EPSON CORPORATION Rev. 1.0 Page 2 NOTICE No part of this material may be reproduced or duplicated

More information

S1C17 M01/W22/W23/W15 Self-Modifying Software (FLS) Manual

S1C17 M01/W22/W23/W15 Self-Modifying Software (FLS) Manual S1C17 M01/W22/W23/W15 Self-Modifying Software (FLS) Manual Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering

More information

GNU17V3 Setup Guide. Rev.2.0

GNU17V3 Setup Guide. Rev.2.0 GNU17V3 Setup Guide Rev.2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation, demonstration, or

More information

S1C17 Family Application Note S1C17 Series Boot Loader Sample Software

S1C17 Family Application Note S1C17 Series Boot Loader Sample Software S1C17 Family Application Note S1C17 Series Boot Loader Sample Software Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for

More information

S1V30080 Series I2C Interface Sample Program Specifications

S1V30080 Series I2C Interface Sample Program Specifications S1V30080 Series I2C Interface Sample Program Specifications Rev.1.00 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko

More information

S5U1C31D50T1 Manual (S1C31D50 Evaluation Board)

S5U1C31D50T1 Manual (S1C31D50 Evaluation Board) CMOS 32-BIT SINGLE CHIP MICROCONTROLLER S5U1C31D50T1 Manual (S1C31D50 Evaluation Board) Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool

More information

S1C33 Family Application Note S1C33L26 Software Reference Manual

S1C33 Family Application Note S1C33L26 Software Reference Manual S1C33 Family Application Note S1C33L26 Software Reference Manual Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use

More information

SG-8506CA-EVB Preliminary

SG-8506CA-EVB Preliminary SG-8506CA Evaluation Board Manual SG-8506CA-EVB Preliminary Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering

More information

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17656T Manual (Software Evaluation Tool for S1C17656)

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17656T Manual (Software Evaluation Tool for S1C17656) CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17656T Manual (Software Evaluation Tool for S1C17656) Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development

More information

IMU (Inertial Measurement Unit) IMU / USB Interface Board (M-G3xx, M-V3xx) Logger Software User s Guide

IMU (Inertial Measurement Unit) IMU / USB Interface Board (M-G3xx, M-V3xx) Logger Software User s Guide IMU (Inertial Measurement Unit) IMU / USB Interface Board (M-G3xx, M-V3xx) Logger Software User s Guide Rev.20181129 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit

More information

S1F77330 Series Technical Manual

S1F77330 Series Technical Manual Series Technical Manual Rev.2.1 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right

More information

S5U1C17000Y2 GangWriter Software Manual

S5U1C17000Y2 GangWriter Software Manual S5U1C17000Y2 GangWriter Software Manual Rev.1.0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves

More information

S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board)

S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board) MF1434-01 CMOS 8-BIT SINGLE CHIP MICROCOMPUTER S5U1C88000P Manual (S1C88 Family Peripheral Circuit Board) NOTICE No part of this material may be reproduced or duplicated in any form or by any means without

More information

S1V3G340 Development Reference Guide

S1V3G340 Development Reference Guide S1V3G340 Rev.1.00 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right to make changes

More information

S5U1S65K01H4100 Camera Board Technical Manual

S5U1S65K01H4100 Camera Board Technical Manual S5US65K0H400 Camera Board Technical Manual Rev..0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson

More information

S1R72U16 Development Support Manual

S1R72U16 Development Support Manual S1R72U16 Development Support Manual Rev.2.00 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves

More information

S1C17W23 EL Lamp Application Notes

S1C17W23 EL Lamp Application Notes S1C17W23 EL Lamp Application Notes Rev. 1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation, demonstration,

More information

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17651T2 Manual (Software Evaluation Tool for S1C17651)

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17651T2 Manual (Software Evaluation Tool for S1C17651) CMOS 6-BIT SINGLE CHIP MICROCONTROLLER SUC76T Manual (Software Evaluation Tool for SC76) Rev..0 Evaluation board/kit and Development tool important notice. This evaluation board/kit or development tool

More information

Multi Programmer Ver.4.0 (S5U1C17000Y24) User Manual

Multi Programmer Ver.4.0 (S5U1C17000Y24) User Manual CMOS 16-BIT SINGLE CHIP MICROCONTROLLER Multi Programmer Ver.4.0 (S5U1C17000Y24) User Manual Rev.2.01 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development

More information

S5U13781R00C10M User Manual

S5U13781R00C10M User Manual S5U13781R00C10M User Manual Document Number: Status: Revision 1.0 Issue Date: 2012/09/25 SEIKO EPSON CORPORATION Rev. 1.0 Page 2 Evaluation board/kit and Development tool important notice 1. This evaluation

More information

S5U13781R01C100 Shield TFT Board for Arduino Due Users Manual

S5U13781R01C100 Shield TFT Board for Arduino Due Users Manual S5U13781R01C100 Shield TFT Board for Arduino Due Users Manual Document Number: Status: Revision 1.0 Issue Date: 2015/07/17 SEIKO EPSON CORPORATION Rev. 1.0 Page 2 Evaluation board/kit and Development tool

More information

RC90 Upgrade Procedures

RC90 Upgrade Procedures RC90 Upgrade Procedures EM136R2547F Table of Contents Thank you for purchasing our robot system. Before using the robot system, please read this manual thoroughly and use the product properly. Keep this

More information

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp.

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. To all our customers Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. The semiconductor operations of Mitsubishi Electric and

More information

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C31D01T1 Manual (Software Evaluation Tool for S1C31D01)

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C31D01T1 Manual (Software Evaluation Tool for S1C31D01) CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C31D01T1 Manual (Software Evaluation Tool for S1C31D01) Rev.1.2 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development

More information

VCC_3.3V GND. USB Evaluation Cable (M-C30EV041) RTS CTS UART_RXD. Fig1. Block Diagram

VCC_3.3V GND. USB Evaluation Cable (M-C30EV041) RTS CTS UART_RXD. Fig1. Block Diagram Data Sheet Evaluation Cable Interface / Breakout Board for EPSON IMU OVERVIEW This Evaluation Cable Interface/Breakout Board is designed to convert the 1mm pitch connector of the Epson IMU to a.54mm pitch

More information

S1C17555/565/955/965

S1C17555/565/955/965 DESCRIPTIONS 16-bit Single Chip Microcontroller Built-in FSA (Flexible Signal processing Accelerator) function; It realize high processing with low power 12-bit A/D converter Several kinds of serial interface

More information

Unit: mm Max Max Max Min 5.06 Max Min ± ± 0.10

Unit: mm Max Max Max Min 5.06 Max Min ± ± 0.10 Unit: mm 19.20 20.32 Max 14 8 6.30 7.40 Max 1 1.30 7 2.39 Max 2.54 ± 0.25 0.48 ± 0.10 0.51 Min 2.54 Min 5.06 Max 0 15 0.25 7.62 + 0.10 0.05 Hitachi Code JEDEC EIAJ Weight (reference value) DP-14 0.97 g

More information

S1C31D01 Photoplethysmography (PPG) Demonstration Kit Software Manual

S1C31D01 Photoplethysmography (PPG) Demonstration Kit Software Manual S1C31D01 Photoplethysmography (PPG) Demonstration Kit Software Manual Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for

More information

PCB Design Guidelines for S1R72V Series USB 2.0 High-Speed Devices

PCB Design Guidelines for S1R72V Series USB 2.0 High-Speed Devices PCB Design Guidelines for S1R72V Series USB 2.0 High-Speed Devices Rev.2.3 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of

More information

S5U1C63000P Manual (S1C63 Family Peripheral Circuit Board)

S5U1C63000P Manual (S1C63 Family Peripheral Circuit Board) MF1408-01a CMOS 4-BIT SINGLE CHIP MICROCOMPUTER S5U1C63000P Manual (S1C63 Family Peripheral Circuit Board) NOTICE No part of this material may be reproduced or duplicated in any form or by any means without

More information

Silicon Epitaxial Planar Zener Diode for Stabilized Power Supply. Type No. Mark Package Code HZS Series Type No. MHD B 7

Silicon Epitaxial Planar Zener Diode for Stabilized Power Supply. Type No. Mark Package Code HZS Series Type No. MHD B 7 Silicon Epitaxial Planar Zener Diode for Stabilized Power Supply Features REJ3G184-3Z (Previous: ADE-28-12B) Rev.3. Mar.11.24 Low leakage, low zener impedance and maximum power dissipation of 4 mw are

More information

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp.

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. To all our customers Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. The semiconductor operations of Mitsubishi Electric and

More information

S5U13781R01C100 Shield TFT Board Users Manual

S5U13781R01C100 Shield TFT Board Users Manual S5U13781R01C100 Shield TFT Board Users Manual Document Number: Status: Revision 1.01 Issue Date: 2016/02/26 SEIKO EPSON CORPORATION Rev. 1.01 Page 2 Evaluation board/kit and Development tool important

More information

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp.

Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. To all our customers Regarding the change of names mentioned in the document, such as Hitachi Electric and Hitachi XX, to Renesas Technology Corp. The semiconductor operations of Mitsubishi Electric and

More information

HSM107S. Silicon Schottky Barrier Diode for System Protection. ADE F(Z) Rev 6 Sep Features. Ordering Information.

HSM107S. Silicon Schottky Barrier Diode for System Protection. ADE F(Z) Rev 6 Sep Features. Ordering Information. Silicon Schottky Barrier Diode for System Protection ADE-208-058F(Z) Rev 6 Sep. 1998 Features Low V F and high efficiency. which is interconnected in series configuration is designed for protection from

More information

HSM88WK. Proof against high voltage. MPAK package is suitable for high density surface mounting and high speed assembly.

HSM88WK. Proof against high voltage. MPAK package is suitable for high density surface mounting and high speed assembly. Silicon Schottky Barrier Diode for Balanced Mixer ADE-208-0489F (Z) Rev 6 Jul 1998 Features Proof against high voltage. MPAK package is suitable for high density surface mounting and high speed assembly.

More information

S1R72V17 CPU Connection Guide

S1R72V17 CPU Connection Guide S1R72V17 CPU Connection Guide Rev. 1.0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the

More information

1SS286. Silicon Schottky Barrier Diode for Various Detector, High Speed Switching

1SS286. Silicon Schottky Barrier Diode for Various Detector, High Speed Switching Silicon Schottky Barrier Diode for Various Detector, High Speed Switching ADE-208-302A (Z) Rev. 1 Sep. 1995 Features Very low reverse current. Detection efficiency is very good. Small glass package (MHD)

More information

1SS106. Silicon Schottky Barrier Diode for Various Detector, High Speed Switching

1SS106. Silicon Schottky Barrier Diode for Various Detector, High Speed Switching 1SS6 Silicon Schottky Barrier Diode for Various Detector, High Speed Switching ADE-208-153A (Z) Rev. 1 Oct. 1998 Features Detection efficiency is very good. Small temperature coefficient. High reliability

More information

S2R72A54 Application Note

S2R72A54 Application Note S2R72A54 Application Note Rev.1.02 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right

More information

HD74HC09. Quad. 2-input AND Gates (with open drain outputs) Features. Pin Arrangement

HD74HC09. Quad. 2-input AND Gates (with open drain outputs) Features. Pin Arrangement HD74HC09 Quad. 2-input AND Gates (with open drain outputs) Features High Speed Operation: t pd = 8 ns typ (C L = 50 pf) High Output Current: Fanout of 10 LSTTL Loads Wide Operating Voltage: V CC = 2 to

More information

1S2075(K) Silicon Epitaxial Planar Diode for High Speed Switching. ADE A (Z) Rev. 1 Aug Features. Ordering Information.

1S2075(K) Silicon Epitaxial Planar Diode for High Speed Switching. ADE A (Z) Rev. 1 Aug Features. Ordering Information. Silicon Epitaxial Planar Diode for High Speed Switching Features Low capacitance. (C = 3.5pF max) Short reverse recovery time. (t rr = 8.0ns max) High reliability with glass seal. ADE-208-144A (Z) Rev.

More information

YASKAWA AC Drive-J1000 Option. RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC RS-232C SI-232/J, SI-232/JC J1000

YASKAWA AC Drive-J1000 Option. RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC RS-232C SI-232/J, SI-232/JC J1000 YASKAWA AC Drive-J1000 Option RS-232C Interface Technical Manual Type SI-232/J, SI-232/JC To properly use the product, read this manual thoroughly and retain for easy reference, inspection, and maintenance.

More information

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17W23T Manual (Software Evaluation Tool for S1C17W22/W23)

CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17W23T Manual (Software Evaluation Tool for S1C17W22/W23) CMOS 16-BIT SINGLE CHIP MICROCONTROLLER S5U1C17W23T Manual (Software Evaluation Tool for S1C17W22/W23) Rev.1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or

More information

2SB727(K) Silicon PNP Epitaxial. Medium speed and power switching complementary pair with 2SD768(K) Base 2. Collector (Flange) 3.

2SB727(K) Silicon PNP Epitaxial. Medium speed and power switching complementary pair with 2SD768(K) Base 2. Collector (Flange) 3. Silicon PNP Epitaxial ADE-208-857 (Z) 1st. Edition Sep. 2000 Application Medium speed and power switching complementary pair with 2SD768(K) Outline TO-220AB 2 1 1 2 1. Base 2. Collector (Flange). Emitter

More information

DUAL REVERSIBLE MOTOR DRIVER MB3863

DUAL REVERSIBLE MOTOR DRIVER MB3863 FUJITSU MICROELECTRONICS DATA SHEET DS4-2914-3Ea ASSP DUAL REVERSIBLE MOTOR DRIVER MB3863 DESCRIPTION The MB3863 is an IC motor driver with two independent reverse control functions. It drives motor drives

More information

Hardware Prerequisites Atmel Xplained Pro Evaluation Kit Atmel WINC1500 extension USB Micro Cable (TypeA / MicroB)

Hardware Prerequisites Atmel Xplained Pro Evaluation Kit Atmel WINC1500 extension USB Micro Cable (TypeA / MicroB) BENCHMARK WINC1500 Wi-Fi Module Benchmark using iperf 2.0.5 Prerequisites Hardware Prerequisites Atmel Xplained Pro Evaluation Kit Atmel WINC1500 extension USB Micro Cable (TypeA / MicroB) Software Prerequisites

More information

HD74HC00. Quad. 2-input NAND Gates. Features. Pin Arrangement

HD74HC00. Quad. 2-input NAND Gates. Features. Pin Arrangement HD74HC00 Quad. 2-input NAND Gates Features High Speed Operation: t pd = 8.5 ns typ (C L = 50 pf) High Output Current: Fanout of 10 LSTTL Loads Wide Operating Voltage: V CC = 2 to 6 V Low Input Current:

More information

2SK439. Silicon N-Channel MOS FET. Application. Outline. VHF amplifier SPAK. 1. Gate 2. Source 3. Drain

2SK439. Silicon N-Channel MOS FET. Application. Outline. VHF amplifier SPAK. 1. Gate 2. Source 3. Drain Silicon N-Channel MOS FET Application VHF amplifier Outline SPAK 1 2 3 1. Gate 2. Source 3. Drain Absolute Maximum Ratings (Ta = 25 C) Item Symbol Ratings Unit Drain to source voltage V DS 20 V Gate to

More information

HZ-P Series Silicon Epitaxial Planar Zener Diodes for Voltage Controller & Voltage Limitter

HZ-P Series Silicon Epitaxial Planar Zener Diodes for Voltage Controller & Voltage Limitter Silicon Epitaxial Planar Zener Diodes for Voltage Controller & Voltage Limitter ADE-208-123D (Z) Rev.4 Sep. 2000 Features Wide spectrum from 1.88V through 40V of zener voltage provide flexible application.

More information

HD74HC of-8-line Data Selector/Multiplexer. Description. Features. Function Table

HD74HC of-8-line Data Selector/Multiplexer. Description. Features. Function Table HD74HC151 1 of-8-line Data Selector/Multiplexer Description The HD74HC151 selects one of the 8 data sources, depending on the address presented on the A, B and C inputs. It features both true (Y) and complement

More information

Silicon Planar Zener Diode for Low Noise Application. Part No. Cathode Band Package Name Package Code HZ-L Series Navy blue DO-35 GRZZ0002ZB-A 7 B 2

Silicon Planar Zener Diode for Low Noise Application. Part No. Cathode Band Package Name Package Code HZ-L Series Navy blue DO-35 GRZZ0002ZB-A 7 B 2 Silicon Planar Zener Diode for Low Noise Application REJ3G182-3 Rev.3. Nov.6.27 Features Diode noise level of this series is approximately 1/3-1/1 lower than the HZ series. Low leakage, low zener impedance

More information

APPLICATION NOTE. AT03324: Atmel REB212BSMA-EK Quick Start Guide. Atmel MCU Wireless. Introduction

APPLICATION NOTE. AT03324: Atmel REB212BSMA-EK Quick Start Guide. Atmel MCU Wireless. Introduction APPLICATION NOTE AT03324: Atmel REB212BSMA-EK Quick Start Guide Atmel MCU Wireless This application note briefly describes how to set up and run the pre-flashed applications supplied with the Atmel REB212BSMA

More information

2SK213, 2SK214, 2SK215, 2SK216

2SK213, 2SK214, 2SK215, 2SK216 Silicon N-Channel MOS FET Application High frequency and low frequency power amplifier, high speed switching. Complementary pair with 2SJ76, J77, J78, J79 Features Suitable for direct mounting High forward

More information

HZM6.8WA. Silicon Epitaxial Planar Zener Diode for Surge Absorb. ADE A(Z) Rev 1 Feb. 1, Features. Ordering Information.

HZM6.8WA. Silicon Epitaxial Planar Zener Diode for Surge Absorb. ADE A(Z) Rev 1 Feb. 1, Features. Ordering Information. Silicon Epitaxial Planar Zener Diode for Surge Absorb Features HZM6.8WA has two devices, and can absorb external + and -surge. MPAK Package is suitable for high density surface mounting and high speed

More information

HD74AC240/HD74ACT240

HD74AC240/HD74ACT240 HD74AC240/HD74ACT240 Octal Buffer/Line Driver with 3-State Output Description The HD74AC240/HD74ACT240 is an octal buffer and line driver designed to be employed as a memory address driver, clock driver

More information

2SK2220, 2SK2221. Silicon N-Channel MOS FET. ADE (Z) 1st. Edition Mar Application. Features. Outline

2SK2220, 2SK2221. Silicon N-Channel MOS FET. ADE (Z) 1st. Edition Mar Application. Features. Outline SK, SK1 Silicon N-Channel MOS FET ADE--13 (Z) 1st. Edition Mar. 1 Application Low frequency power amplifier Complementary pair with SJ31, SJ3 Features High power gain Excellent frequency response High

More information

2SK1056, 2SK1057, 2SK1058

2SK1056, 2SK1057, 2SK1058 SK6, SK7, SK8 Silicon N-Channel MOS FET Application Low frequency power amplifier Complementary pair with SJ160, SJ161 and SJ16 Features Good frequency characteristic High speed switching Wide area of

More information

HD74HC174. Hex D-type Flip-Flops (with Clear) ADE (Z) 1st. Edition Sep Description. Features. Function Table

HD74HC174. Hex D-type Flip-Flops (with Clear) ADE (Z) 1st. Edition Sep Description. Features. Function Table Hex D-type Flip-Flops (with Clear) ADE-205-460 (Z) 1st. Edition Sep. 2000 Description This device contains 6 master-slave flip-flops with a common clock and common clear. Data on the D input having the

More information

S1R77022 PCB Design Guide

S1R77022 PCB Design Guide S1R77022 PCB Design Guide Rev.1.0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right

More information

Renesas Starter Kit Sample Code for Cubesuite + Toolchain

Renesas Starter Kit Sample Code for Cubesuite + Toolchain APPLICATION NOTE RL78/G13 R01AN0965EG0100 Rev 1.00 Introduction Renesas Starter Kits (RSK) are supplied as complete development systems for the selected microcontroller. The kit includes an evaluation

More information

APPLICATION NOTE. Atmel AT03160: Migrating Bootloader from ATxmega128A1 to other Atmel XMEGA Devices. Atmel AVR XMEGA. Features.

APPLICATION NOTE. Atmel AT03160: Migrating Bootloader from ATxmega128A1 to other Atmel XMEGA Devices. Atmel AVR XMEGA. Features. APPLICATION NOTE Atmel AT03160: Migrating Bootloader from ATxmega128A1 to other Atmel XMEGA Devices Features Atmel AVR XMEGA bootloader Procedure application C-code sample application for Self Programming

More information

HD74HC273. Octal D-type Flip-Flops (with Clear) ADE (Z) 1st. Edition Sep Description. Features. Function Table

HD74HC273. Octal D-type Flip-Flops (with Clear) ADE (Z) 1st. Edition Sep Description. Features. Function Table Octal -type Flip-Flops (with ) AE-205-482 (Z) 1st. Edition Sep. 2000 escription This device contains 8 master-slave flip-flops with a common clock and common clear. ata on the input having the specified

More information

Design Kit (for ANSOFT Designer TM / Nexxim TM ) User s Manual

Design Kit (for ANSOFT Designer TM / Nexxim TM ) User s Manual Technical Note Design Kit (for ANSOFT Designer TM / Nexxim TM ) User s Manual Document No. PX10401EJ03V0TN (3rd edition) Date Published December 2005 CP(K) NEC Compound Semiconductor Devices, Ltd. 2003,

More information

HD74HC74. Dual D-type Flip-Flops (with Preset and Clear)

HD74HC74. Dual D-type Flip-Flops (with Preset and Clear) Dual D-type Flip-Flops (with Preset and Clear) ADE-205-421 (Z) 1st. Edition Sep. 2000 Description The flip-flop has independent data, preset, clear, and clock inputs and and outputs. The logic level present

More information

CMOS 8-BIT SINGLE CHIP MICROCOMPUTER S5U1C88000H5 Manual. (S1C88 Family In-Circuit Emulator)

CMOS 8-BIT SINGLE CHIP MICROCOMPUTER S5U1C88000H5 Manual. (S1C88 Family In-Circuit Emulator) CMOS 8-BIT SINGLE CHIP MICROCOMPUTER S5U1C88000H5 Manual (S1C88 Family In-Circuit Emulator) NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written

More information

Atmel AVR32847: Migration from/to the UC3L0 64/32/16 from/to the UC3L0 256/ bit Atmel Microcontrollers. Application Note.

Atmel AVR32847: Migration from/to the UC3L0 64/32/16 from/to the UC3L0 256/ bit Atmel Microcontrollers. Application Note. Atmel AVR32847: Migration from/to the UC3L0 64/32/16 from/to the UC3L0 256/128 Features Features comparison Porting considerations and tools Pinout comparison 1 Introduction This application note is a

More information

2SK522. Silicon N-Channel Junction FET. Application. Outline. VHF amplifier, Mixer, local oscillator SPAK. 1. Gate 2. Source 3.

2SK522. Silicon N-Channel Junction FET. Application. Outline. VHF amplifier, Mixer, local oscillator SPAK. 1. Gate 2. Source 3. Silicon N-Channel Junction FET Application VHF amplifier, Mixer, local oscillator Outline SPAK 1 3 1. Gate. Source 3. Drain Absolute Maximum Ratings (Ta = C) Item Symbol Ratings Unit Gate to drain voltage

More information

1. Installation Creating the Project Workspace Opening Sample Code and Source Files Source Code Functionality...

1. Installation Creating the Project Workspace Opening Sample Code and Source Files Source Code Functionality... Introduction APPLICATION NOTE Renesas Starter Kits (RSK) is supplied as complete development systems for the selected microcontroller. The kit includes an evaluation board, portable On-Chip Debugger and

More information

AVR4018: Inertial Two (ATAVRSBIN2) Hardware User's Guide. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR4018: Inertial Two (ATAVRSBIN2) Hardware User's Guide. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR4018: Inertial Two (ATAVRSBIN2) Hardware User's Guide Features Compatible with all Atmel AVR Xplain MCU boards Full nine-degree-of-freedom inertial sensing InvenSense three-axis MEMS gyroscope (IMU-3000

More information

1. Installation Creating the Project Workspace Adding Sample Code into DS Adding GNU Toolchain Support for DS-5...

1. Installation Creating the Project Workspace Adding Sample Code into DS Adding GNU Toolchain Support for DS-5... Introduction APPLICATION NOTE Renesas Starter Kit+ (RSK+) is supplied as complete development systems for the selected microcontroller. The kit includes an evaluation board, portable On-Chip Debugger and

More information

RL78 Family Flash Self-Programming Library Type01 Ver.2.21 for the CC-RL compiler

RL78 Family Flash Self-Programming Library Type01 Ver.2.21 for the CC-RL compiler RL78 Family Flash Self-Programming Library Type01 Ver.2.21 for the CC-RL compiler R20UT3470EJ0100 Rev.1.00 Thank you for using the RL78 Family Flash Self-Programming Library Type01 Ver.2.21 for the CC-RL

More information

2SD2103. Silicon NPN Triple Diffused. Application. Outline. Low frequency power amplifier TO-220FM Base 2. Collector 3. Emitter 2.

2SD2103. Silicon NPN Triple Diffused. Application. Outline. Low frequency power amplifier TO-220FM Base 2. Collector 3. Emitter 2. SD Silicon NPN Triple Diffused Application Low frequency power amplifier Outline TO-0FM. Base. Collector. Emitter. kω (Typ) SD Absolute Maximum Ratings (Ta = C) Item Symbol Rating Unit Collector to base

More information

HD74HC bit Parallel-out Shift Register. ADE (Z) 1st. Edition Sep Description. Features. Function Table

HD74HC bit Parallel-out Shift Register. ADE (Z) 1st. Edition Sep Description. Features. Function Table 8-bit Parallel-out Shift Register ADE-205-456 (Z) 1st. Edition Sep. 2000 Description This 8-bit shift register has gated serial inputs and clear. Each register bit is a D-type master/slave flipflop. Inputs

More information

1. Overview TPS-1 GUI Configuration Tool Procedure of configure TPS Error Code... 9

1. Overview TPS-1 GUI Configuration Tool Procedure of configure TPS Error Code... 9 APPLICATION NOTE TPS-1 R30AN0225EC0100 Rev.1.00 Introduction The objective of this document is to show you of how to use PC TPS-1. Since the typical configuration method involves several of software, it

More information

Oscillation stop detection circuit included

Oscillation stop detection circuit included (rev1.0) DESCRIPTIONS 16-bit Single Chip Microcontroller Wide operating voltage range from 1.8 V to 5.5 V. A maximum of 88 general-purpose I/O ports are available. Equipped with a two-channel 10-bit A/D

More information

HL6321G/22G. AlGaInP Laser Diodes

HL6321G/22G. AlGaInP Laser Diodes AlGaInP Laser Diodes Sales/ Distribution: Creative Technology Lasers ADE-8-598C (Z) www.laser66.com 4th Edition Dec. Description The HL631G/G are.63 µm band AlGaInP laser diodes with a multi-quantum well

More information

LAN Magnetics Solution for 1000BASE-T Evaluation Board TDK Part number: ALT4532-EVA-01

LAN Magnetics Solution for 1000BASE-T Evaluation Board TDK Part number: ALT4532-EVA-01 LAN Magnetics Solution for 1000BASE-T Evaluation Board TDK Part number: ALT4532-EVA-01 Contents PCB area reduction from typical module to discrete placement Typical module TDK discrete placement 17.53

More information

SEGGER J-Link Lite for Renesas Synergy TM

SEGGER J-Link Lite for Renesas Synergy TM User s User Manual s Manual SEGGER J-Link Lite for Renesas Synergy TM Renesas Synergy Platform Synergy Tools & Kits Tools: YSJLINKLITE User s Manual All information contained in these materials, including

More information

E1 Emulator Additional Document for User s Manual (Notes on Connection for RL78)

E1 Emulator Additional Document for User s Manual (Notes on Connection for RL78) User s Manual E1 Emulator Additional Document for User s Manual (Notes on Connection for RL78) Supported Devices: RL78 Family RL78/G13 RL78/G14 RL78/I1A All information contained in these materials, including

More information

The S1F77330 series is the bus switch suitable for USB applications. The adopted CMOS process technology characterizes

The S1F77330 series is the bus switch suitable for USB applications. The adopted CMOS process technology characterizes OVERVIEW Power Bus Switch IC 2 to 1 Bus Switch The S1F77330 series is the bus switch suitable for USB applications. The adopted CMOS process technology characterizes the S1F77330 series by low power consumption.

More information

2SJ76, 2SJ77, 2SJ78, 2SJ79

2SJ76, 2SJ77, 2SJ78, 2SJ79 Silicon P-Channel MOS FET November 1996 Application High frequency and low frequency power amplifier, high speed power switching Complementary pair with 2SK213, 2SK214, 2SK215, 2SK216 Features Suitable

More information

APPLICATION NOTE. R8C/LA8A Group. Abstract. Product. Timer RJ in Timer Mode. This document describes timer RJ in timer mode in the R8C/LA8A Group.

APPLICATION NOTE. R8C/LA8A Group. Abstract. Product. Timer RJ in Timer Mode. This document describes timer RJ in timer mode in the R8C/LA8A Group. APPLICATION NOTE R01AN0380EJ0101 Rev. 1.01 Abstract This document describes timer RJ in timer mode in the R8C/LA8A Group. Product R8C/LA8A Group When using this application note with other Renesas MCUs,

More information

APPLICATION NOTE. Atmel AVR1638: XMEGA RTC Calibration. 8-bit Atmel Microcontrollers. Features. Introduction

APPLICATION NOTE. Atmel AVR1638: XMEGA RTC Calibration. 8-bit Atmel Microcontrollers. Features. Introduction APPLICATION NOTE Atmel AVR1638: XMEGA RTC Calibration 8-bit Atmel Microcontrollers Features Example software project which performs RTC calibration with help of an external precise clock source Software

More information

CMOS 16-BIT SINGLE CHIP MICROCOMPUTER. S5U1C17001H User Manual (ICD Mini Ver. 1.0)

CMOS 16-BIT SINGLE CHIP MICROCOMPUTER. S5U1C17001H User Manual (ICD Mini Ver. 1.0) CMOS 16-BIT SINGLE CHIP MICROCOMPUTER S5U1C17001H User Manual NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson.

More information

Atmel AVR1926: XMEGA-B1 Xplained Getting Started Guide. 8-bit Atmel Microcontrollers. Application Note. Features. 1 Introduction

Atmel AVR1926: XMEGA-B1 Xplained Getting Started Guide. 8-bit Atmel Microcontrollers. Application Note. Features. 1 Introduction Atmel AVR1926: XMEGA-B1 Xplained Getting Started Guide Features Easy to reprogram with just a USB cable and a preprogrammed boot loader Easy to debug code with PDI-based debugger/emulator Can be used with

More information

S7R77024 PCB Design Guide

S7R77024 PCB Design Guide S7R77024 PCB Design Guide Rev.1.0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko Epson. Seiko Epson reserves the right

More information

1. Opening the sample code workspace Loading the selected sample code project Opening Sample Code and Source Files...

1. Opening the sample code workspace Loading the selected sample code project Opening Sample Code and Source Files... Introduction APPLICATION NOTE R01AN1790EG0100 Rev.1.00 Renesas Starter Kits (RSK) is supplied as complete development systems for the selected microcontroller. The kit includes an evaluation board, portable

More information

Atmel AVR1619: XMEGA-B1 Xplained Demonstration. 8-bit Atmel Microcontrollers. Application Note. Features. 1 Introduction

Atmel AVR1619: XMEGA-B1 Xplained Demonstration. 8-bit Atmel Microcontrollers. Application Note. Features. 1 Introduction Atmel AVR1619: XMEGA-B1 Xplained Demonstration Features Atmel ATxmega128B1 Atmel XMEGA -B1 Xplained kit compatible On-board LCD display USB 2.0 Full speed composite device - Mass Storage interface with

More information

YASKAWA AC Drive-J1000 Option RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC

YASKAWA AC Drive-J1000 Option RS-232C Interface. Technical Manual Type SI-232/J, SI-232/JC YASKAWA AC Drive-J1000 Option RS-232C Interface Technical Manual Type SI-232/J, SI-232/JC To properly use the product, read this manual thoroughly and retain for easy reference, inspection, and maintenance.

More information

1. Installation Creating the Project Workspace Opening Sample Code and Source Files Source Code Functionality...

1. Installation Creating the Project Workspace Opening Sample Code and Source Files Source Code Functionality... Introduction APPLICATION NOTE R01AN1789EG0100 Rev.1.00 Renesas Starter Kits (RSK) is supplied as complete development systems for the selected microcontroller. The kit includes an evaluation board, portable

More information

Atmel QT600 Quick Start Guide Touch Solutions

Atmel QT600 Quick Start Guide Touch Solutions Atmel QT600 Quick Start Guide Touch Solutions Introduction Looking to take your design to the next level? You have made the right choice in purchasing the Atmel QT600 Development Kit. It allows you to

More information

Preparations. Creating a New Project

Preparations. Creating a New Project AVR030: Getting Started with C for AVR Features How to Open a New Project Description of Option Settings Linker Command File Examples Writing and Compiling the C Code How to Load the Executable File Into

More information

S5U13517P00C100 Evaluation Board User Manual

S5U13517P00C100 Evaluation Board User Manual S5U57P00C00 Evaluation Board User Manual SEIKO EPSON CORPORATION Rev..0 NOTICE No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Seiko

More information