Software ISP Application Note

Size: px
Start display at page:

Download "Software ISP Application Note"

Transcription

1 NXP Semiconductors Document Number: AN12060 Application Notes Rev. 0, 10/2017 Software ISP Application Note 1. Introduction This document describes the software-based image signal processing application(sw-isp) and its implementation on the i.mx8 family device System-on- Chip [1] (SoC) processors. This application is used for image processing in i.mx8 family device. This pipelined image processing engine is optimized by onchip GPU. It includes functions of Bad Pixel Correction, White Balance, Histogram Equalization, High-Quality Demosaicing, High-Quality Noise Reduction. Its purpose is to use on-chip GPU to implement ISP function with a high speed processing. Contents 1. Introduction Software theory SW-ISP Pipeline Optimized by OpenCL SW-ISP Pipeline Optimized by OpenVX Performance measurement SW-ISP Pipeline Optimized by OpenCL/OpenVX Conclusion References System on Chip, Yocto Project, Bayer Image, YUV/RGB Convert, available at en.wikipedia.org Revision history NXP B.V.

2 Bad Pixel Correction White Balance Histogram Equalization High-quality Demosaicing High-Quality Noise Reduction (Optional) Software theory Raw Image RGBA Image SW-ISP Pipeline GPU Hardware 2. Software theory Figure 1. SW-ISP pipeline block diagram From the software point of view, the full SW-ISP application consists of these parts: Linux OS. The SD card image is created by using the Yocto Project [1]. SW-ISP pipeline optimized by OpenCL1.2 [2]. SW-ISP pipeline optimized by OpenVX1.1 [2]. SW-ISP pipeline includes five functions of image processing. Bad Pixel Correction algorithm [3], White Balance algorithm [4], Histogram Equalization algorithm [5] and High-Quality Demosaicing algorithm [6] are applied into Bayer image [1], while High-Quality Noise Reduction algorithm [7] is applied into Y- channel alone. The High-Quality Noise Reduction process consists of following steps: 1) The RGBA image is converted to YUV image [1]. 2) Apply bilateral filtering [7] to Y-Channel to reduce noise of image. 3) Filtered Y-Channel image is merged into UV-Channels to covert to RGBA image. In both OpenCL and OpenVX pipelines, input raw images captured by Bayer camera (Used color filter array over Bayer camera is shown in Figure 2.) are read from file. The raw values would be uploaded to a GPU as a grayscale texture. Every function in SW-ISP pipeline is independent, so they can be combined willfully. These functions are combined in various ways to show processed images of each function. The combination can be controlled by keys. For example, if press 1 when the application is running, the pipeline only implement 2 NXP Semiconductors

3 Software theory function of High-quality Demosiacing. The application block diagram is shown in Figure 3. Figure 2. Bayer color filter array NOTE The color filter array is blue-green-green-red (BG/GR). It is 50% green, 25% blue, and 25% red. Read Bayer Image Keys Control Press 1 Press 2 Default or press 3 Press 4 Press 5 High-quality Demosaicing Bad Pixel Correction Bad Pixel Correction Bad Pixel Correction Bad Pixel Correction White Balance Histogram Equalization White Balance High-quality Demosaicing High-quality Demosaicing High-quality Noise Reduction Display(RGBA) Software ISP Pipeline of OpenCL/OpenVX Figure 3. Application block diagram NXP Semiconductors 3

4 Software theory Figure 4 shows effects of each algorithm: Raw Bayer Image Demosiacing of Raw Image Raw Image Demosiacing Bad Pixel Correction White Balance Histogram Equalization Noise Reduction Figure 4. Comparison of algorithms applied to an image. NOTE Because the currently released software ISP works in the demo mode only, the input array of Bayer image is BG/GR mode. To show results on screen directly, format of output image is RGBA and the width of the output image is 1936 which is same with that of Frame Buffer SW-ISP Pipeline Optimized by OpenCL In OpenCL pipeline, combine different functions of SW-ISP by setting kernel arguments. The detailed directory structure of the SW-ISP of OpenCL application is shown in Figure 5: 4 NXP Semiconductors

5 Software theory Figure 5. Directory structure of the SW-ISP of OpenCL application The root directory is called SW-ISP-OpenCL. There are three subdirectories in the root directory: Build - contains executable file generated by the SW-ISP and the binary file called ISP_OCL_FB_Opt. Content - contains the prepared raw images ( garden04_bayerdata_300f.raw ) in the *.raw format and input txt file( 1920x1080.txt ). These raw images were captured by Bayer camera (resolution: 1920 x 1080, Bayer array: BG/GR). Name of raw images is put in 1920x1080.txt. The application can read raw data by 1920x1080.txt. Source - contains source code running on CPU ( isppipeline_ocl.cpp ) and GPU ( kernel.cl/ kernel.cl.bin ). kernel.cl is C code of kernels. kernel.cl.bin is compiled binary file of kernels. The application is compiled on the target, so all files of SW-ISP-OpenCL should be copied to i.mx8 board. Compile and run the application by the following commands: 1) Change directory to Source. $: cd SW-ISP-OpenCL/Source/ 2) Compile the source codes, and executable file will be generated in the Build. $: make 3) Change directory to Build. $: cd../build/ 4) Run the program (disable High-quality Noise Reduction). $:./ISP_OCL_FB_Opt -f../content/1920x1080.txt 5) Run the program (enable High-quality Noise Reduction). $:./ISP_OCL_FB_Opt -f../content/1920x1080.txt -d 2.2. SW-ISP Pipeline Optimized by OpenVX In OpenVX pipeline, combination of different functions are controlled by graphs in OpenVX. The detailed directory structure of the SW-ISP of OpenVX application is shown in Figure 6: NXP Semiconductors 5

