WinCE6.0 I2C SMDKV210. Revision 1.00 October Samsung Electronics Co., Ltd. All rights reserved.

Size: px
Start display at page:

Download "WinCE6.0 I2C SMDKV210. Revision 1.00 October Samsung Electronics Co., Ltd. All rights reserved."

Transcription

1 WinCE6.0 I2C SMDKV210 Revision 1.00 October Samsung Electronics Co., Ltd. All rights reserved.

2 Important Notice The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication. Samsung assumes no responsibility, however, for possible errors or omissions, or for any consequences resulting from the use of the information contained herein. Samsung reserves the right to make changes in its products or product specifications with the intent to improve function or design at any time and without notice and is not required to update this documentation to reflect such changes. This publication does not convey to a purchaser of semiconductor devices described herein any license under the patent rights of Samsung or others. Samsung makes no warranty, representation, or guarantee regarding the suitability of its products for any particular purpose, nor does Samsung assume any liability arising out of the application or use of any product or circuit and specifically disclaims any and all liability, including without limitation any consequential or incidental damages. "Typical" parameters can and do vary in different applications. All operating parameters, including "Typicals" must be validated for each customer application by the customer's technical experts. Samsung products are not designed, intended, or authorized for use as components in systems intended for surgical implant into the body, for other applications intended to support or sustain life, or for any other application in which the failure of the Samsung product could create a situation where personal injury or death may occur. Should the Buyer purchase or use a Samsung product for any such unintended or unauthorized application, the Buyer shall indemnify and hold Samsung and its officers, employees, subsidiaries, affiliates, and distributors harmless against all claims, costs, damages, expenses, and reasonable attorney fees arising out of, either directly or indirectly, any claim of personal injury or death that may be associated with such unintended or unauthorized use, even if such claim alleges that Samsung was negligent regarding the design or manufacture of said product. Copyright 2010 Samsung Electronics Co., Ltd. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electric or mechanical, by photocopying, recording, or otherwise, without the prior written consent of Samsung Electronics. Samsung Electronics Co., Ltd. San #24 Nongseo-Dong, Giheung-Gu Yongin-City, Gyeonggi-Do, Korea Contact Us: junghwan.shin@samsung.com TEL: (82)-(31) FAX: (82)-(31) Home Page: Printed in the Republic of Korea

3 Revision History Revision No. Date Author(s) 1.00 Jun Modified for WinCE Chow Kim 0.10 Dec Initial draft SSPTS Team

4 Table of Contents 1 INTRODUCTION Purpose Scope Intended Audience References I2C DRIVER Introduction Driver Structure State Diagram Processing Flow Software Interface Sample Code Debug Information I2C EMULATION LIBRARY Introduction Software Interface Sample Code Simple Function Combination Function Debug Information... 16

5 List of Figures Figure Title Page Number Number Figure 2-1 I2C Stream Driver Structure... 9 Figure 2-2 State Diagram of the Driver Figure 2-3 Processing Flow of the Driver... 11

6 List of Tables Table Title Page Number Number Table 2-1 Software Interface of the I2C Driver Table 3-1 Software Interface of the I2C Emulation Library... 14

7 1 INTRODUCTION 1 INTRODUCTION 1.1 Purpose The purpose of the document is to describe the I2C Driver and I2C emulator library for easy portability into different platforms by developers. I2C driver can be used for devices that connected to dedicated I2C GPIOs. I2C emulator library can be used for devices that connected to General GPIOs instead of dedicated I2C GPIOs.I2C driver is based on stream driver, that is to say you can use CreateFile(), ReadFile(), and WriteFile(), etc. 1.2 Scope The scope of this document is to describe I2C driver and I2C emulator library Software architecture of I2C driver Software interface Sample code and debug information 1.3 Intended Audience Intended Audience Project Manager Project Leader Project Team Member Test Engineer Tick whenever Applicable Yes Yes Yes Yes 1.4 References Number Reference 1 SMDKV210_WinCE6.0_FMD_PortingGuide.doc OS porting guide 2 S5PC110_UserManual.pdf Device user manual 7

8 2 I2C DRIVER 2 I2C DRIVER 2.1 Introduction I2C driver is following I2C-BUS SPEC V2.1 It is designed for multi-thread environment Logical and physical layer are separated, both can be operated independently. The driver interface is compatible to I2C_EMUL stream driver. Users don t need to consider if the hardware interface is I2C or I2C Emulator. It provides debug information, and supports error recovery. I2C driver sends stop control when error occurs. It supports almost every slaves and customer functions for special slaves. User can open I2C driver with wanted speed. So that each slave can have its own speed. It is tested with PMIC, AUDIO CODEC, CAMERA MODULE and HDMI. You can check sample code. 2.2 Driver Structure Below picture shows the driver structure. There is no limitation about number of Group. A registry entry of I2C in platform.reg file creates public object If a client driver opens i2c, It makes private object. And the handle includes public object. The public has phead and ptail, phead points the first element of private and the ptail points the final element of private All privates have pnext and pprev, pnext points next element and pprev points previous element 8

9 2 I2C DRIVER Figure 2-1 I2C Stream Driver Structure 2.3 State Diagram It is based on state machine The first step is that master receives one byte through state transition The second step is that master sends one byte through state transition The blue box appears Thread State and the gray circle appears Object state. 9

10 2 I2C DRIVER Figure 2-2 State Diagram of the Driver 2.4 Processing Flow Bellow picture shows flow of processing. Client driver requests to I2CWrapper I2Cwrapper files up item into the state machine. I2Cwrapper passes I2CObject to the I2CHWCtxt. I2CHWCtxt set event and I2C thread receive this event. I2C thread is getting item from the state machine. I2C thread is processing When I2C thread finish its operation, it sets DONE event I2CHWCtxt returns value. I2CWrapper returns result. 10

11 2 I2C DRIVER Figure 2-3 Processing Flow of the Driver 11

