FR FAMILY FR60 FAMILY ISR DOUBLE EXECUTION 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

Size: px
Start display at page:

Download "FR FAMILY FR60 FAMILY ISR DOUBLE EXECUTION 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note"

Transcription

1 Fujitsu Microelectronics Europe Application Note MCU-AN E-V12 FR FAMILY 32-BIT MICROCONTROLLER FR60 FAMILY ISR DOUBLE EXECUTION APPLICATION NOTE

2 Revision History Revision History Date Issue V1.0 OGl - Initial Version V1.1 OGl Several corrections V1.2 MBo Added LIN-USART and RTC behaviour This document contains 13 pages. MCU-AN E-V Fujitsu Microelectronics Europe GmbH

3 Warranty and Disclaimer Warranty and Disclaimer To the maximum extent permitted by applicable law, Fujitsu Microelectronics Europe GmbH restricts its warranties and its liability for all products delivered free of charge (eg. software include or header files, application examples, target boards, evaluation boards, engineering samples of IC s etc.), its performance and any consequential damages, on the use of the Product in accordance with (i) the terms of the License Agreement and the Sale and Purchase Agreement under which agreements the Product has been delivered, (ii) the technical descriptions and (iii) all accompanying written materials. In addition, to the maximum extent permitted by applicable law, Fujitsu Microelectronics Europe GmbH disclaims all warranties and liabilities for the performance of the Product and any consequential damages in cases of unauthorised decompiling and/or reverse engineering and/or disassembling. Note, all these products are intended and must only be used in an evaluation laboratory environment. 1. Fujitsu Microelectronics Europe GmbH warrants that the Product will perform substantially in accordance with the accompanying written materials for a period of 90 days form the date of receipt by the customer. Concerning the hardware components of the Product, Fujitsu Microelectronics Europe GmbH warrants that the Product will be free from defects in material and workmanship under use and service as specified in the accompanying written materials for a duration of 1 year from the date of receipt by the customer. 2. Should a Product turn out to be defect, Fujitsu Microelectronics Europe GmbH s entire liability and the customer s exclusive remedy shall be, at Fujitsu Microelectronics Europe GmbH s sole discretion, either return of the purchase price and the license fee, or replacement of the Product or parts thereof, if the Product is returned to Fujitsu Microelectronics Europe GmbH in original packing and without further defects resulting from the customer s use or the transport. However, this warranty is excluded if the defect has resulted from an accident not attributable to Fujitsu Microelectronics Europe GmbH, or abuse or misapplication attributable to the customer or any other third party not relating to Fujitsu Microelectronics Europe GmbH. 3. To the maximum extent permitted by applicable law Fujitsu Microelectronics Europe GmbH disclaims all other warranties, whether expressed or implied, in particular, but not limited to, warranties of merchantability and fitness for a particular purpose for which the Product is not designated. 4. To the maximum extent permitted by applicable law, Fujitsu Microelectronics Europe GmbH s and its suppliers liability is restricted to intention and gross negligence. NO LIABILITY FOR CONSEQUENTIAL DAMAGES To the maximum extent permitted by applicable law, in no event shall Fujitsu Microelectronics Europe GmbH and its suppliers be liable for any damages whatsoever (including but without limitation, consequential and/or indirect damages for personal injury, assets of substantial value, loss of profits, interruption of business operation, loss of information, or any other monetary or pecuniary loss) arising from the use of the Product. Should one of the above stipulations be or become invalid and/or unenforceable, the remaining stipulations shall stay in full effect Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

4 Contents Contents REVISION HISTORY... 2 WARRANTY AND DISCLAIMER... 3 CONTENTS INTRODUCTION ORIGIN OF DOUBLE EXECUTED ISR S ANALYSIS OF INTERRUPT SERVICE ROUTINES Unaffected Resource or CAN ISR Affected Resource or CAN ISR Redesigned Resource ISR RB_SYNC macro Redesigned CAN ISR CB_SYNC macro BEHAVIOUR OF THE LIN-USART AND RTC MODULE Explanation of behaviour Unaffected RTC ISR Affected RTC ISR No additional read Single additional read Software adaption of ISR handling Redesigned RTC ISR APPENDIX Figures MCU-AN E-V Fujitsu Microelectronics Europe GmbH

5 Chapter 1 Introduction 1 Introduction This application note gives some information about the behaviour of a possible interrupt service routine double execution. The new FR60 family has the feature to speed up the write access to Resources connected on slower clocked busses e.g. CLKP or CANCLK by using write buffers. This could rise the problematique of double executed interrupt service routines with application and bus ratio specific origin. This does not affect all interrupt service routines! This behaviour can be easily prevented if it is deliberated during the interrupt service routine design process and an affected ISR can be easily redesigned. Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

6 Chapter 2 Origin of double executed ISR s 2 Origin of double executed ISR s The problematique of double executed interrupt service routines can arise if there is no additional read access to the internal Resource- or Can-Bus of the FR MCU, after clearing a resource or CAN interrupt flag. The FR60 family possess an additionally inserted write buffers for access to the generally slower clocked R-Bus, for resources like UART s and TIMER s, and one for all CAN resource. This write buffers give the MCU the possibility not to wait while the R-Unit or CAN syncs between CLKB and the slower Resource or CAN clock for clock ratios below or equal to 1! CLKB FR60 family MCU Core D-Bus CLKP sync R-Unit R-Bus Resources Bus Converter Figure 1: D- + R-Bus clock domains CLKB CLKB This performance feature spawns the possible behaviour, for or ratios CLKP CANCLK lower or equal to 1, that an interrupt flag clear is not completed before the MCU core has finished the exit (RETI) from the interrupt service routine. This pushes the MCU immediately back into the interrupt service routine because the interrupt flag is still active. This condition only comes up if there is no further read access to any Resource or any CAN resource after clearing the interrupt flag within the interrupt service routine. Interrupt Double executed Interrupt CLKB Main() Main() EIT ISR Code RETI EIT ISR Code RETI INT Flag Clear INT Flag Request CLKP INT Flag set sync INT Flag cleared Figure 2: Double executed resource interrupt service routine MCU-AN E-V Fujitsu Microelectronics Europe GmbH