6 Software theory Figure 6. Directory structure of the SW-ISP of OpenVX application The root directory is called SW-ISP-OpenVX. There are three subdirectories in the root directory: Build - contains header file used in compiling of OpenVX kernels. Executable binary file called ISP_OVX_Opt will be put here after compiling the project. Content - contains the prepared raw images ( garden04_bayerdata_300f.raw ) in the *.raw format and input txt file( 1920x1080.txt ). These raw images were captured by Bayer camera (resolution: 1920 x 1080, Bayer array: BG/GR). Name of raw images is put in 1920x1080.txt. The application can read raw data by 1920x1080.txt. Source - contains source code running on CPU ( pipeline_kernel.cpp, pipeline_kernel.hpp main.cpp and define.hpp ) and GPU ( kernels_vxc.hpp ). kernels_vxc.hpp is code of kernels. The application is compiled on the target, so all files of SW-ISP-OpenVX should be copied to i.mx8 board. Compile and run the application by the following commands: 1) Change directory to Source. $: cd SW-ISP-OpenVX/Source/ 2) Compile the source codes, and executable file will be generated in the Build. $: make 3) Change directory to Build. $: cd../build/ 4) Run the program (disable High-quality Noise Reduction). $: /ISP_OVX_Opt -f../content/1920x1080.txt 5) Run the program (enable High-quality Noise Reduction). $: /ISP_OVX_Opt -f../content/1920x1080.txt -d 6 NXP Semiconductors

7 Conclusion 3. Performance measurement This section describes the profiling of the SW-ISP (OpenVX, OpenCL) application. The main profiling information is frame rate of SW-ISP. Running time of kernels is also statistic. Table 1. Common SW-ISP profiling conditions Feature Description Input method Image (1920 x 1080, Bayer) Graphical backend fb Platform OpenCL,OpenVX HW i.mx8dv BSP GPU driver OpenVX 1.1 OpenCL 1.2FP Used HDMI resolution 1920 x 1080 (1080p) Doc Software ISP Application Release date Sept 23th 3.1. SW-ISP Pipeline Optimized by OpenCL/OpenVX Table 2 shows the statistic results of different functions. The default pipeline includes bad pixel correction node, white balance node and high-quality demosiacing node. Frame rate of the default OpenCL pipeline is ~28fps, and that of the default OpenVX pipeline is ~39fps. Table 2. Comparison of SW-ISP OpenCL and OpenVX on i.mx8dv SW-ISP Functions Consumed time of OpenCL (ms) Consumed time of OpenVX(ms) Bad Pixel Correction Node 12 4 White Balance Node 8 8 Histogram Equalization Node 6 7 Demosiacing Node 11 5 RGBA2YUV Node 7 4 High-quality Noise Reduction Node YUV2RGBA Node 12 4 Pipeline(default) Conclusion This application represents a software ISP solution. This solution is optimized by both OpenCL and OpenVX, running on GPU. The SW-ISP application has these main advantages: High application performance (OpenCL: ~28 fps, 1080p, OpenVX: ~39fps, 1080p). Algorithm of ISP optimized deeply by OpenCL/OpenVX. Support different combination of functions. SW-ISP optimized by OpenCL support most OpenCL platform. NXP Semiconductors 7

8 Revision history 5. References 1. System on Chip, Yocto Project, Bayer Image, YUV/RGB Convert, available at en.wikipedia.org. 2. OpenCL 1.2 and OpenVX 1.1 Reference Pages, available at 3. Bad pixel detection and correction algorithm is referred to 4. White balance algorithm is referred to 5. Histogram Equalization algorithm is referred to 6. High-quality demosaicing algorithm is referred to 7. High-quality noise reduction algorithm is referred to 6. Revision history Table 3. Revision history Revision number Date Substantive changes 0 10/2017 Initial release 8 NXP Semiconductors

9