12 2 I2C DRIVER 2.5 Software Interface IOCTL function is provided for accessing I2C functionalities. You can use DeviceIOControl() function to access I2C functionalities with proper IO Control Code. Here are the IO Control Code descriptions. Table 2-1 Software Interface of the I2C Driver IO Control Code Initialize I2C, have to set slave address and speed typedef struct _I2C_INIT_DESC { IOCTL_I2C_INIT WORD IN_wSlaveAddr; DWORD IN_dwClockSpeed; DWORD OUT_dwActualSpeed; } I2C_INIT_DESC, *PI2C_INIT_DESC; - wslaveaddr: 8bit Slave address - dwclockspeed: Input I2C clock spead(unit : Khz) - dwactualspeed: Output I2C clock spead(unit : Khz), the driver return actual setting value by this parameter IO Control Code I2C general read/write typedef struct _I2C_RW_DESC IOCTL_I2C_GENERAL_READ/ IOCTL_I2C_GENERAL_WRITE { PBYTE IO_pbtData; DWORD IN_dwData; BOOL IN_bStop; } I2C_READ_DESC, I2C_WRITE_DESC, *PI2C_READ_DESC, *PI2C_WRITE_DESC; - pbtdata: address of data buffer - dwdata: data count - bstop: Stop condition after operation is completed, if user wants make combination function then set this as FALSE 12

13 2 I2C DRIVER IO Control Code This IOCTL is used for slave which it operate slowly by itself typedef struct _I2C_SS_RW_DESC { IOCTL_I2C_SLOW_SLAVE_READ/ IOCTL_I2C_SLOW_SLAVE_WRITE PBYTE IO_pbtData; DWORD IN_dwData; DWORD IN_dwTime; BOOL IN_bStop; } I2C_SS_READ_DESC, I2C_SS_WRITE_DESC, *PI2C_SS_READ_DESC, *PI2C_SS_WRITE_DESC; - pbtdata: address of data buffer - dwdata: data count - dwtime: delay time after every ACK bit(unit : SCL clock) - bstop: Stop condition after operation is completed, if user wants make combination function then set this as FALSE IO Control Code IOCTL_I2C_CUSTOMX_READ/ IOCTL_I2C_CUSTOMX_WRITE Special function for customer use 2.6 Sample Code You can see the sample code in I2C_Sample.cpp 2.7 Debug Information [IIC_IST:E] SLAVE DETECTION IS FAILED It means that the slave is not connected to the master or slave address is invalid. 13

14 3 I2C EMULATION LIBRARY 3 I2C EMULATION LIBRARY 3.1 Introduction This emulation library is following I2C-BUS SPEC V2.1 This emulation library is tested with PMIC, AUDIO CODEC, CAMERA MODULE, ECHO CANCELLER, and IMAGE ENHANCEMENT. 3.2 Software Interface Table 3-1 Software Interface of the I2C Emulation Library Function I2C_EMUL_Init BYTE I2C_EMUL_Init(BYTE bgroup, PVOID pgpiobaseaddr, PVOID pbspargs, BYTE btslaveaddress, DWORD dwspeed) It initialize I2C emulator Parameter bgroup: Group Number(Group is a GPIO list that can be connected slaves) pgpiobaseaddr: accessible GPIO base address pbspargs: accessible BSP Argument address btslaveaddress: 7 bit slave address dwspeed: I2C bus spead(unit : Khz), this scale is not precise(+/- 20%) Return value zero mean success, otherwise fail Function I2C_EMUL_Write BYTE I2C_EMUL_Write(BYTE btgroup, BYTE bregaddr, BYTE bregdata ) Parameter btgroup: bus number which the slave is attached (refer to oal_i2cemul.h) bregaddr: register offset to write bregdata: data to write(just one byte) Return value zero mean success, otherwise fail 14

15 3 I2C EMULATION LIBRARY Function I2C_EMUL_Read BYTE I2C_EMUL_Read(BYTE btgroup, BYTE bregaddr, BYTE bregdata ) Parameter btgroup: bus number which the slave is attached (refer to oal_i2cemul.h) bregaddr: register offset to write bregdata: data to write(just one byte) Return value zero mean success, otherwise fail Function I2C_EMUL_MWrite BYTE I2C_EMUL_MWrite(BYTE btgroup, PBYTE pbtregdata, BYTE btwcount, BOOL bstop) It is combination function for writing. Parameter btgroup: bus number which the slave is attached (refer to oal_i2cemul.h) pbtregdata: (register offset, register data) array pointer or (register offset, register data list) pointer. It depend on a slave. btwcount: the size of pbtregdata bstop: if this flag is true, STOP condition will be sent in the end Return value zero mean success, otherwise fail Function I2C_EMUL_MRead BYTE I2C_EMUL_MRead(BYTE btgroup, PBYTE pbtregdata, BYTE btwcount, BOOL bstop) It is combination function for reading Parameter btgroup: bus number which the slave is attached (refer to oal_i2cemul.h) pbtregdata: (register offset, register data) array pointer or (register offset, register data list) pointer. It depend on a slave. btwcount: the size of pbtregdata bstop: if this flag is true, STOP condition will be sent in the end Return value zero mean success, otherwise fail 15