7 Chapter 3 Analysis of interrupt service routines 3 Analysis of interrupt service routines The following chapter describes how to analyze and redesign existing interrupt service routines if the application shows a double execution of any Resource or CAN interrupt service routine. 3.1 Unaffected Resource or CAN ISR Resource or CAN ISR s with an additional read access to the respective memory space after clearing the interrupt flag are not affected in this double executed interrupt service routine problematique. /* clear ext. interrupt flag */ EIRRy = 0; /* interrupt service code */ /* with read access to resource */ /* memory */ a = EIRRy; Figure 3: Unaffected interrupt service routine 3.2 Affected Resource or CAN ISR The affected interrupt service routine as it can be found in common applications is shown in the figure below. /* clear ext. interrupt flags */ EIRRy = 0; /* no add. resource read */ /* access within interrupt */ /* service code */ Figure 4: Affected interrupt service routine NOTE: CLKB For the following ratios it is possible that these interrupt service routine CLKP structure spawns the above described double execution condition. CLKB CLKP CLKB CANCLK <= 1 or <= 1 Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

8 Chapter 3 Analysis of interrupt service routines Redesigned Resource ISR The Resource interrupt service routine shown in the figure below inhibits the double execution by adding the macro call RB_SYNC to the end of the interrupt service routine. This forces an additional read access to the Resource memory space which waits until the interrupt clear instruction on the respective Resource register is completed and the write buffer is empty. /* clear ext. interrupt flag */ EIRRy = 0; /* interrupt service code */ /* Synchronization with R-Bus */ RB_SYNC; Figure 5: Redesigned Resource interrupt service routine RB_SYNC macro The RB_SYNC macro is a simple assembler read access to a dummy register which is located within the Resource memory space. This macro is defined in the respective derivates header file in C code. #define RB_SYNC if(rbsync) The compiler produces two different assembler codes depending on the selected optimization level. Optimization level = NONE: if(rbsync) MOV R13,R0 Optimization level = SPEED if(rbsync) MCU-AN E-V Fujitsu Microelectronics Europe GmbH