10 How to Reach Us: Home Page: nxp.com Web Support: nxp.com/support Information in this document is provided solely to enable system and software implementers to use NXP products. There are no express or implied copyright licenses granted hereunder to design or fabricate any integrated circuits based on the information in this document. NXP reserves the right to make changes without further notice to any products herein. NXP makes no warranty, representation, or guarantee regarding the suitability of its products for any particular purpose, nor does NXP 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 consequential or incidental damages. Typical parameters that may be provided in NXP data sheets and/or specifications can and do vary in different applications, and actual performance may vary over time. All operating parameters, including typicals, must be validated for each customer application by customer s technical experts. NXP does not convey any license under its patent rights nor the rights of others. NXP sells products pursuant to standard terms and conditions of sale, which can be found at the following address: nxp.com/salestermsandconditions. NXP, the NXP logo, NXP SECURE CONNECTIONS FOR A SMARTER WORLD, Freescale, and the Freescale logo are trademarks of NXP B.V. Windows is a registered trademark of Microsoft Corporation in the United States and/or other countries. Yocto Project is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds in the U.S. and other countries. Arm, the Arm logo, and Cortex are registered trademarks of Arm Limited (or its subsidiaries) in the EU and/or elsewhere. All other product or service names are the property of their respective owners. All rights reserved NXP B.V. Document Number: AN12060 Rev. 0 10/2017

QWKS Ethernet Accessory Card, User's Guide

QWKS Ethernet Accessory Card, User's Guide NXP Semiconductors Document Number: QWKSEACSG User's Guide Rev 0, April, 2017 QWKS Ethernet Accessory Card, User's Guide Contents Contents Chapter 1 Introduction...3 Chapter 2 QWKS Ethernet Accessory Card

More information

Rework List for the WCT-15W1COILTX Rev.3 Board

Rework List for the WCT-15W1COILTX Rev.3 Board NXP Semiconductors Document Number: WCT1012V31RLAN Application Note Rev. 0, 02/2017 Rework List for the WCT-15W1COILTX Rev.3 Board 1. Introduction In the WCT-15W1COILTX solution, the Q factor detection

More information

i.mxrt1050 Migration Guide Migrating from silicon Rev A0 to Rev A1

i.mxrt1050 Migration Guide Migrating from silicon Rev A0 to Rev A1 NXP Semiconductors Document Number: AN12146 Application te Rev. 1, 05/2018 i.mxrt1050 Migration Guide Migrating from silicon Rev A0 to Rev A1 Contents 1. Introduction 1.1. Purpose This Application te is

More information

AN4269. Diagnostic and protection features in extreme switch family. Document information

AN4269. Diagnostic and protection features in extreme switch family. Document information Rev. 2.0 25 January 2017 Application note Document information Information Keywords Abstract Content The purpose of this document is to provide an overview of the diagnostic features offered in MC12XS3

More information

Improving feedback current accuracy when using H-Bridges for closed loop motor control

Improving feedback current accuracy when using H-Bridges for closed loop motor control NXP Semiconductors Application Note Document Number: AN5212 Rev. 1.0, 7/2016 Improving feedback accuracy when using H-Bridges for closed loop motor control 1 Introduction Many applications use DC motors

More information

Current sense chain accuracy

Current sense chain accuracy NXP Semiconductors Application Note Current sense chain accuracy for the MC20XS4200 dual 24 V high-side switch family Document Number: AN5107 Rev. 1.0, 7/2016 1 Introduction This application note discusses

More information

Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series

Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series Freescale Semiconductor, Inc. Application Note Document Number: AN5177 Rev. 0, 08/2015 Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series 1 Introduction This document describes

More information

How to Use GDU Module in MC9S08SU16

How to Use GDU Module in MC9S08SU16 NXP Semiconductors Document Number: AN5395 Application Note Rev. 0, 12/2016 How to Use GDU Module in MC9S08SU16 1. Introduction MC9S08SU16 is new NXP low-cost, high-performance and high integration UHV

More information

NXP Repetitive short-circuit performances

NXP Repetitive short-circuit performances NXP Semiconductors Application Note Document Number: AN3567 Rev. 3.0, 7/2016 NXP Repetitive performances For the MC15XS3400C 1 Introduction This application note describes the robustness of the 15XS3400C

More information

Vybrid ASRC Performance

Vybrid ASRC Performance Freescale Semiconductor, Inc. Engineering Bulletin Document Number: EB808 Rev. 0, 10/2014 Vybrid ASRC Performance Audio Analyzer Measurements by: Jiri Kotzian, Ronald Wang This bulletin contains performance

More information

Using a Linear Transistor Model for RF Amplifier Design

Using a Linear Transistor Model for RF Amplifier Design Application Note AN12070 Rev. 0, 03/2018 Using a Linear Transistor Model for RF Amplifier Design Introduction The fundamental task of a power amplifier designer is to design the matching structures necessary

More information

PF3000 layout guidelines

PF3000 layout guidelines NXP Semiconductors Application Note Document Number: AN5094 Rev. 2.0, 7/2016 PF3000 layout guidelines 1 Introduction This document provides the best practices for the layout of the PF3000 device on printed

More information

i.mx 6 Series HDMI Test Method for Eye Pattern and Electrical Characteristics

i.mx 6 Series HDMI Test Method for Eye Pattern and Electrical Characteristics Freescale Semiconductor Application Note Document Number: AN4671 Rev. 0, 04/2013 i.mx 6 Series HDMI Test Method for Eye Pattern and Electrical Characteristics This document applies to the following i.mx6

More information

MMPF0100 and MMPF0200 layout guidelines. 1 Introduction. NXP Semiconductors Application Note. Document Number: AN4622 Rev. 5.0, 7/2016.