16 3 I2C EMULATION LIBRARY 3.3 Sample Code Simple Function Following test example shows how to use simple function(pmic configuration) I2C_EMUL_Init(PMIC_GROUP,(PVOID) g_pgpioreg_wav, NULL, 0x66, 200); I2C_EMUL_Read(PMIC_GROUP, 0,&btOnOff); btonoff = (1<<2); I2C_EMUL_Write(PMIC_GROUP, 0, btonoff); I2C_EMUL_Read(PMIC_GROUP, 0,&btOnOff); It is recommended that user should use simple function if a slave is following I2C SPEC Combination Function Following test example shows how to use combination function(example, Camera multi read) Read function of the camera module uses below format START+SLAVE_ADDR+REIGSER_OFFSET+REGISTER_DATA+ + (NOT STOP) + START + SLAVE_ADDR+REGISTER_DATA+ACK+ REGISTER_DATA+NAK+STOP I2C_EMUL_Init(CODEC_GROUP,(PVOID) g_pgpioreg_wav, NULL, slaveaddr, 200); brtn = I2C_EMUL_MWrite(CODEC_GROUP,(write_cmd_Buf, write_cnt, FALSE); if(!brtn) { brtn = I2C_EMUL_MRead(CODEC_GROUP,(Read_Buf, read_cnt, TRUE); } Combination function can cover all slaves. 3.4 Debug Information [I2CEMUL] VERSION INFO: XX This message is printed whenever you call I2CEMUL_Init function XX: Version number [I2CEMUL:ERROR] SLAVE IS HOLDING/[I2CEMUL:ERROR] BUS IS BUSY This message means that a slave is holding I2C bus or BUS is busy [I2CEMUL] SLAVE IS READY/[I2CEMUL] BUS IS READY This message means that slave release I2C BUS after slave holding I2C bus for a while, I2C BUS is not busy after a while 16

NOVPEK NetLeap User Guide

NOVPEK NetLeap User Guide NOVPEK NetLeap User Guide Document Number: 001-124-04 Rev. 1.0 1/2017 Property of NovTech, Inc. 2016. All Rights Reserved Contact Information: Home Page: Company: www.novtech.com Modules: www.novsom.com/#/products1/

More information

CodeWarrior Kernel-Aware Debug API

CodeWarrior Kernel-Aware Debug API CodeWarrior Kernel-Aware Debug API Revised: 17 October 2006 Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. CodeWarrior is a trademark or registered trademark of Freescale

More information

Software Defined Radio API Release Notes

Software Defined Radio API Release Notes Software Defined Radio API Release Notes SDRplay Limited. Software Defined Radio API Release Notes Applications Revision History Revision Release Date: Reason for Change: Originator 1.0 03/Jun/2013 First

More information

CodeWarrior Development Studio

CodeWarrior Development Studio CodeWarrior Development Studio for StarCore and SDMA Architectures Quick Start for Windows Operating Systems and Embedded Cross Trigger This Quick Start explains how to set up a sample project to use the

More information

2005: 0.5 PQ-MDS-PCIEXP

2005: 0.5 PQ-MDS-PCIEXP HW Getting Started Guide PQ-MDS-PCIEXP Adaptor December 2005: Rev 0.5 PQ-MDS-PCIEXP Adaptor HW Getting Started Guide Step 1:Check HW kit contents 1.PQ-MDS-PCIEXP Adaptor 2.PIB (Platform I/O Board) to PCIEXP

More information

Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A

Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A nc. Microprocessor and Memory Technologies Group Errata Number: E2 Device Errata MPC860ADS Application Development System Board Versions ENG, PILOT, REV A February 5, 1997 1. Failures bursting to EDO DRAM.

More information

for ColdFire Architectures V7.2 Quick Start

for ColdFire Architectures V7.2 Quick Start for ColdFire Architectures V7.2 Quick Start CodeWarrior Development Studio for ColdFire Architectures V7.2 Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space 1 GHz Pentium compatible

More information

etpu General Function Set (Set 1) David Paterson MCD Applications Engineer

etpu General Function Set (Set 1) David Paterson MCD Applications Engineer Freescale Semiconductor Application Note Document Number: AN2863 Rev. 0, 12/2007 etpu General Function Set (Set 1) by David Paterson MCD Applications Engineer 1 Introduction This application note complements

More information

IIC Driver for the MC9S08GW64

IIC Driver for the MC9S08GW64 Freescale Semiconductor Application Note Document Number: AN4158 Rev. 0, 8/2010 IIC Driver for the MC9S08GW64 by: Tanya Malik Reference Design and Applications Group Noida India 1 Introduction This document

More information

AND8335/D. Design Examples of Module-to-Module Dual Supply Voltage Logic Translators. SIM Cards SDIO Cards Display Modules HDMI 1-Wire Sensor Bus

AND8335/D. Design Examples of Module-to-Module Dual Supply Voltage Logic Translators. SIM Cards SDIO Cards Display Modules HDMI 1-Wire Sensor Bus Design Examples of Module-to-Module Dual Supply Voltage Logic Translators Prepared by: Jim Lepkowski ON Semiconductor Introduction Dual supply voltage logic translators connect modules or PCBs together

More information

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space Windows OS: PC with 1 GHz Intel Pentium compatible

More information

Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5

Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5 Freescale Semiconductor Application Note Document Number: AN3417 Rev. 0.1, 01/2010 Design Recommendations to Implement Compatibility Between the MC13783VK and the MC13783VK5 by: Power Management and Audio

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Using the Bluetooth Audio Signal Processor (BTASP) for High-Quality Audio Performance Application Note AN2210/D Rev. 0, 12/2001 nc. Motorola reserves the right to make changes without further notice

More information

Upgrade the Solution With No Changes 2 Upgrade the Solution With No Changes If a Codebase does not contain updates to its properties, it is possible t

Upgrade the Solution With No Changes 2 Upgrade the Solution With No Changes If a Codebase does not contain updates to its properties, it is possible t Freescale Semiconductor Application Note Document Number: AN3819 Rev. 0.0, 02/2009 Methods for Upgrading Freescale BeeStack Codebases 1 Introduction This note describes how to upgrade an existing Freescale

More information

MTIM Driver for the MC9S08GW64

MTIM Driver for the MC9S08GW64 Freescale Semiconductor Application Note Document Number: AN4160 Rev. 0, 8/2010 MTIM Driver for the MC9S08GW64 by: Tanya Malik Reference Design and Applications Group India IDC MSG NOIDA 1 Introduction

More information

SDR API Linux Installation

SDR API Linux Installation Mirics Limited. Applications Revision History Revision Release Date: Reason for Change: Originator 1.0 15 th May 2014 Pre-Release 0.0.1 APC 1.1 3 rd August 2014 Update for 1.1 build APC 1.2 28 th May 2015

More information

WinCE6.0 MFC SMDKV210. Revision 1.90 October Samsung Electronics Co., Ltd. All rights reserved.

WinCE6.0 MFC SMDKV210. Revision 1.90 October Samsung Electronics Co., Ltd. All rights reserved. WinCE6.0 MFC SMDKV210 Revision 1.90 October 2010 2010 Samsung Electronics Co., Ltd. All rights reserved. Important Notice The information in this publication has been carefully checked and is believed

More information

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start CodeWarrior Development Studio for MPC55xx/MPC56xx Microcontrollers, version 2.xx Quick Start SYSTEM REQUIREMENTS Hardware Operating System

More information

MC56F825x/MC56F824x (2M53V) Chip Errata

MC56F825x/MC56F824x (2M53V) Chip Errata Freescale Semiconductor MC56F825XE_2M53V Chip Errata Rev. 1, 05/2012 MC56F825x/MC56F824x (2M53V) Chip Errata The following errata items apply to devices of the maskset 2M53V. 2012 Freescale Semiconductor,

More information

PCB Layout Guidelines for the MC1321x

PCB Layout Guidelines for the MC1321x Freescale Semiconductor Application Note Document Number: AN3149 Rev. 0.0, 03/2006 PCB Layout Guidelines for the MC1321x 1 Introduction This application note describes Printed Circuit Board (PCB) footprint

More information

MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations

MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations Freescale Semiconductor Engineering Bulletin Document Number: EB711 Rev. 0, 05/2009 MPC5200(b) ATA MDMA, UDMA Functionality BestComm Setup Recommendations by: Peter Kardos Application Engineer, Roznov

More information

Differences Between the DSP56301, DSP56311, and DSP56321

Differences Between the DSP56301, DSP56311, and DSP56321 Freescale Semiconductor Engineering Bulletin Document Number: EB724 Rev. 0, 11/2009 Differences Between the DSP56301, DSP56311, and DSP56321 This engineering bulletin discusses the differences between

More information

Controller Continuum. for Microcontrollers V6.3. Quick Start

Controller Continuum. for Microcontrollers V6.3. Quick Start Controller Continuum for Microcontrollers V6.3 Quick Start CodeWarrior Development Studio for Microcontrollers V6.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel

More information

AND9192/D. Estimating Dark Current from Operating Temperature APPLICATION NOTE

AND9192/D. Estimating Dark Current from Operating Temperature APPLICATION NOTE Estimating Dark Current from Operating Temperature APPLICATION NOTE Description Dark current generated in CCD imagers, is highly temperature dependent. It includes two components: one is generated from

More information

Programming and Evaluation Tool for Serial EEPROMs

Programming and Evaluation Tool for Serial EEPROMs EasyPro 3.2 Evaluation Board User's Manual EVAL BOARD USER S MANUAL Programming and Evaluation Tool for Serial EEPROMs What is EasyPRO? EasyPRO is an easy-to-use, software-driven device programmer that

More information

SGTL5000 I 2 S DSP Mode

SGTL5000 I 2 S DSP Mode Freescale Semiconductor Application Note Document Number: AN3664 Rev. 2, 11/2008 SGTL5000 I 2 S DSP Mode by Name of Group Freescale Semiconductor, Inc. Austin, TX 1 Description SGTL5000 supports multiple

More information

Utilizing Extra FC Credits for PCI Express Inbound Posted Memory Write Transactions in PowerQUICC III Devices

Utilizing Extra FC Credits for PCI Express Inbound Posted Memory Write Transactions in PowerQUICC III Devices Freescale Semiconductor Application Note Document Number: AN3781 Rev. 0, 06/2009 Utilizing Extra FC Credits for PCI Express Inbound Posted Memory Write Transactions in PowerQUICC III Devices This application

More information

Using an I 2 C EEPROM During MSC8157 Initialization

Using an I 2 C EEPROM During MSC8157 Initialization Freescale Semiconductor Application Note AN4205 Rev. 0, 11/2010 Using an I 2 C EEPROM During MSC8157 Initialization The MSC8157 family allows you to use an I 2 C EEPROM to to initialize the DSP during

More information

MPR121 Jitter and False Touch Detection

MPR121 Jitter and False Touch Detection Freescale Semiconductor Application Note Rev 1, 03/2010 MPR121 Jitter and False Touch Detection INTRODUCTION Touch acquisition takes a few different parts of the system in order to detect touch. The baseline

More information

Hardware Documentation

Hardware Documentation Hardware Documentation for JTAG Debug Adapter Version 1.0 2014-12-02 F&S Elektronik Systeme GmbH Untere Waldplätze 23 D-70569 Stuttgart Fon: +49(0)711-123722-0 Fax: +49(0)711 123722-99 History Date V Platform

More information

for StarCore DSP Architectures Quick Start for the Windows Edition

for StarCore DSP Architectures Quick Start for the Windows Edition for StarCore DSP Architectures Quick Start for the Windows Edition CodeWarrior Development Studio for StarCore DSP Architectures Quick Start for the Windows Edition SYSTEM REQUIREMENTS Hardware Operating

More information

SN8F5000 Starter-Kit User Manual

SN8F5000 Starter-Kit User Manual SONiX Technology Co., Ltd. User Manual 8051-based Microcontroller 1 Overview of Starter Kit provides easy-development platform. It includes SN8F5000 family real chip and I/O connectors to input signal

More information

Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME)

Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME) Freescale Semiconductor User s Guide Document Number: KTUSBSPIPRGUG Rev. 1.0, 7/2010 Updating the Firmware on USB SPI Boards (KITUSBSPIEVME, KITUSBSPIDGLEVME) Figure 1. KITUSBSPIEVME and KITUSBSPIDGLEVME