9 Chapter 3 Analysis of interrupt service routines Redesigned CAN ISR The interrupt service routine template shown in the figure below is one possibility to inhibit the double execution. This forces an additional read access to the CAN memory space which waits until the interrupt clear instruction on the respective CAN register is completed and the write buffer is empty. This is done by adding a macro call at the end of each CAN ISR. interrupt void CANIRQHandler (void) { /* CAN interrupt service code */ /* Synchronization with CAN-Bus */ CB_SYNC; Figure 6: Redesigned CAN interrupt service routine CB_SYNC macro The C_SYNC macro is a simple assembler read access to a dummy register which is located within the CAN memory space. This macro is defined in the respective derivates header file in C code. #define CBSYNC if(cbsync) The compiler produces two different assembler codes depending on the selected optimization level. Optimization level = NONE: if(cbsync) MOV R13,R0 Optimization level = SPEED if(cbsync) Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

10 Chapter 4 Behaviour of the LIN-USART and RTC module 4 Behaviour of the LIN-USART and RTC module The following chapter describes the unique behaviour of the LIN-USART and RTC (real time clock) module with respect to handling of the double IRQ execution issue. 4.1 Explanation of behaviour Unlike other resources on the microcontroller the LIN-USART and RTC module output the interrupt request signal to CPU delayed by additional clock cycles (CLKP) on clearing the interrupt flags. The following table shows the related interrupt bits: Resource Register Bit LIN- USART RTC Delay [CLKP cycle] Comment SSRx RDRF 1 RDRF is cleared by reading RDRx. SCRx CRE 1 Bit that clears error flag (PE,ORE,FRE) SMRx UPCL or SRST 1 Reset bit of LIN-USART that clears all flags (TDRE,RDRF,LBD,PE,ORE,FRE) WTCER INT second interrupt cause bit WTCR INT3 2 1day interrupt cause bit WTCR INT2 2 1hour interrupt cause bit WTCR INT1 2 1minute interrupt cause bit WTCR INT0 2 1second interrupt cause bit Figure 7: Interrupt bits with additional clock cycles Due to this behaviour it can not be guaranteed that the signalled interrupt request is already inactive when leaving the ISR (i.e. additional clock cycles have elapsed when leaving the ISR). LIN-USART: Double IRQ execution doesn t occur if the description of using single RB_SYNC is followed (the additional 1xCLKP cycle is covered by the method of preventing double IRQ execution caused by the write buffer). RTC: Double IRQ execution may occur even if the description of using single RB_SYNC is followed (the additional 2xCLKP cycles are not covered by the method of preventing double IRQ execution caused by the write buffer). I.e. for the RTC ISR a particular handling is necessary and explained in following sections. MCU-AN E-V Fujitsu Microelectronics Europe GmbH

11 Chapter 4 Behaviour of the LIN-USART and RTC module 4.2 Unaffected RTC ISR RTC ISR with two additional read accesses to the respective memory space after clearing the interrupt flag are not affected in this double executed interrupt service routine issue. /* clear ext. interrupt flag */ WTCR_INT0 = 0; /* interrupt service code */ /* with read access to res. */ /* memory */ a = WTCR_INT0; b = WTBR0; Figure 8: Unaffected RTC interrupt service routine 4.3 Affected RTC ISR There are two cases which involve the RTC ISR into the double IRQ issue No additional read The affected interrupt service routine as it can be found in common applications is shown in the figure below. /* clear ext. interrupt flags */ WTCR_INT0 = 0; /* no add. resource read */ /* access within interrupt */ /* service code */ Figure 9: Affected RTC interrupt service routine (no read) Single additional read The affected interrupt service routine as it can be found in common applications is shown in the figure below. /* clear ext. interrupt flags */ WTCR_INT0 = 0; /* interrupt service code */ /* with single read access to */ /* resource memory */ a = WTCR_INT0; Figure 10: Affected RTC interrupt service routine (single read) Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

12 Chapter 4 Behaviour of the LIN-USART and RTC module 4.4 Software adaption of ISR handling The following software adaption of the RTC ISR will fully resolve the issue of double IRQ execution and should be implemented wherever applicable Redesigned RTC ISR The RTC interrupt service routine shown in the figure below inhibits the double execution by adding the macro call RB_SYNC: ONCE to the end of the interrupt service routine if there is already a single read: /* clear RTC interrupt flag */ WTCR_INT0 = 0; /* interrupt service code */ /* with single read access to */ /* resource memory */ a = WTCR_INT0; /* Synchronization with R-Bus ONCE*/ RB_SYNC; Figure 11: Redesigned RTC interrupt service routine (single sync) TWICE to the end of the interrupt service routine if there is no read: /* clear RTC interrupt flag */ WTCR_INT0 = 0; /* interrupt service code */ /* Synchronization with R-Bus TWICE*/ RB_SYNC; RB_SYNC; Figure 12: Redesigned RTC interrupt service routine (double sync) That forces additional read accesses to the Resource memory space which waits until the interrupt clear instruction on RTC WTCR/WTCER registers is completed, the write buffer is empty and the additional clock cycles have elapsed. MCU-AN E-V Fujitsu Microelectronics Europe GmbH

13 Chapter 5 Appendix 5 Appendix 5.1 Figures Figure 1: D- + R-Bus clock domains... 6 Figure 2: Double executed resource interrupt service routine... 6 Figure 3: Unaffected interrupt service routine... 7 Figure 4: Affected interrupt service routine... 7 Figure 5: Redesigned Resource interrupt service routine... 8 Figure 6: Redesigned CAN interrupt service routine... 9 Figure 7: Interrupt bits with additional clock cycles Figure 8: Unaffected RTC interrupt service routine Figure 9: Affected RTC interrupt service routine (no read) Figure 10: Affected RTC interrupt service routine (single read) Figure 11: Redesigned RTC interrupt service routine (single sync) Figure 12: Redesigned RTC interrupt service routine (double sync) Fujitsu Microelectronics Europe GmbH MCU-AN E-V12

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 REAL TIME CLOCK APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 REAL TIME CLOCK APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300075-E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 REAL TIME CLOCK APPLICATION NOTE Revision History Revision History Date 2008-06-05 First Version;

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V12 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES CLOCK OUTPUT APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V12 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES CLOCK OUTPUT APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300214-E-V12 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES CLOCK OUTPUT APPLICATION NOTE Revision History Revision History Date Issue 2006-06-28

More information

F²MC-16LX FAMILY MB90XXX RELOCATED INTERRUPT VECTOR TABLE 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16LX FAMILY MB90XXX RELOCATED INTERRUPT VECTOR TABLE 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note AN-FMEMCU-900075-10 F²MC-16LX FAMILY 16-BIT MICROCONTROLLER MB90XXX RELOCATED INTERRUPT VECTOR TABLE APPLICATION NOTE Revision History Revision History

More information

F²MC-16FX FAMILY ALL SERIES FLASH SECURITY 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16FX FAMILY ALL SERIES FLASH SECURITY 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300213-E-V13 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES FLASH SECURITY APPLICATION NOTE Internal Revision History Revision History Date 2006-08-31

More information

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

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

More information

MB90F3XX/F4XX/F5XX/F8XX/F9XX

MB90F3XX/F4XX/F5XX/F8XX/F9XX Fujitsu Microelectronics Europe Application Note MCU-AN-390027-E-V28 F²MC-16LX FAMILY 16-BIT MICROCONTROLLER MB90F3XX/F4XX/F5XX/F8XX/F9XX BI-ROM PROTOCOL APPLICATION NOTE Revision History Revision History

More information

F²MC-16FX FAMILY ALL SERIES STANDBY MODES & POWER MANAGEMENT 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16FX FAMILY ALL SERIES STANDBY MODES & POWER MANAGEMENT 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300226-E-V15 F²MC-16FX FAMILY 16-BIT MICROCONTROLLER ALL SERIES STANDBY MODES & POWER MANAGEMENT APPLICATION NOTE Revision History Revision History

More information

F²MC-16LX FAMILY MB90F897 DUAL OPERATION FLASH 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16LX FAMILY MB90F897 DUAL OPERATION FLASH 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-390091-E-V12 F²MC-16LX FAMILY 16-BIT MICROCONTROLLER MB90F897 DUAL OPERATION FLASH APPLICATION NOTE Revision History Revision History Date Issue

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 F²MC-FR FAMILY 32-BIT MICROCONTROLLER MB91460 RELOAD TIMER APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 F²MC-FR FAMILY 32-BIT MICROCONTROLLER MB91460 RELOAD TIMER APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300060-E-V10 F²MC-FR FAMILY 32-BIT MICROCONTROLLER MB91460 RELOAD TIMER APPLICATION NOTE Revision History Revision History Date 2008-03-26 V1.0,

More information

F²MC-8FX FAMILY MB951XX SERIES SYNCHRONOUS FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8FX FAMILY MB951XX SERIES SYNCHRONOUS FLASH PROGRAMMING 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300050-E-V10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB951XX SERIES SYNCHRONOUS FLASH PROGRAMMING APPLICATION NOTE Revision History Revision History

More information

EMULATOR SETUP MB BIT COMPACT-ICE

EMULATOR SETUP MB BIT COMPACT-ICE Fujitsu Microelectronics Europe Application Note MCU-AN-390077-E-V11 F²MC-16L/LX FAMILY 16-BIT MICROCONTROLLER MB903XX/4XX/5XX/6XX EMULATOR SETUP MB2147-05 16BIT COMPACT-ICE APPLICATION NOTE Revision History

More information

GRAPHICS CONTROLLERS SPRITE ENGINE PERFORMANCE MB88F332 'INDIGO' MB88F333 'INDIGO-L' APPLICATION NOTE GRAPHICS COMPETENCE CENTER

GRAPHICS CONTROLLERS SPRITE ENGINE PERFORMANCE MB88F332 'INDIGO' MB88F333 'INDIGO-L' APPLICATION NOTE GRAPHICS COMPETENCE CENTER Fujitsu Semiconductor Europe Application Note an-mb88f332-333-spe-performance-rev0-20 GRAPHICS CONTROLLERS MB88F332 'INDIGO' MB88F333 'INDIGO-L' SPRITE ENGINE PERFORMANCE APPLICATION NOTE GRAPHICS COMPETENCE

More information

16-Bit Emulator Setup for MB2141 and MB

16-Bit Emulator Setup for MB2141 and MB Fujitsu Microelectronics Europe Application Note MCU-AN-390026-E-V22 16-Bit Emulator Setup for MB2141 and MB2145-507 Fujitsu Microelectronics Europe GmbH, Microcontroller Application Group History 09.

More information

TRACE APPLICATION NOTE VERSION MB86R0X 'JADE' SERIES DEVICES & GREENHILLS TOOLCHAIN. Fujitsu Microelectronics Europe Application Note

TRACE APPLICATION NOTE VERSION MB86R0X 'JADE' SERIES DEVICES & GREENHILLS TOOLCHAIN. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note an-mb86r0x-trace-rev0-02.doc TRACE MB86R0X 'JADE' SERIES DEVICES & GREENHILLS TOOLCHAIN APPLICATION NOTE VERSION 0.02 21.05.2010 Revision History Revision

More information

F²MC-8FX FAMILY MB95100 SERIES EMULATOR HW SETUP 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8FX FAMILY MB95100 SERIES EMULATOR HW SETUP 8-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-395002-E-V10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95100 SERIES EMULATOR HW SETUP APPLICATION NOTE Revision History Revision History Date 2004-10-12

More information

The following document contains information on Cypress products.

The following document contains information on Cypress products. The following document contains information on Cypress products. Colophon The products described in this document are designed, developed and manufactured as contemplated for general use, including without

More information

The Bootconcept. of Fujitsu s MB91360 Devices

The Bootconcept. of Fujitsu s MB91360 Devices Application te MCU-AN-391016-E-V11 The Bootconcept of Fujitsu s MB91360 Devices GmbH, Microcontroller Application Group History 13 th Aug. 99 MM V1.0 New Format, new updated version 04 th Jul. 00 MEN V1.1

More information

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document F2MC MB90385 series Evaluation Board Documentation Revision Date Comment V1.0 08.25.02 New document 1 Warranty and Disclaimer To the maximum extent permitted by applicable law, Fujitsu Microelectronics

More information

CPU369-Module Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany

CPU369-Module Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany CPU369-Module Documentation Fujitsu Microelectronics Europe GmbH Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany History Revision Date Comment V1.0 08.03.01 New Document V1.1 17.10.03 Modifications

More information

Errata Sheet MB86296 Coral PA

Errata Sheet MB86296 Coral PA Errata Sheet MB86296 Coral PA Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 5.08.2004 AG 1.0 First release 27/10/2005 AG 1.1 Issue E12 added 1 Warranty and Disclaimer To the

More information

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_SK-86R12-CPU01_Rev1.1 EMERALD-P CPU MODULE SK-86R12-CPU01 USERGUIDE

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_SK-86R12-CPU01_Rev1.1 EMERALD-P CPU MODULE SK-86R12-CPU01 USERGUIDE Fujitsu Semiconductor Europe User Manual FSEUGCC-UM Rev1.1 EMERALD-P CPU MODULE USERGUIDE Revision History Date Issue 30 Nov 2011 V1.0 Herbert Hönig First release 07 Dec 2011 V1.01 Herbert Hoenig Corrected

More information

Emulator Setup Instructions for MB91360

Emulator Setup Instructions for MB91360 Emulator Setup Instructions for MB91360 Page 1 Application Note Emulator Setup Instructions for MB91360 Fujitsu Microelectronics Europe GmbH, Microcontroller Application Group History 13 th Oct. 99 MM

More information

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

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

More information

EMULATOR SYSTEM MB

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

More information

Application Note. EMC Design Guide. F 2 MC-8L Family. History 04 th Jul 02 NFL V1.0 new version

Application Note. EMC Design Guide. F 2 MC-8L Family. History 04 th Jul 02 NFL V1.0 new version Application Note EMC Design Guide F 2 MC-8L Family Fujitsu Mikroelektronik GmbH, Microcontroller Application Group History 04 th Jul 02 NFL V1.0 new version 1 Warranty and Disclaimer To the maximum extent

More information

JASMINE- Subboard Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany

JASMINE- Subboard Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany JASMINE- Subboard Documentation Fujitsu Microelectronics Europe GmbH Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany History Revision Date Comment V1.0 07.03.01 New Document 2 Warranty and Disclaimer

More information

Software Porting Access Library V02 to V03

Software Porting Access Library V02 to V03 Application Note Software Porting Access Library V02 to V03 Revision 1.1 Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 21.02.2008 AvT 1.0 First version 28.02.2008 AvT 1.1 Revision

More information

SPI COMMUNICATION TO/FROM SERIAL EEPROM

SPI COMMUNICATION TO/FROM SERIAL EEPROM Fujitsu Microelectronics Europe Application ote MCU-A-390104-E-V11 F²MC-8L/16LX FAMIL 8/16-BIT MICROCOTROLLER MB90340 SPI COMMUICATIO TO/FROM SERIAL EEPROM (for M93CS46) APPLICATIO OTE SPI COMMUICATIO

More information

APIX AUTOMOTIVE SHELL SW-EMULATION USE CASE

APIX AUTOMOTIVE SHELL SW-EMULATION USE CASE Fujitsu Semiconductor Europe Application Note an-mb88f332-333-ashell-sw-emulation-rev-0.22 GRAPHICS DISPLAY CONTROLLER MB88F332 'INDIGO' MB88F333 'INDIGO-L' APIX AUTOMOTIVE SHELL SW-EMULATION USE CASE

More information

FR FAMILY MB91460 SERIES MB91461 EMULATION 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

FR FAMILY MB91460 SERIES MB91461 EMULATION 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300029-E-V10 FR FAMIY 32-BIT MICROCONTROER MB91460 SERIES MB91461 EMUATION APPICATION NOTE Revision History Revision History Date 2006-04-27 V1.0

More information

FAQ list for MB86290 Cremson

FAQ list for MB86290 Cremson FAQ list for MB86290 Cremson Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 08.10.2003 AG 1.0 First release 1 Warranty and Disclaimer To the maximum extent permitted by applicable

More information

Application Note. Connecting standard LCD modules to. the MB90670/5 series. History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa V1.

Application Note. Connecting standard LCD modules to. the MB90670/5 series. History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa V1. Application Note Connecting standard LCD modules to the MB90670/5 series Fujitsu Microelectronics Europe GmbH, Microcontroller Application Group History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa

More information

GRAPHICS CONTROLLERS DEVICE SETUP AND FUJITSU DEVELOPER SUITE

GRAPHICS CONTROLLERS DEVICE SETUP AND FUJITSU DEVELOPER SUITE Fujitsu Semiconductor Europe Application Note an-mb88f33x-device-setup-rev1.0 GRAPHICS CONTROLLERS MB88F33X 'INDIGO2(-X)' DEVICE SETUP AND FUJITSU DEVELOPER SUITE REV1.0 APPLICATION NOTE GRAPHICS COMPETENCE

More information

MB88F334 Indigo2 MB88F335 Indigo2-S MB88F336 Indigo2-N

MB88F334 Indigo2 MB88F335 Indigo2-S MB88F336 Indigo2-N MB88F334 Indigo2 MB88F335 Indigo2-S MB88F336 Indigo2-N Preliminary Product Information Rev0-11 October 17, 2012 October 17, 2012 pi-mb88f33x-indigo2(-x)-rev0-11 MB88F33x Indigo2(-x) Preface Intention and

More information

FR FAMILY SK MAIN V1.2 EVALUATION BOARD USER GUIDE. Fujitsu Microelectronics Europe User Guide FMEMCU-UG

FR FAMILY SK MAIN V1.2 EVALUATION BOARD USER GUIDE. Fujitsu Microelectronics Europe User Guide FMEMCU-UG Fujitsu Microelectronics Europe User Guide FMEMCU-UG-910010-24 FR FAMILY EVALUATION BOARD SK-91460-MAIN V1.2 USER GUIDE This manual refers to PCB version V1.2 Revision History Revision History Date Issue

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 EDSU/MPU APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 EDSU/MPU APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300081-E-V10 FR FAMILY 32-BIT MICROCONTROLLER MB91460 EDSU/MPU APPLICATION NOTE Revision History Revision History Date 2008-06-26 First Version;

More information

Fujitsu Semiconductor Europe Application Note. an-mb86r12-apixprbs-rev0-20 MB86R12 EMERALD-P REV 0.2 APIX PRBS APPLICATION NOTE

Fujitsu Semiconductor Europe Application Note. an-mb86r12-apixprbs-rev0-20 MB86R12 EMERALD-P REV 0.2 APIX PRBS APPLICATION NOTE Fujitsu Semiconductor Europe Application Note an-mb86r12-apix-rev0-20 MB86R12 EMERALD-P REV 0.2 APIX APPLICATION NOTE APIX Generators and Checkers Revision History Revision History Rev Date Author Description

More information

F²MC-16LX/FRLITE FAMILY COMPARISON OF MB90340 AND MB91270 SERIES MCU

F²MC-16LX/FRLITE FAMILY COMPARISON OF MB90340 AND MB91270 SERIES MCU Fujitsu Microelectronics Europe Application Note MCU-AN-300006-E-12 F²MC-16LX/FRLITE FAMILY 16/32-BIT MICROCONTROLLER MB90340 / MB91270 SERIES COMPARISON OF MB90340 AND MB91270 SERIES MCU APPLICATION NOTE

More information

F²MC-16FX FAMILY MB96340 KEY MATRIX INTERFACE USING I/O PORT 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-16FX FAMILY MB96340 KEY MATRIX INTERFACE USING I/O PORT 16-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application ote MCU-A-300238-E-V12 F²MC-16FX FAMIL 16-BIT MICROCOTROLLER MB96340 KE MATRIX ITERFACE APPLICATIO OTE Revision History Revision History Date Issue 2007-04-16

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V13 FR FAMILY 32-BIT MICROCONTROLLER MB91460 SWB MONITOR DEBUGGER APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V13 FR FAMILY 32-BIT MICROCONTROLLER MB91460 SWB MONITOR DEBUGGER APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300028-E-V13 FR FAMILY 32-BIT MICROCONTROLLER MB91460 SWB MONITOR DEBUGGER APPLICATION NOTE Revision History Revision History Date 2006-03-17 2006-03-28

More information

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_SK-88F336-01_Rev1.0 INDIGO2-N STARTERKIT SK-88F USER MANUAL

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_SK-88F336-01_Rev1.0 INDIGO2-N STARTERKIT SK-88F USER MANUAL Fujitsu Semiconductor Europe User Manual FSEUGCC-UM Rev1.0 INDIGO2-N STARTERKIT USER MANUAL Revision History Date 18.02.2013 Rev0.1 Herbert Hönig First draft Issue 25.03.2103 Rev1.0 Herbert Hönig First

More information

SC2000 Smart Kit Selection Checklist

SC2000 Smart Kit Selection Checklist SC2000 Smart Kit Selection Checklist Rev 0.3 13 August 2018 1 Copyright 2018 Warranty and Disclaimer The use of the deliverables (e.g. software, application examples, target boards, evaluation boards,

More information

Application Note APIX PRBS

Application Note APIX PRBS Application Note APIX Rev 0.3 10 March 2016 Graphic Competence Center GCC 1 Warranty and Disclaimer The use of the deliverables (e.g. software, application examples, target boards, evaluation boards, starter

More information

Fujitsu Microelectronics Europe User Guide FMEMCU-SG MB88121 SERIES MB91460 SERIES EVALUATION BOARD SK-91F467-FLEXRAY SOFTWARE GUIDE

Fujitsu Microelectronics Europe User Guide FMEMCU-SG MB88121 SERIES MB91460 SERIES EVALUATION BOARD SK-91F467-FLEXRAY SOFTWARE GUIDE Fujitsu Microelectronics Europe User Guide FMEMCU-SG-910000-15 MB88121 SERIES MB91460 SERIES EVALUATION BOARD SK-91F467-FLEXRAY SOFTWARE GUIDE Revision History Revision History Date Issue 22/11/2005 MSt,

More information

Tutorial. How to use Keil µvision with Spansion templates Spansion Inc.

Tutorial. How to use Keil µvision with Spansion templates Spansion Inc. Tutorial How to use Keil µvision with Spansion templates 1 2013 Spansion Inc. Warranty and Disclaimer The use of the deliverables (e.g. software, application examples, target boards, evaluation boards,

More information

Errata Sheet MB86298 'Ruby'

Errata Sheet MB86298 'Ruby' Errata Sheet MB86298 'Ruby' Version V1.21 Fujitsu Semiconductor Europe GmbH History Date Author Version Comment 12.11.2008 H.Nishi 1.00 First Version, added E1 13.01.2009 H.Nishi/AvT 1.01 Replaced E1 description,

More information

F²MC-8L/16LX/16FX/FR FAMILY

F²MC-8L/16LX/16FX/FR FAMILY Fujitsu Microelectronics Europe Application Note MCU-AN-300022-E-V14 F²MC-8L/16LX/16FX/FR FAMILY 8/16/32-BIT MICROCONTROLLER ALL SERIES GALEP-5 APPLICATION NOTE Revision History Revision History Date Issue

More information

F²MC-8L/16LX/FR FAMILY ALL SERIES GALEP-4 8/16/32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

F²MC-8L/16LX/FR FAMILY ALL SERIES GALEP-4 8/16/32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note FMEMCU-AN-000004-11 F²MC-8L/16LX/FR FAMILY 8/16/32-BIT MICROCONTROLLER ALL SERIES GALEP-4 APPLICATION NOTE Revision History Revision History Date 2004-04-14

More information

GRAPHICS CONTROLLERS APIX PCB-DESIGN GUIDELINE

GRAPHICS CONTROLLERS APIX PCB-DESIGN GUIDELINE Fujitsu Semiconductor Europe Application Note an-mb88f33x-apix-pcb-design-guideline-rev1-10 GRAPHICS CONTROLLERS MB88F33X INDIGO2(-X) APIX PCB-DESIGN GUIDELINE APPLICATION NOTE Revision History Revision

More information

MB86297A Carmine PCB Design Guide

MB86297A Carmine PCB Design Guide Application Note MB86297A Carmine PCB Design Guide Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 11.08.2005 MM 1.00 First version 16.08.2005 MM 1.10 Power consumption values

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

Fujitsu Microelectronics Europe Application Note MCU-AN E-V12 FR FAMILY 32-BIT MICROCONTROLLER MB91265 SERIES 16-BIT MAC UNIT APPLICATION NOTE

Fujitsu Microelectronics Europe Application Note MCU-AN E-V12 FR FAMILY 32-BIT MICROCONTROLLER MB91265 SERIES 16-BIT MAC UNIT APPLICATION NOTE Fujitsu Microelectronics Europe Application Note MCU-AN-300030-E-V12 FR FAMILY 32-BIT MICROCONTROLLER MB91265 SERIES 16-BIT MAC UNIT APPLICATION NOTE Revision History Revision History Date 2006-08-09 2007-05-08

More information

GRAPHICS CONTROLLERS

GRAPHICS CONTROLLERS Fujitsu Semiconductor Europe Application Note an-mb88f332-333-indigobyteorder-rev0-22 GRAPHICS CONTROLLERS MB88F332 'INDIGO' MB88F333 'INDIGO-L' INDIGO BYTE ORDER APPLICATION NOTE Graphics Competence Center

More information

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts

ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 User s Manual Version 1.3 Revised February 2nd, 2009 Created by the J1708 Experts ssj1708 Protocol Stack License READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE OPENING

More information

LAMP CONTROL AND MONITOR WITH PPG AND ADC

LAMP CONTROL AND MONITOR WITH PPG AND ADC Fujitsu Microelectronics Europe Application ote MCU-A-300237-E-V11 F²MC-16FX FAMIL 16-BIT MICROCOTROLLER MB96340 LAMP COTROL AD MOITOR WITH PPG AD ADC APPLICATIO OTE Revision History Revision History Date

More information

FME FR FLASHPROGRAMMER

FME FR FLASHPROGRAMMER Fujitsu Microelectronics Europe User Guide FMEMCU- UG-000001-12 FR FAMILY SOFTWARE TOOL FME FR FLASHPROGRAMMER USER GUIDE Revision History Revision History Date Issue 2008-07-10 v1.0 Markus Heigl Initial

More information

FR30 example interface to external Flash Memory

FR30 example interface to external Flash Memory 1 Application Note FR30 example interface to external Flash Memory Fujitsu Microelectronics Europe GmbH, Microcontroller Application Group History 13 th Oct. 99 MM V1.0 New Format, new updated version

More information

1.2. MCU64 Board User Guide. Development tools for 16LX Family FUJITSU MICROELECTRONICS EUROPE. Version

1.2. MCU64 Board User Guide. Development tools for 16LX Family FUJITSU MICROELECTRONICS EUROPE. Version Version. FUJITSU MICROELECTRONICS EUROPE Development tools for 6LX Family MCU64 Board User Guide DEVELOPMENT TOOLS FOR 6LX FAMILY MCU64 Board User Guide Table of Content What is in This Guide... What is

More information

Ludlum Lumic Data Logger Software Manual Version 1.1.xx

Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Ludlum Lumic Data Logger Software Manual Version 1.1.xx Contents Introduction... 1 Software License Agreement... 2 Getting Started... 5 Minimum

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

STARTERKIT SK-86R03 'JADE-L' USERS GUIDE

STARTERKIT SK-86R03 'JADE-L' USERS GUIDE STARTERKIT SK-86R03 'JADE-L' USERS GUIDE Revision 1.04 17.06.2010 Revision History Rev. No. 1.00 1.01 1.02 1.03 1.04 Date June 2008 March 2010 April 2010 June 2010 June 2010 Comments/Changes First version

More information

SOFTUNE WORKBENCH MONITOR DEBUGGER FOR 8FX

SOFTUNE WORKBENCH MONITOR DEBUGGER FOR 8FX Fujitsu Microelectronics Europe Application Note MCU-AN-300049-E-V10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB951XX SOFTUNE WORKBENCH MONITOR DEBUGGER FOR 8FX APPLICATION NOTE Revision History Revision

More information

FlukeView. Users Manual. Software for ScopeMeter Test Tools

FlukeView. Users Manual. Software for ScopeMeter Test Tools FlukeView Software for ScopeMeter Test Tools Users Manual January 2016 2016 Fluke Corporation. All rights reserved. All product names are trademarks of their respective companies. License Agreement 2006-2016

More information

FR FAMILY MB91460 SERIES FLASH PROGRAMMING 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note

FR FAMILY MB91460 SERIES FLASH PROGRAMMING 32-BIT MICROCONTROLLER APPLICATION NOTE. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note MCU-AN-300012-E-V13 FR FAMILY 32-BIT MICROCONTROLLER MB91460 SERIES FLASH PROGRAMMING APPLICATION NOTE Revision History Revision History Date Issue 2006-01-30

More information

PCMCIA Flash Card User Guide

PCMCIA Flash Card User Guide R R PCMCIA Flash Card User Guide For the CoreBuilder 3500 System Introduction The CoreBuilder 3500 PCMCIA Flash Card is a 20 MB flash card that you can use to save your system software. When you have saved

More information

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_MB86R11_Rev1.4 EMERALD-L EVALUATION BASE BOARD SK-86R11-BASE USERGUIDE

Fujitsu Semiconductor Europe User Manual. FSEUGCC-UM_MB86R11_Rev1.4 EMERALD-L EVALUATION BASE BOARD SK-86R11-BASE USERGUIDE Fujitsu Semiconductor Europe User Manual FSEUGCC-UM_MB86R11_Rev1.4 EMERALD-L EVALUATION BASE BOARD USERGUIDE Revision History Date 12 Oct 2010 V1.0 Herbert Hönig First draft Issue 04 Nov 2010 V1.1 Herbert

More information

Shimadzu LabSolutions Connector Plugin

Shimadzu LabSolutions Connector Plugin Diablo EZReporter 4.0 Shimadzu LabSolutions Connector Plugin Copyright 2016, Diablo Analytical, Inc. Diablo Analytical EZReporter Software EZReporter 4.0 Shimadzu LabSolutions Connector Plugin Copyright

More information

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011 Version: 02.00.2 build 018 Release Date: 23 rd November 2011 Release Date Version 02.00.2 Build 018 23 rd November 2011 Release Information Release Type: General Availability Supported Cyberoam Versions:

More information

SonicWALL CDP 2.1 Agent Tool User's Guide

SonicWALL CDP 2.1 Agent Tool User's Guide COMPREHENSIVE INTERNET SECURITY b SonicWALL CDP Series Appliances SonicWALL CDP 2.1 Agent Tool User's Guide SonicWALL CDP Agent Tool User s Guide Version 2.0 SonicWALL, Inc. 1143 Borregas Avenue Sunnyvale,

More information

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

CX Recorder. User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 CX Recorder User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-418-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING CXRECORDER

More information

PATGuard Time Manager 2

PATGuard Time Manager 2 PATGuard Time Manager 2 User Manual - i - Contents Disclaimer...iv License Agreement...v Introduction...6 Installing PATGuard Time Manager...6 Starting the Program...6 Program Overview...7 Open File...8

More information

User Manual. Atlona HDMI CAT5 Receiver to be used with AT-HD19SS or AT-HD50SS [Long Range] AT-HDRS

User Manual. Atlona HDMI CAT5 Receiver to be used with AT-HD19SS or AT-HD50SS [Long Range] AT-HDRS User Manual Atlona HDMI CAT5 Receiver to be used with AT-HD19SS or AT-HD50SS [Long Range] AT-HDRS www.atlona.com TABLE OF CONTENTS 1. FEATURES... 2 2. TECHNICAL SPECIFICATIONS... 2 3. INPUTS/OUTPUTS...

More information

Font Software - Commercial Desktop License

Font Software - Commercial Desktop License Font Software - Commercial Desktop License YOU MAY: Use the fonts within the creation of or as part of a company logo. Use the fonts within the creation of design works, rasterized images for web sites

More information

ABB Network Partner. User s Manual CAP/REx 500*2.0

ABB Network Partner. User s Manual CAP/REx 500*2.0 User s Manual CAP/REx 500*2.0 This manual belongs to: Contents Chapter Page About this manual 1 Introduction 3 Instructions 7 References 15 Customer feedback report 17 Software Registration Form 19 Index

More information

Instruction Sheet. PCS Series. Fiber\Cable Management Spool

Instruction Sheet. PCS Series. Fiber\Cable Management Spool Instruction Sheet PCS Series Fiber\Cable Management Spool THANK YOU! Thank you for purchasing the PCS Series Fiber\Cabling Management Spool. Please read these instructions thoroughly before installing

More information

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0

SensView User Guide. Version 1.0 February 8, Copyright 2010 SENSR LLC. All Rights Reserved. R V1.0 SensView User Guide Version 1.0 February 8, 2010 Copyright 2010 SENSR LLC. All Rights Reserved. R001-419-V1.0 TABLE OF CONTENTS 1 PREAMBLE 3 1.1 Software License Agreement 3 2 INSTALLING SENSVIEW 5 2.1

More information

1. License Grant; Related Provisions.

1. License Grant; Related Provisions. IMPORTANT: READ THIS AGREEMENT CAREFULLY. THIS IS A LEGAL AGREEMENT BETWEEN AVG TECHNOLOGIES CY, Ltd. ( AVG TECHNOLOGIES ) AND YOU (ACTING AS AN INDIVIDUAL OR, IF APPLICABLE, ON BEHALF OF THE INDIVIDUAL

More information

Trimble S6 and SPS700 Total Station Firmware

Trimble S6 and SPS700 Total Station Firmware Trimble S6 and SPS700 Total Station Firmware Release Notes Introduction Upgrading from a previous version Using Trimble S6/SPS700 firmware with other Trimble products New features/enha ncements Changes

More information

Quick Start Guide for SMS and Phonebook Manager For GSM Data-Capable Phones and Windows CE

Quick Start Guide for SMS and Phonebook Manager For GSM Data-Capable Phones and Windows CE Quick Start Guide for SMS and Phonebook Manager For GSM Data-Capable Phones and Windows CE With the Socket SMS and Phonebook Manager, you can easily manage your phonebook and SMS messages from your Windows

More information

Fujitsu Microelectronics Europe User Guide FMEMCU-UG MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE

Fujitsu Microelectronics Europe User Guide FMEMCU-UG MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE Fujitsu Microelectronics Europe User Guide FMEMCU-UG-910017-11 MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE Revision History Revision History Date 22/11/2005 01/06/2006 V1.0,

More information

P O W E R S U P P L Y M A N U A L

P O W E R S U P P L Y M A N U A L POWER SUPPLY MANUAL Congratulations on the purchase of your new Corsair power supply. This User Agreement (the Agreement ) is a legal agreement between you ( You ), and Corsair Memory, Inc. ( Corsair ).

More information

Webfont License End User License Agreement (EULA)

Webfont License End User License Agreement (EULA) Hurme Design Webfont End User License Agreement 2018 Page 1 5 Webfont License End User License Agreement (EULA) Hurme Design 2018 This License Agreement ( Agreement or License ) is a legal contract between

More information

Integrity. Test the stability of virtually all rewritable storage devices and interfaces. Part of the Intech s SpeedTools Software for MacOS X

Integrity. Test the stability of virtually all rewritable storage devices and interfaces. Part of the Intech s SpeedTools Software for MacOS X Integrity Test the stability of virtually all rewritable storage devices and interfaces Part of the Intech s SpeedTools Software for MacOS X User s Guide 2003 Intech Software Corporation Document Revision:

More information

FAQ list for Coral. Fujitsu Microelectronics Europe GmbH

FAQ list for Coral. Fujitsu Microelectronics Europe GmbH FAQ list for Coral Fujitsu Microelectronics Europe GmbH History Date Author Version Comment 08.10.2003 AG 1.0 First release 16.08.2004 AG 1.1 Q23 for Coral PA added 08.06.06 AG 1.2 Q24 added 1 Warranty

More information

GRAPHICS CONTROLLERS

GRAPHICS CONTROLLERS Fujitsu Semiconductor Europe Application Note an-mb86r1x-optimize-graphics-apps-rev0-10 GRAPHICS CONTROLLERS MB86R1X 'EMERALD-X' OPTIMIZING GRAPHICS APPLICATIONS APPLICATION NOTE Revision History Revision

More information

64GB USB Flash Drive

64GB USB Flash Drive *3rd Party App Required 64GB USB Flash Drive MODEL NUMBER: 78181 USER GUIDE Contents 1. Welcome Section 2. Contents & Features 3. 4. 5. 6. 5-10. 11-13. Connectors Mounting The Flash Drive Accessing Accessing

More information

AVR134: Real Time Clock (RTC) Using the Asynchronous Timer. Features. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE

AVR134: Real Time Clock (RTC) Using the Asynchronous Timer. Features. Introduction. AVR 8-bit Microcontrollers APPLICATION NOTE AVR 8-bit Microcontrollers AVR134: Real Time Clock (RTC) Using the Asynchronous Timer APPLICATION NOTE Features Real Time Clock with Very Low Power Consumption (10µA @ 3.3V) Very Low Cost Solution Adjustable

More information

AtlonA. 1x12 HDMI Distribution Amplifier v1.3 AT-HD-V112. User Manual

AtlonA. 1x12 HDMI Distribution Amplifier v1.3 AT-HD-V112. User Manual AtlonA 1x12 HDMI Distribution Amplifier v1.3 AT-HD-V112 User Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 1 3. Operation Controls and Functions... 2 3.1 Front Panel... 2 3.2 Rear Panel...

More information

STAINLESS STEEL CAST FITTINGS 150lb 304 & 316 Stainless Steel Cast Fittings Specifications

STAINLESS STEEL CAST FITTINGS 150lb 304 & 316 Stainless Steel Cast Fittings Specifications STAINLESS STEEL CAST FITTINGS 150lb 304 & 316 Stainless Steel Cast Fittings Specifications Manufactured in ISO9000:2000 Facility Items Conform to AISI 304 / 316 Investment Cast SP114 Stainless Fittings

More information

UltraAV DisplayPort to HDMI Display MST Hub

UltraAV DisplayPort to HDMI Display MST Hub UltraAV DisplayPort to HDMI Display MST Hub Connect up to 3 HDMI Displays to a Single DisplayPort Output UltraAV DisplayPort 1.2 to 3 HDMI Multi-Display MST Hub - Set-Up Instructions These instructions

More information

GPA Migration Guide

GPA Migration Guide Diablo BTU Calculator 2.0 GPA 2145-09 Migration Guide Copyright 2008, Diablo Analytical, Inc. Diablo Analytical BTU Calculator 2.0 Software GPA 2145-09 Migration Guide Copyright 2008, Diablo Analytical,

More information

Fujitsu Microelectronics Europe User Guide FMEMCU-UG MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE

Fujitsu Microelectronics Europe User Guide FMEMCU-UG MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE Fujitsu Microelectronics Europe User Guide FMEMCU-UG-910017-17 MB88121 SERIES MB91460 SERIES STARTER KIT SK-91F467-FLEXRAY USER GUIDE Revision History Revision History Date Issue 22/11/2005 V1.0, MSt,

More information

over HDBaseT w/poe, IR & RS-232C

over HDBaseT w/poe, IR & RS-232C 150 meter HDMI Extender over HDBaseT w/poe, IR & RS-232C Version 1.1 All rights reserved by KanexPro and changes may be added without any notification to the customer. Please look out for the latest update

More information

Atlona 1 by 4 HDMI Distribution Amplifier

Atlona 1 by 4 HDMI Distribution Amplifier Atlona 1 by 4 HDMI Distribution Amplifier AT-HD-V14 User Manual TABLE OF CONTENTS 1. Introduction... 1 2. Features... 1 3. Package Contents... 2 4. Specifiations... 2 5. Panel Descriptions... 3 6. Hardware

More information

Made in U.S.A. 1

Made in U.S.A.   1 Made in U.S.A. www.smartavi.com 1 1-800-AVI-2131 TABLE OF CONTENTS INTRODUCTION & FEATURES 2 Getting Started and Installation 3 Start-Up 4 Managing Streams and Environment 5 Frequently Asked Questions

More information

KEPServerEx Client Connectivity Guide

KEPServerEx Client Connectivity Guide KEPServerEx Client Connectivity Guide For ObjectAutomation OAenterprise KTSM-00030 v. 1.03 Copyright 2005 Kepware Technologies KEPWARE END USER LICENSE AGREEMENT AND LIMITED WARRANTY The software accompanying

More information

OLED display with pixels resolution Ambient light sensor CPU load Analog filter Quadrature Encoder with push button Digital I/O

OLED display with pixels resolution Ambient light sensor CPU load Analog filter Quadrature Encoder with push button Digital I/O APPLICATION NOTE Atmel AT02657: XMEGA-E5 Xplained Software User Guide Features OLED display with 128 32 pixels resolution Ambient light sensor CPU load Analog filter Quadrature Encoder with push button

More information

AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly

AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly AVR 8-bit Microcontrollers AVR42789: Writing to Flash on the New tinyavr Platform Using Assembly APPLICATION NOTE Table of Contents 1. What has Changed...3 1.1. What This Means and How to Adapt...4 2.

More information

User Guide. Portable Calibration Module

User Guide. Portable Calibration Module Portable Calibration Module User Guide CyberMetrics Corporation 1523 W. Whispering Wind Drive Suite 100 Phoenix, Arizona 85085 USA Toll-free: 1-800-777-7020 (USA) Phone: (480) 922-7300 Fax: (480) 922-7400

More information

AccuSense Charge Development Suite User s Instruction Manual

AccuSense Charge Development Suite User s Instruction Manual 414 Century Court, Piney Flats, TN 37686 Phone: (423)-538-9002 Fax: (423)-538-9202 Web Site: http://www.dpipower.com/ AccuSense Charge Development Suite User s Instruction Manual Welcome to the exciting

More information