MMPF0100 and MMPF0200 layout guidelines. 1 Introduction. NXP Semiconductors Application Note. Document Number: AN4622 Rev. 5.0, 7/2016. NXP Semiconductors Application Note Document Number: AN4622 Rev. 5.0, 7/2016 MMPF0100 and MMPF0200 layout guidelines 1 Introduction This document describes good practices for the layout of PF0100 and PF0200

More information

Dual FOC Servo Motor Control on i.mx RT

Dual FOC Servo Motor Control on i.mx RT NXP Semiconductors Document Number: AN12200 Application Note Rev. 0, 06/2018 Dual FOC Servo Motor Control on i.mx RT 1. Introduction This application note describes the dual servo demo with the NXP i.mx

More information

Model-Based Design Toolbox

Model-Based Design Toolbox Model-Based Design Toolbox License Installation & Management Manual An Embedded Target for S32K1xx Family of Processors Version 3.0.0 Target Based Automatic Code Generation Tools For MATLAB /Simulink /Stateflow

More information

Capacitive Sensing Interface of QN908x

Capacitive Sensing Interface of QN908x NXP Semiconductors Document Number: AN12190 Application Note Rev. 0, 05/2018 Capacitive Sensing Interface of QN908x Introduction This document details the Capacitive Sensing (CS) interface of QN908x. It

More information

Driver or Pre -driver Amplifier for Doherty Power Amplifiers

Driver or Pre -driver Amplifier for Doherty Power Amplifiers Technical Data Driver or Pre -driver Amplifier for Doherty Power Amplifiers The MMG30301B is a 1 W high gain amplifier designed as a driver or pre--driver for Doherty power amplifiers in wireless infrastructure

More information

Dead-Time Compensation Method for Vector-Controlled VSI Drives Based on Qorivva Family

Dead-Time Compensation Method for Vector-Controlled VSI Drives Based on Qorivva Family Freescale Semiconductor Document Number: AN4863 Application Note Rev 0, June Dead-Time Compensation Method for Vector-Controlled VSI Drives Based on Qorivva Family by: Petr Konvicny 1 Introduction One

More information

Using the High Voltage Physical Layer In the S12ZVM family By: Agustin Diaz

Using the High Voltage Physical Layer In the S12ZVM family By: Agustin Diaz Freescale Semiconductor, Inc. Document Number: AN5176 Application Note Rev. 1, 09/2015 Using the High Voltage Physical Layer In the S12ZVM family By: Agustin Diaz Contents 1. Introduction This application

More information

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET Preliminary Data Document Number: Order from RF Marketing Rev. 1.1, 09/2018 RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET This high ruggedness device is designed

More information

Reference Circuit Design for a SAR ADC in SoC

Reference Circuit Design for a SAR ADC in SoC Freescale Semiconductor Document Number: AN5032 Application Note Rev 0, 03/2015 Reference Circuit Design for a SAR ADC in SoC by: Siva M and Abhijan Chakravarty 1 Introduction A typical Analog-to-Digital

More information

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT Technical Data 2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT The MMZ25332B4 is a versatile 2--stage power amplifier targeted at driver and pre--driver applications for macro

More information

RF Power GaN Transistor

RF Power GaN Transistor Technical Data Document Number: A2G22S190--01S Rev. 0, 09/2018 RF Power GaN Transistor This 36 W RF power GaN transistor is designed for cellular base station applications covering the frequency range

More information

Hardware Design Considerations for MKW41Z/31Z/21Z BLE and IEEE Device

Hardware Design Considerations for MKW41Z/31Z/21Z BLE and IEEE Device NXP Semiconductors Document Number: AN5377 Application Note Rev. 2, Hardware Design Considerations for MKW41Z/31Z/21Z BLE and IEEE 802.15.4 Device 1. Introduction This application note describes Printed

More information

Optimizing Magnetic Sensor Power Operations for Low Data Rates

Optimizing Magnetic Sensor Power Operations for Low Data Rates Freescale Semiconductor Document Number: AN4984 Application Note Rev 0, 10/2014 Optimizing Magnetic Sensor Power Operations for Low Data Rates 1 Introduction The standard mode of operation of a magnetic

More information

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT Technical Data 2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT The MMZ27333B is a versatile 3--stage power amplifier targeted at driver and pre--driver applications for macro and

More information

Heterojunction Bipolar Transistor Technology (InGaP HBT) Broadband High Linearity Amplifier

Heterojunction Bipolar Transistor Technology (InGaP HBT) Broadband High Linearity Amplifier Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) Broadband High Linearity Amplifier The is a general purpose amplifier that is internally input prematched and designed for a broad

More information

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET Technical Data Document Number: Rev. 2, 11/2018 RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET Designed for handheld two--way radio applications with frequencies

More information

In-Depth Understanding of Water Tolerance Feature in Touch-Sensing Software Library

In-Depth Understanding of Water Tolerance Feature in Touch-Sensing Software Library Freescale Semiconductor Document Number: AN4781 Application Note Rev 0, 09/2013 In-Depth Understanding of Water Tolerance Feature in Touch-Sensing Software Library by: Eduardo Viramontes and Giuseppe Pia