More information

Prepared by: Gang Chen ON Semiconductor U1 NCP1529 GND SW 5. Figure 1. Typical Simulation Circuit of NCP1529 for DC DC Applications

Prepared by: Gang Chen ON Semiconductor   U1 NCP1529 GND SW 5. Figure 1. Typical Simulation Circuit of NCP1529 for DC DC Applications AND94/D Use of NCP1529 Pspice Model Prepared by: Gang Chen ON Semiconductor APPLICATION NOTE Overview The NCP1529 is a synchronous step down DC DC converter for portable applications powered by one cell

More information

Performance Factors nc. 2 Performance Factors The following sections discuss performance factors. 2.1 MPX vs. 60x Bus Mode One of the main factors tha

Performance Factors nc. 2 Performance Factors The following sections discuss performance factors. 2.1 MPX vs. 60x Bus Mode One of the main factors tha nc. White Paper MPC74XXBUSWP Rev. 1.1, 11/2003 Memory Bus Throughput of the MPC74xx Richie David, CPD Applications risc10@email.mot.com This document compares the memory bus data transfer rate of the MPC7450

More information

Using IIC to Read ADC Values on MC9S08QG8

Using IIC to Read ADC Values on MC9S08QG8 Freescale Semiconductor Application Note AN3048 Rev. 1.00, 11/2005 Using IIC to Read ADC Values on MC9S08QG8 by Donnie Garcia Application Engineering Microcontroller Division 1 Introduction The MC9S08QG8

More information

SML40-CH04 Chassis CWDM Passive 4 Slot Rack

SML40-CH04 Chassis CWDM Passive 4 Slot Rack SML40-CH04 Chassis CWDM Passive 4 Slot Rack The information in this publication has been carefully checked and is believed to be entirely accurate at the time of publication. CTC Union Technologies assumes

More information

Freescale Semiconductor, I

Freescale Semiconductor, I nc. Order this document by /D Motorola Semiconductor How to Program Chip Selects on Modular Microcontrollers with a System Integration Module or a Single-Chip Integration Module By Sharon Darley Austin,

More information

MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series

MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series Freescale Semiconductor Technical Data Document Number: MPC7410ECS08AD Rev. 1, 11/2010 MPC7410 RISC Microprocessor Hardware Specifications Addendum for the MPC7410TxxnnnLE Series This document describes

More information

M68HC705E6PGMR PROGRAMMER USER'S MANUAL

M68HC705E6PGMR PROGRAMMER USER'S MANUAL M68HC705E6PGMR/D2 nc. Oct 1993 M68HC705E6PGMR PROGRAMMER USER'S MANUAL Motorola reserves the right to make changes without further notice to any products herein to improve reliability, function or design.

More information

Using the PowerQUICC II Auto-Load Feature

Using the PowerQUICC II Auto-Load Feature Freescale Semiconductor Application Note Document Number: AN3352 Rev. 0, 01/2007 Using the PowerQUICC II Auto-Load Feature by David Smith/Patrick Billings Field Application Engineering/DSD Applications

More information

Managing Failure Detections and Using Required Components to Meet ISO7637 pulse 1 on MC33903/4/5 Common Mode Choke Implementation

Managing Failure Detections and Using Required Components to Meet ISO7637 pulse 1 on MC33903/4/5 Common Mode Choke Implementation Freescale Semiconductor Application Note AN3865 Rev. 1.0, 2/2010 Managing Failure Detections and Using Required Components to Meet ISO7637 pulse 1 on MC33903/4/5 Common Mode Choke Implementation 1 Overview

More information

Application Note. I²C Interface for Digital CO2 Measurement Module

Application Note. I²C Interface for Digital CO2 Measurement Module APPLICATION NOTE AN1804-1 Application Note I²C Interface for Digital CO2 Measurement Module Rev. 1.0 04/2018 Relevant for: This application note applies to EE894 Introduction: EE894 supports the standard

More information

MPC8260 IDMA Timing Diagrams

MPC8260 IDMA Timing Diagrams Freescale Semiconductor Application Note Document Number: AN2177 Rev. 4, 07/2006 MPC8260 IDMA Timing Diagrams By DSD Applications, NCSG Freescale Semiconductor, Inc. The MPC8260 PowerQUICC II integrated

More information

MPC8349E-mITX-GP Board Errata

MPC8349E-mITX-GP Board Errata Freescale Semiconductor Document Number: MPC8349EMITX-GPBE Rev. 2, 01/2007 MPC8349E-mITX-GP Board Errata This document describes the known errata and limitations of the MPC8349E-mITX-GP reference platform.

More information

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition SYSTEM REQUIREMENTS Hardware Operating System Disk Space Intel Pentium 4 processor, 2 GHz or faster,

More information

Using DMA to Emulate ADC Flexible Scan Mode on Kinetis K Series

Using DMA to Emulate ADC Flexible Scan Mode on Kinetis K Series Freescale Semiconductor Document Number: AN4590 Application Note Rev 0, 9/2012 Using DMA to Emulate ADC Flexible Scan Mode on Kinetis K Series by: Lukas Vaculik Rožnov pod Radhoštem Czech Republic 1 Introduction

More information

PQ-MDS-QOC3 Module. HW Getting Started Guide. Contents. About This Document. Required Reading. Definitions, Acronyms, and Abbreviations

PQ-MDS-QOC3 Module. HW Getting Started Guide. Contents. About This Document. Required Reading. Definitions, Acronyms, and Abbreviations HW Getting Started Guide PQ-MDS-QOC3 Module July 2006: Rev. A Contents Contents........................................................................................ 1 About This Document..............................................................................

More information

Mechanical Differences Between the 196-pin MAP-BGA and 196-pin PBGA Packages

Mechanical Differences Between the 196-pin MAP-BGA and 196-pin PBGA Packages Freescale Semiconductor Engineering Bulletin EB360 Rev. 1, 10/2005 Mechanical Differences Between the 196-pin MAP-BGA and 196-pin PBGA Packages This document describes the differences between the 196-pin

More information

Pad Configuration and GPIO Driver for MPC5500 Martin Kaspar, EMEAGTM, Roznov Daniel McKenna, MSG Applications, East Kilbride

Pad Configuration and GPIO Driver for MPC5500 Martin Kaspar, EMEAGTM, Roznov Daniel McKenna, MSG Applications, East Kilbride Freescale Semiconductor Application Note Document Number: AN2855 Rev. 0, 2/2008 Pad Configuration and GPIO Driver for MPC5500 by: Martin Kaspar, EMEAGTM, Roznov Daniel McKenna, MSG Applications, East Kilbride

More information

Introduction to LIN 2.0 Connectivity Using Volcano LTP

Introduction to LIN 2.0 Connectivity Using Volcano LTP Freescale Semiconductor White Paper LIN2VOLCANO Rev. 0, 12/2004 Introduction to LIN 2.0 Connectivity Using Volcano LTP by: Zdenek Kaspar, Jiri Kuhn 8/16-bit Systems Engineering Roznov pod Radhostem, Czech

More information

Using the Project Board LCD Display at 3.3 volts

Using the Project Board LCD Display at 3.3 volts Freescale Semiconductor SLK0100AN Application Note Rev. 0, 1/2007 By: John McLellan Applications Engineering Austin, TX 1 Introduction This document guides you through the steps necessary to use the LCD

More information

LA6584JA. Functions and Applications Single-phase full-wave driver for fan motor. Specitications

LA6584JA. Functions and Applications Single-phase full-wave driver for fan motor. Specitications Ordering number : ENA2125 Monolithic Linear IC Single-phase Full-wave Driver For Fan Motor http://onsemi.com Overview The is Single-phase bipolar fan motor is put into silent driving by means of BTL output