More information

3.8 GHz Linear Power Amplifier and BTS Driver High Efficiency/Linearity Amplifier

3.8 GHz Linear Power Amplifier and BTS Driver High Efficiency/Linearity Amplifier Technical Data 3.8 GHz Linear Power Amplifier and BTS Driver High Efficiency/Linearity Amplifier The MMZ38333B is a 3--stage high linearity InGaP HBT broadband amplifier designed for small cells and LTE

More information

PN7150 Raspberry Pi SBC Kit Quick Start Guide

PN7150 Raspberry Pi SBC Kit Quick Start Guide Document information Info Content Keywords OM5578, PN7150, Raspberry Pi, NFC, P2P, Card Emulation, Linux, Windows IoT Abstract This document gives a description on how to get started with the OM5578 PN7150

More information

MPXM2051G, 0 to 50 kpa, Gauge Compensated Pressure Sensors

MPXM2051G, 0 to 50 kpa, Gauge Compensated Pressure Sensors Freescale Semiconductor Document Number: Data Sheet: Technical Data Rev. 3.0, 11/2015, 0 to 50 kpa, Gauge Compensated Pressure The device is a silicon piezoresistive pressure sensor providing a highly

More information

RF LDMOS Wideband Integrated Power Amplifiers

RF LDMOS Wideband Integrated Power Amplifiers Technical Data Document Number: A2I09VD050N Rev. 0, 09/2018 RF LDMOS Wideband Integrated Power Amplifiers The A2I09VD050N wideband integrated circuit is designed with on--chip matching that makes it usable

More information

RF Power GaN Transistor

RF Power GaN Transistor Technical Data Document Number: A2G26H281--04S Rev. 0, 9/2016 RF Power GaN Transistor This 50 W asymmetrical Doherty RF power GaN transistor is designed for cellular base station applications requiring

More information

Characteristic Symbol Value (2) Unit R JC 57 C/W

Characteristic Symbol Value (2) Unit R JC 57 C/W Freescale Semiconductor Technical Data BTS Driver Broadband Amplifier The is a general purpose amplifier that is internally input and output matched. It is designed for a broad range of Class A, small--signal,

More information

Enhancement Mode phemt

Enhancement Mode phemt Freescale Semiconductor Technical Data Enhancement Mode phemt Technology (E -phemt) High Linearity Amplifier The MMG15241H is a high dynamic range, low noise amplifier MMIC, housed in a SOT--89 standard

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Technical Data Document Number: A3T21H400W23S Rev. 0, 06/2018 RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET This 71 W asymmetrical Doherty RF power LDMOS transistor is designed

More information

Enhancement Mode phemt

Enhancement Mode phemt Freescale Semiconductor Technical Data Enhancement Mode phemt Technology (E -phemt) Low Noise Amplifier The MML09231H is a single--stage low noise amplifier (LNA) with active bias and high isolation for

More information

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET Technical Data RF Power LDMOS Transistor High Ruggedness N--Channel Enhancement--Mode Lateral MOSFET This high ruggedness device is designed for use in high VSWR industrial, scientific and medical applications

More information

RF LDMOS Wideband Integrated Power Amplifiers

RF LDMOS Wideband Integrated Power Amplifiers Technical Data Document Number: A3I35D012WN Rev. 0, 11/2018 RF LDMOS Wideband Integrated Power Amplifiers The A3I35D012WN wideband integrated circuit is designed for cellular base station applications

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Technical Data Document Number: A2T27S2N Rev. 1, 1/218 RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These 2.5 W RF power LDMOS transistors are designed for cellular base station

More information

Repetitive Short-circuit Performances

Repetitive Short-circuit Performances Freescale Semiconductor Application Note AN3959 Rev. 2.0, 6/2012 Repetitive Short-circuit Performances For the MC15XS3400D, MC35XS3400D, and MC10XS3435D 1 Introduction This application note relates the

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Technical Data Document Number: A3T21H456W23S Rev. 1, 08/2018 RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET This 87 W asymmetrical Doherty RF power LDMOS transistor is designed

More information

FRDM-KW41Z RF System Evaluation Report for BLE Applications

FRDM-KW41Z RF System Evaluation Report for BLE Applications NXP Semiconductors Document Number: AN12059 Application Note Rev. 1, 11/2017 FRDM-KW41Z RF System Evaluation Report for BLE Applications 1. Introduction This document provides the RF evaluation test results

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Preliminary Data Document Number: Order from RF Marketing Rev. 1.0, 09/2017 RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These 750 W CW transistors are designed for industrial,

More information

UG0640 User Guide Bayer Interpolation

UG0640 User Guide Bayer Interpolation UG0640 User Guide Bayer Interpolation Microsemi Headquarters One Enterprise, Aliso Viejo, CA 92656 USA Within the USA: +1 (800) 713-4113 Outside the USA: +1 (949) 380-6100 Sales: +1 (949) 380-6136 Fax:

More information

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier Freescale Semiconductor Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier The MMA25312B is a 2--stage high efficiency InGaP HBT driver amplifier

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Technical Data RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These RF power transistors are designed for pulse applications operating at 1030 to 1090 MHz and can be used over

More information

Freescale Semiconductor Data Sheet: Technical Data

Freescale Semiconductor Data Sheet: Technical Data Freescale Semiconductor Data Sheet: Technical Data Media Resistant and High Temperature Accuracy Integrated Silicon Sensor for Measuring Absolute, On-Chip Signal Conditioned, Temperature Compensated and

More information

MC33816 vs. PT Introduction. NXP Semiconductors Application Note. Document Number: AN5203 Rev. 1.0, 7/2016. Contents

MC33816 vs. PT Introduction. NXP Semiconductors Application Note. Document Number: AN5203 Rev. 1.0, 7/2016. Contents NXP Semiconductors Application Note Document Number: AN5203 Rev. 1.0, 7/2016 MC33816 vs. PT2000 Analog and software differences 1 Introduction MC33816 and PT2000 are programmable solenoid controllers used

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Freescale Semiconductor Technical Data RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET This 12.5 W CW high efficiency RF power transistor is designed for consumer and commercial cooking

More information

OM29110 NFC's SBC Interface Boards User Manual. Rev May

OM29110 NFC's SBC Interface Boards User Manual. Rev May Document information Info Content Keywords Abstract OM29110, NFC, Demo kit, Raspberry Pi, BeagleBone, Arduino This document is the user manual of the OM29110 NFC s SBC Interface Boards. Revision history

More information

UM DALI getting started guide. Document information

UM DALI getting started guide. Document information Rev. 1 6 March 2012 User manual Document information Info Keywords Abstract Content LPC111x, LPC1343, ARM, Cortex M0/M3, DALI, USB, lighting control, USB to DALI interface. This user manual explains how

More information

FRDM-KW36 Co-existence with RF System Evaluation Report for Bluetooth Low Energy Application

FRDM-KW36 Co-existence with RF System Evaluation Report for Bluetooth Low Energy Application NXP Semiconductors Document Number: AN12256 Application Note Rev. 0, 09/2018 FRDM-KW36 Co-existence with RF System Evaluation Report for Bluetooth Low Energy Application Contents 1. Introduction This document

More information

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier Freescale Semiconductor Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier The MMA312BV is a 2--stage high efficiency, Class AB InGaP HBT amplifier

More information

Enhancement Mode phemt

Enhancement Mode phemt Freescale Semiconductor Technical Data Enhancement Mode phemt Technology (E -phemt) Low Noise Amplifier The MML09212H is a 2--stage low noise amplifier (LNA) with active bias and high isolation for use

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Freescale Semiconductor Technical Data Document Number: Rev. 0, 7/2016 RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET This 220 W CW high efficiency RF power transistor is designed

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Technical Data Document Number: AFT7SN Rev. 5, /17 RF ower LDMOS Transistor N--Channel nhancement--mode Lateral MOSFT This. dbm RF power LDMOS transistor is designed for cellular base station applications

More information

RF Power GaN Transistor

RF Power GaN Transistor Technical Data Document Number: A3G35H100--04S Rev. 0, 05/2018 RF Power GaN Transistor This 14 W asymmetrical Doherty RF power GaN transistor is designed for cellular base station applications requiring

More information

Automated PMSM Parameter Identification

Automated PMSM Parameter Identification Freescale Semiconductor Document Number: AN4986 Application Note Rev 0, 10/2014 Automated PMSM Parameter Identification by: Josef Tkadlec 1 Introduction Advanced motor control techniques, such as the sensorless

More information

TED-Kit 2, Release Notes

TED-Kit 2, Release Notes TED-Kit 2 3.6.0 December 5th, 2014 Document Information Info Content Keywords TED-Kit 2, Abstract This document contains the release notes for the TED-Kit 2 software. Contact information For additional

More information

Driver or Pre -driver General Purpose Amplifier

Driver or Pre -driver General Purpose Amplifier Freescale Semiconductor Technical Data Driver or Pre -driver General Purpose Amplifier The MMG30271B is a 1/2 W, Class AB, high gain amplifier designed as a driver or pre--driver for cellular base station

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Technical Data RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These 750 W CW transistors are designed for industrial, scientific and medical (ISM) applications in the 700 to 1300

More information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information Rev. 1.0 1 February 2016 Application note COMPANY PUBLIC Document information Info Content Keywords NTAG I²C, NTAG I²C plus, Energy Harvesting Abstract Show influencing factors and optimization for energy

More information

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT

2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT Freescale Semiconductor Technical Data 2 W High Gain Power Amplifier for Cellular Infrastructure InGaP GaAs HBT The MMZ25333B is a versatile 3--stage power amplifier targeted at driver and pre--driver

More information

Advanced Doherty Alignment Module (ADAM)

Advanced Doherty Alignment Module (ADAM) Freescale Semiconductor Technical Data Advanced Doherty Alignment Module (ADAM) The MMDS2254 is an integrated module designed for use in base station transmitters in conjunction with high power Doherty

More information

FlexTimer and ADC Synchronization