More information

Electrode Graphing Tool IIC Driver Errata Microcontroller Division

Electrode Graphing Tool IIC Driver Errata Microcontroller Division Freescale Semiconductor User Guide Addendum TSSEGTUGAD Rev. 1, 03/2010 Electrode Graphing Tool IIC Driver Errata by: Microcontroller Division This errata document describes corrections to the Electrode

More information

Figure 1. (Top) top view and (bottom) bottom view of the version 3 ON Semiconductor SMA boards, from left to right 6mm, 3mm and 1mm

Figure 1. (Top) top view and (bottom) bottom view of the version 3 ON Semiconductor SMA boards, from left to right 6mm, 3mm and 1mm Reference Designs for the SMA and SMTPA MLP-Packaged SiPM Evaluation Boards OVERVIEW This document gives the complete schematics for the SMA and SMTPA SiPM evaluation boards from ON Semiconductor. The

More information

1N5221B - 1N5263B Zener Diodes

1N5221B - 1N5263B Zener Diodes 1N5-1N5 Zener Diodes Tolerance = 5% 1N5-1N5 Zener Diodes DO-35 Glass case COLOR BAND DENOTES CATHODE Absolute Maximum Ratings Stresses exceeding the absolute maximum ratings may damage the device. The

More information

CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200

CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200 CodeWarrior Development Studio for Freescale 68HC12/HCS12/HCS12X/XGATE Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System 200 MHz Pentium II processor or AMD-K6 class processor,

More information

LB1868. Specifications Absolute Maximum Ratings at Ta = 25 C. Monolithic Digital IC 2-phase Brushless Fan Motor Driver. Ordering number : EN6202A

LB1868. Specifications Absolute Maximum Ratings at Ta = 25 C. Monolithic Digital IC 2-phase Brushless Fan Motor Driver. Ordering number : EN6202A Ordering number : EN60A Monolithic Digital IC -phase Brushless Fan Motor Driver http://onsemi.com Overview The is a -phase unipolar brushless motor driver. With only a few peripheral parts, lockup protection

More information

AND8386/D. Bootloading BelaSigna 250 Using the I 2 C Interface APPLICATION NOTE

AND8386/D. Bootloading BelaSigna 250 Using the I 2 C Interface APPLICATION NOTE Bootloading BelaSigna 250 Using the I 2 C Interface APPLICATION NOTE INTRODUCTION This application note describes how to bootload BelaSigna 250 through its I 2 C interface when it does not have an EEPROM

More information

SRAM SRAM SRAM SCLK khz

SRAM SRAM SRAM SCLK khz MOTOROLA nc. SEMICONDUCTOR PRODUCT INFORMATION Advance Information Evaluation Module Order this document by: P/D The DSP56603 Evaluation Module () is designed as a low-cost platform for developing real-time

More information

Symphony SoundBite: Quick Start with Symphony Studio. Installation and Configuration

Symphony SoundBite: Quick Start with Symphony Studio. Installation and Configuration Symphony SoundBite: Quick Start with Symphony Studio Installation and Configuration Document Number: DSPB56371UGQS Rev. 2 September 2008 How to Reach Us: Home Page: www.freescale.com E-mail: support@freescale.com

More information

LA6584M. Overview. Functions and Applications. Specitications. Monolithic Linear IC BTL Driver Single-Phase Full-Wave Fan Motor Driver

LA6584M. Overview. Functions and Applications. Specitications. Monolithic Linear IC BTL Driver Single-Phase Full-Wave Fan Motor Driver Ordering number : ENN8349 LA6584M Monolithic Linear IC BTL Driver Single-Phase Full-Wave Fan Motor Driver http://onsemi.com Overview The LA6584M is Single-phase bipolar fan motor is put into silent driving

More information

SRAM SRAM SRAM. Data Bus EXTAL ESSI KHz MHz. In Headphone CS MHz. Figure 1 DSP56302EVM Functional Block Diagram

SRAM SRAM SRAM. Data Bus EXTAL ESSI KHz MHz. In Headphone CS MHz. Figure 1 DSP56302EVM Functional Block Diagram MOTOROLA SEMICONDUCTOR PRODUCT INFORMATION Advance Information Evaluation Module Order this document by: P/D The Evaluation Module () is designed as a low-cost platform for developing real-time software

More information

AND8319/D. How to Maintain USB Signal Integrity when Adding ESD Protection APPLICATION NOTE

AND8319/D. How to Maintain USB Signal Integrity when Adding ESD Protection APPLICATION NOTE How to Maintain USB Signal Integrity when Adding ESD Protection Prepared by: Edwin Romero APPLICATION NOTE Introduction The Universal Serial Bus (USB) has become a popular feature of PCs, cell phones and

More information

Model Based Development Toolbox MagniV for S12ZVC Family of Processors

Model Based Development Toolbox MagniV for S12ZVC Family of Processors Freescale Semiconductor Release Notes Document Number: MBDTB-ZVC-RN Model Based Development Toolbox MagniV for S12ZVC Family of Processors Version 1.0.0 Freescale Semiconductor, Inc. 1. Revision History

More information

ET100/NRZ. Ethernet WAN Bridge. 10/100Base-TX Ethernet over NRZ

ET100/NRZ. Ethernet WAN Bridge. 10/100Base-TX Ethernet over NRZ ET100/NRZ Ethernet WAN Bridge 10/100Base-TX Ethernet over NRZ CTC Union Technologies Co., Ltd. NeiHu Hi-Tech Park 8F, No. 60 Zhouzi Street. Neihu, Taipei, 114 Taiwan ET100/NRZ Ethernet WAN Bridge, User

More information

Apollo2 EVB Quick Start Guide

Apollo2 EVB Quick Start Guide Apollo2 EVB Quick Start Guide Doc ID: QS-A2-1p00 Revision 1.0 June 2017 QS-A2-1p00 Page 1 of 11 2017 Ambiq Micro, Inc. Table of Content 1. Introduction...3 2. Documentation Revision History...3 3. Overview

More information

SONIX 8-BIT MCU OTP Easy Writer

SONIX 8-BIT MCU OTP Easy Writer SONIX 8-BIT MCU OTP Easy Writer User s Manual General Release Specification SONIX reserves the right to make change without further notice to any products herein to improve reliability, function or design.