FlexTimer and ADC Synchronization Freescale Semiconductor Application Note AN3731 Rev. 0, 06/2008 FlexTimer and ADC Synchronization How FlexTimer is Used to Synchronize PWM Reloading and Hardware ADC Triggering by: Eduardo Viramontes Systems

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Freescale Semiconductor Technical Data RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET RF power transistor suitable for industrial heating applications operating at 2450 MHz. Device

More information

The Frequency Divider component produces an output that is the clock input divided by the specified value.

The Frequency Divider component produces an output that is the clock input divided by the specified value. PSoC Creator Component Datasheet Frequency Divider 1.0 Features Divides a clock or arbitrary signal by a specified value. Enable and Reset inputs to control and align divided output. General Description

More information

RF Power Field Effect Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power Field Effect Transistors N--Channel Enhancement--Mode Lateral MOSFETs Technical Data RF Power Field Effect Transistors N--Channel Enhancement--Mode Lateral MOSFETs RF power transistors designed for CW and pulse applications operating at 1300 MHz. These devices are suitable

More information

VHF variable capacitance diode

VHF variable capacitance diode Rev. 1 25 March 2013 Product data sheet 1. Product profile 1.1 General description The is a variable capacitance diode, fabricated in planar technology, and encapsulated in the SOD323 (SC-76) very small

More information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information Rev. 1 30 November 2012 Technical note Document information Info Keywords Abstract Content LPC1800, LPC4300, MxMEMMAP, memory map This technical note describes available boot addresses for the LPC1800

More information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information PR533 USB stick - Evaluation board Document information Info Content Keywords PR533, CCID, USB Stick, Contactless Reader Abstract This application notes describes the PR533 evaluation board delivered in

More information

Low Voltage 1:18 Clock Distribution Chip

Low Voltage 1:18 Clock Distribution Chip Freescale Semiconductor Technical Data Low Voltage 1:18 Clock Distribution Chip The is a 1:18 low voltage clock distribution chip with 2.5 V or 3.3 V LVCMOS output capabilities. The device features the

More information

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract Rev. 1.0 06 October 2015 Report Document information Info Keywords Abstract Content LPC15xx, RTC, Crystal, Oscillator Characterization results of EPSON crystals with LPC15xx MHz and (RTC) 32.768 khz Oscillator.

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Technical Data RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These 350 W CW transistors are designed for industrial, scientific and medical (ISM) applications in the 700 to 1300

More information

EVERSPIN s New 2mm Exposed Pad DFN Package Meets Both SOIC-8 and DFN8 PCB Layouts

EVERSPIN s New 2mm Exposed Pad DFN Package Meets Both SOIC-8 and DFN8 PCB Layouts EVERSPIN s New 2mm Exposed Pad DFN Package Meets Both SOIC-8 and DFN8 PCB Layouts This Application Note is to inform Everspin customers that a new, DFN8 package with a 2mm bottom exposed pad has been added

More information

PN7150 BeagleBone Black SBC Kit Quick Start Guide

PN7150 BeagleBone Black SBC Kit Quick Start Guide Document information Info Content Keywords OM5578, PN7150, BeagleBone, NFC, P2P, Card Emulation, Linux, Android Abstract This document gives a description on how to get started with the OM5578 PN7150 NFC

More information

Characteristic Symbol Value (2) Unit R JC 92.0 C/W

Characteristic Symbol Value (2) Unit R JC 92.0 C/W Freescale Semiconductor Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) Broadband High Linearity Amplifier The is a general purpose amplifier that is internally input and output

More information

PN7120 NFC Controller SBC Kit User Manual

PN7120 NFC Controller SBC Kit User Manual Document information Info Content Keywords OM5577, PN7120, Demo kit, Raspberry Pi, BeagleBone Abstract This document is the user manual of the PN7120 NFC Controller SBC kit Revision history Rev Date Description

More information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information Rev. 1.0 8 February 2018 User manual 465010 COMPANY PUBLIC Document information Information Keywords Abstract Content NFC antenna, antenna kit, CLEV663B, CLRC663 plus, NFC Antenna Development Kit, OM29263ADK

More information

Using the Break Controller (BC) etpu Function Covers the MCF523x, MPC5500, and all etpu-equipped Devices

Using the Break Controller (BC) etpu Function Covers the MCF523x, MPC5500, and all etpu-equipped Devices Freescale Semiconductor Application Note Document Number: AN2845 Rev. 0, 04/2005 Using the Break Controller (BC) etpu Function Covers the MCF523x, MPC5500, and all etpu-equipped Devices by: Milan Brejl

More information

UM DALI getting started guide. Document information

UM DALI getting started guide. Document information Rev. 2 6 March 2013 User manual Document information Info Content Keywords LPC111x, LPC1343, ARM, Cortex M0/M3, DALI, USB, lighting control, USB to DALI interface. Abstract This user manual explains how

More information

ARCHIVED BY FREESCALE SEMICONDUCTOR, INC. 2005