More information

Figure 1. Power Barrel Connector Requirements

Figure 1. Power Barrel Connector Requirements Freescale Semiconductor Quick Start Guide Rev. 0.1, 06/29/2004 DEMO9S12NE64 Demo Quick Start Guide Introduction This kit and guide contains everything you need to get started. You will connect the board

More information

Mask Set Errata. Introduction. MCU Device Mask Set Identification. MCU Device Date Codes. MCU Device Part Number Prefixes MSE08AZ32_0J66D 12/2002

Mask Set Errata. Introduction. MCU Device Mask Set Identification. MCU Device Date Codes. MCU Device Part Number Prefixes MSE08AZ32_0J66D 12/2002 Mask Set Errata MSE08AZ32_0J66D 12/2002 Mask Set Errata for MC68HC08AZ32, Mask 0J66D Introduction This mask set errata applies to this MC68HC08AZ32 MCU mask set: 0J66D MCU Device Mask Set Identification

More information

The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable

The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable USB DEBUG ADAPTER USER S GUIDE 1. Contents The USB Debug Adapter package contains the following items: USB Debug Adapter (USB to Debug Interface) with attached 7 Ribbon Cable 2. USB Debug Adapter Specifications

More information

Component Development Environment Installation Guide

Component Development Environment Installation Guide Freescale Semiconductor Document Number: PEXCDEINSTALLUG Rev. 1, 03/2012 Component Development Environment Installation Guide 1. Introduction The Component Development Environment (CDE) is available as

More information

Please refer to "4. Evaluation Board" on page 2 for more information about these steps. Figure 1. System Connections

Please refer to 4. Evaluation Board on page 2 for more information about these steps. Figure 1. System Connections CP2120 EVALUATION KIT USER S GUIDE 1. Kit Contents The CP2120 Evaluation Kit contains a CP2120 evaluation board and a power supply. The following supporting documents can be downloaded from www.silabs.com:

More information

MC33696MODxxx Kit. 1 Overview. Freescale Semiconductor Quick Start Guide. Document Number: MC33696MODUG Rev. 0, 05/2007

MC33696MODxxx Kit. 1 Overview. Freescale Semiconductor Quick Start Guide. Document Number: MC33696MODUG Rev. 0, 05/2007 Freescale Semiconductor Quick Start Guide Document Number: MC33696MODUG Rev. 0, 05/2007 MC33696MODxxx Kit by: Laurent Gauthier Toulouse, France 1 Overview This document provides introductory information

More information

Freescale Semiconductor, I

Freescale Semiconductor, I SEMICONDUCTOR APPLICATION NOTE Order this document by AN65/D Prepared by: Bill Lucas and Warren Schultz A plug in module that is part of a systems development tool set for pressure sensors is presented

More information

BZX85C3V3 - BZX85C56 Zener Diodes

BZX85C3V3 - BZX85C56 Zener Diodes BZXCV - BZXC6 Zener Diodes Tolerance = % DO- Glass Case COLOR BAND DENOTES CATHODE Absolute Maximum Ratings Stresses exceeding the absolute maximum ratings may damage the device. The device may not function

More information

Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0

Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0 Freescale Semiconductor Application Note Document Number: AN3986 Rev. 0, 02/2010 Changing the i.mx51 NAND Flash Model for Windows Embedded CE TM 6.0 by Multimedia Applications Division Freescale Semiconductor,

More information

Is Now Part of. To learn more about ON Semiconductor, please visit our website at

Is Now Part of. To learn more about ON Semiconductor, please visit our website at Is Now Part of To learn more about ON Semiconductor, please visit our website at Please note: As part of the Fairchild Semiconductor integration, some of the Fairchild orderable part numbers will need

More information

1.3 General Parameters

1.3 General Parameters Advance Information MPC8245RZUPNS/D Rev. 0, 3/2002 MPC8245 Part Number Specification for the XPC8245RZUnnnx Series Motorola Part Numbers Affected: XPC8245RZU400B This document describes part-number-specific

More information

M68CPA08QF Programming Adapter. User s Manual. Freescale Semiconductor, I. User s Manual. M68CPA08QF324448UM/D Version 1.

M68CPA08QF Programming Adapter. User s Manual. Freescale Semiconductor, I. User s Manual. M68CPA08QF324448UM/D Version 1. nc. User s Manual M68CPA08QF324448UM/D Version 1.0 June 24, 2003 M68CPA08QF324448 Programming Adapter User s Manual Motorola, Inc., 2003 nc. Important Notice to Users While every effort has been made to

More information

FIT1e Revision D Rev1.1

FIT1e Revision D Rev1.1 FIT1e Revision D00001454 Rev1.1 Page 2 of 6 FIT1e Revision, Rev 1.1 Copyright Information and Usage Notice This information disclosed herein is the exclusive property of Dynastream Innovations Inc. No

More information

56F8300 BLDC Motor Control Application

56F8300 BLDC Motor Control Application 56F8300 BLDC Motor Control Application with Quadrature Encoder using Processor Expert TM Targeting Document 56F8300 16-bit Digital Signal Controllers 8300BLDCQETD Rev. 2 08/2005 freescale.com Document

More information

Freescale Semiconductor, I. How to Use the Table Lookup and Interpolate Instruction on the CPU32

Freescale Semiconductor, I. How to Use the Table Lookup and Interpolate Instruction on the CPU32 nc. Order this document by /D Motorola Semiconductor How to Use the Table Lookup and Interpolate Instruction on the CPU32 By Sharon Darley Austin, Texas Introduction The table lookup and interpolate instruction

More information

Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis

Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis Freescale Semiconductor Document Number: AN4307 Application Note Rev. Rev.0, 5/ 2011 Using the CAU and mmcau in ColdFire, ColdFire+ and Kinetis by: Paolo Alcantara RTAC Americas Mexico 1 Introduction This

More information

PQ-MDS-PIB. HW Getting Started Guide 12,13. January 2006: Rev Check kit contents

PQ-MDS-PIB. HW Getting Started Guide 12,13. January 2006: Rev Check kit contents HW Getting Started Guide PQ-MDS-PIB January 2006: Rev. 0.4 Step 1: Check kit contents 1. PQ- MDS- PIB (Platform I/O Board, or PIB ) 2. Power cable extension with on-off switch 3. 25 Pin IEEE 1284 Parallel