ARCHIVED BY FREESCALE SEMICONDUCTOR, INC. 2005 nc. Application Note AN2414/D Rev. 0, 04/2003 MC9328MX1/MXL CMOS Signal Interface (CSI) Module Supplementary Information By Cliff Wong 1 Introduction.......... 1 2 Operation of FIFOs Clear........... 1

More information

BB Product profile. 2. Pinning information. 3. Ordering information. FM variable capacitance double diode. 1.1 General description

BB Product profile. 2. Pinning information. 3. Ordering information. FM variable capacitance double diode. 1.1 General description SOT23 Rev. 3 7 September 2011 Product data sheet 1. Product profile 1.1 General description The is a variable capacitance double diode with a common cathode, fabricated in silicon planar technology, and

More information

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier Freescale Semiconductor Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier The MMZ9312B is a 2--stage high efficiency, Class AB InGaP HBT amplifier

More information

Advances in Freescale Airfast RFICs Setting New Benchmarks in LDMOS for Macrocells through Small Cells

Advances in Freescale Airfast RFICs Setting New Benchmarks in LDMOS for Macrocells through Small Cells Freescale Semiconductor White Paper AIRFASTWBFWP Rev. 0, 5/2015 Advances in Freescale Airfast RFICs Setting New Benchmarks in LDMOS for Macrocells through Small Cells By: Margaret Szymanowski and Suhail

More information

MCF51EM256 Performance Assessment with Algorithms Used in Metering Applications Paulo Knirsch MSG IMM System and Applications

MCF51EM256 Performance Assessment with Algorithms Used in Metering Applications Paulo Knirsch MSG IMM System and Applications Freescale Semiconductor Application Note Document Number: AN3896 Rev. 0, 10/2009 MCF51EM256 Performance Assessment with Algorithms Used in Metering Applications by: Paulo Knirsch MSG IMM System and Applications

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Technical Data Document Number: A2T21S260W12N Rev. 0, 1/2017 RF ower LDMOS Transistor N--Channel nhancement--mode Lateral MOSFT This 56 W RF power LDMOS transistor is designed for cellular base station

More information

ARCHIVE INFORMATION. PCS Band RF Linear LDMOS Amplifier MHL Freescale Semiconductor. Technical Data MHL Rev. 4, 1/2005

ARCHIVE INFORMATION. PCS Band RF Linear LDMOS Amplifier MHL Freescale Semiconductor. Technical Data MHL Rev. 4, 1/2005 Technical Data Rev. 4, 1/25 Replaced by N. There are no form, fit or function changes with this part replacement. N suffix added to part number to indicate transition to lead-free terminations. PCS Band

More information

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier

Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier Freescale Semiconductor Technical Data Heterojunction Bipolar Transistor Technology (InGaP HBT) High Efficiency/Linearity Amplifier The MMZ9332B is a 2--stage, high linearity InGaP HBT broadband amplifier

More information

ADC Guide, Part 1 The Ideal ADC

ADC Guide, Part 1 The Ideal ADC ADC Guide, Part 1 The Ideal ADC By Sachin Gupta and Akshay Phatak, Cypress Semiconductor Analog to Digital Converters (ADCs) are one of the most commonly used blocks in embedded systems. Applications of

More information

AN4379 Application note

AN4379 Application note Application note SPC56L-Discovery Software examples Introduction This software package includes several firmware examples for SPC56L-Discovery Kit. These ready-to-run examples are provided to help the

More information

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9236MN. Freescale Semiconductor. Technical Data

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9236MN. Freescale Semiconductor. Technical Data Technical Data Cellular Band RF Linear LDMOS Amplifier Designed for ultra- linear amplifier applications in ohm systems operating in the cellular frequency band. A silicon FET Class A design provides outstanding

More information

Advanced Doherty Alignment Module (ADAM)

Advanced Doherty Alignment Module (ADAM) Freescale Semiconductor Technical Data Advanced Doherty Alignment Module (ADAM) The MMDS9254 is an integrated module designed for use in base station transmitters in conjunction with high power Doherty

More information

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9318. Freescale Semiconductor. Technical Data MHL9318. Rev.

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9318. Freescale Semiconductor. Technical Data MHL9318. Rev. Technical Data Rev. 3, 1/2005 Replaced by N. There are no form, fit or function changes with this part replacement. N suffix added to part number to indicate transition to lead-free terminations. Cellular

More information

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9838. Freescale Semiconductor. Technical Data MHL9838. Rev.

ARCHIVE INFORMATION. Cellular Band RF Linear LDMOS Amplifier MHL9838. Freescale Semiconductor. Technical Data MHL9838. Rev. Technical Data Rev. 4, 1/2005 Replaced by N. There are no form, fit or function changes with this part replacement. N suffix added to part number to indicate transition to lead-free terminations. Cellular

More information

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET

RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET Freescale Semiconductor Technical Data RF Power LDMOS Transistor N--Channel Enhancement--Mode Lateral MOSFET This 250 W CW RF power transistor is designed for consumer and commercial cooking applications

More information

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs

RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs Freescale Semiconductor Technical Data RF Power LDMOS Transistors N--Channel Enhancement--Mode Lateral MOSFETs These RF power transistors are designed for applications operating at frequencies between

More information