More information

CodeWarrior Development Tools mwclearcase Plug-in User s Guide

CodeWarrior Development Tools mwclearcase Plug-in User s Guide CodeWarrior Development Tools mwclearcase Plug-in User s Guide Revised: 29 January 2008 Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. CodeWarrior is a trademark or registered

More information

M68HC705E24PGMR PROGRAMMER USER'S MANUAL

M68HC705E24PGMR PROGRAMMER USER'S MANUAL M68HC705E24PGMR/D Rev. 2 March 1995 M68HC705E24PGMR PROGRAMMER USER'S MANUAL Third Edition MOTOROLA Ltd., 1993, 1995; All Rights Reserved Motorola reserves the right to make changes without further notice

More information

Is Now Part of To learn more about ON Semiconductor, please visit our website at

Is Now Part of To learn more about ON Semiconductor, please visit our website at Is Now Part of To learn more about ON Semiconductor, please visit our website at www.onsemi.com ON Semiconductor and the ON Semiconductor logo are trademarks of Semiconductor Components Industries, LLC

More information

NCN1154MUTGEVB. NCN1154 DP3T USB 2.0 High Speed Audio Switch Evaluation Board User's Manual EVAL BOARD USER S MANUAL

NCN1154MUTGEVB. NCN1154 DP3T USB 2.0 High Speed Audio Switch Evaluation Board User's Manual EVAL BOARD USER S MANUAL NCN54 DP3T USB.0 High Speed Audio Switch Evaluation Board User's Manual Prepared by: Bertrand RENAUD On Semiconductor EVAL BOARD USER S MANUAL OVERVIEW The NCN54 is a DP3T switch for combined true ground

More information

Advance Information 24-BIT GENERAL PURPOSE DIGITAL SIGNAL PROCESSOR

Advance Information 24-BIT GENERAL PURPOSE DIGITAL SIGNAL PROCESSOR MOTOROLA SEMICONDUCTOR PRODUCT BRIEF Order this document by: DSP56309PB/D, Rev 0 DSP56309 Advance Information 24-BIT GENERAL PURPOSE DIGITAL SIGNAL PROCESSOR The DSP56309 is a member of the DSP56300 core

More information

SONiX 32-bit MCU ISP. User Guide. SONIX 32-Bit MCU Series. Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760

SONiX 32-bit MCU ISP. User Guide. SONIX 32-Bit MCU Series. Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760 SONiX 32-bit MCU ISP User Guide Version 3.1 SN32F700 SN32F710 SN32F720 SN32F100 SN32F730 SN32F740 SN32F750 SN32F760 SONiX 32-Bit Cortex-M0 Micro-Controller SONIX reserves the right to make change without

More information

AND9407/D Low Power Techniques of LC Series for Audio Applications

AND9407/D Low Power Techniques of LC Series for Audio Applications Low Power Techniques of LC823450 Series for Audio Applications Introduction This application note describes low power techniques to enable customers to control the power consumption to meet their operation

More information

1 Introduction. 2 Problem statement. Freescale Semiconductor Engineering Bulletin. Document Number: EB727 Rev. 0, 01/2010

1 Introduction. 2 Problem statement. Freescale Semiconductor Engineering Bulletin. Document Number: EB727 Rev. 0, 01/2010 Freescale Semiconductor Engineering Bulletin Document Number: EB727 Rev. 0, 01/2010 Enabling and Disabling ECC on MC9S08DE60/MC9S08DE32 Microcontrollers by: Philip Drake, 8-Bit Systems and Applications

More information

Migrating from the MPC852T to the MPC875

Migrating from the MPC852T to the MPC875 Freescale Semiconductor Application Note Document Number: AN2584 Rev. 1, 1/2007 Migrating from the MPC852T to the MPC875 by Ned Reinhold NCSD Applications Freescale Semiconductor, Inc. Austin, TX This

More information

AND9032. How to Read Temperature Through I 2 C Bus for NCT75-based Thermostat APPLICATION NOTE

AND9032. How to Read Temperature Through I 2 C Bus for NCT75-based Thermostat APPLICATION NOTE How to Read Temperature Through I 2 C Bus for -based Thermostat APPLICATION NOTE Introduction The is a twowire serially programmable temperature sensor with an over temperature/interrupt output pin to

More information

i.mx31 PDK Power Measurement with GUI

i.mx31 PDK Power Measurement with GUI Freescale Semiconductor Application Note Document Number: AN4061 Rev. 0, 02/2010 i.mx31 PDK Power Measurement with GUI by Multimedia Application Division Freescale Semiconductor, Inc. Austin, TX This application

More information

ColdFire Convert 1.0 Users Manual by: Ernest Holloway

ColdFire Convert 1.0 Users Manual by: Ernest Holloway Freescale Semiconductor CFCONVERTUG Users Guide Rev.0, 09/2006 ColdFire Convert 1.0 Users Manual by: Ernest Holloway The ColdFire Convert 1.0 (CF) is a free engineering tool developed to generate data

More information

NCP370GEVB. NCP370 Over Voltage Protection Controller with Reverse Charge Control Evaluation Board User's Manual EVAL BOARD USER S MANUAL

NCP370GEVB. NCP370 Over Voltage Protection Controller with Reverse Charge Control Evaluation Board User's Manual EVAL BOARD USER S MANUAL NCP370 Over Voltage Protection Controller with Reverse Charge Control Evaluation Board User's Manual Description The NCP370 is an overvoltage, overcurrent and reverse control device. Two main modes are

More information

NUF2221W1T2. USB Upstream Terminator with ESD Protection

NUF2221W1T2. USB Upstream Terminator with ESD Protection Upstream Terminator with ESD Protection This device is designed for applications requiring Line Termination, EMI Filtering and ESD Protection. It is intended for use in upstream ports, Cellular phones,

More information

CM1219. Low Capacitance Transient Voltage Suppressors / ESD Protectors

CM1219. Low Capacitance Transient Voltage Suppressors / ESD Protectors Low Capacitance Transient Voltage Suppressors / ESD Protectors Description The family of devices features transient voltage suppressor arrays that provide a very high level of protection for sensitive

More information