CodeWarrior Development Studio Processor Expert RTOS Adapter User Guide

Size: px
Start display at page:

Download "CodeWarrior Development Studio Processor Expert RTOS Adapter User Guide"

Transcription

1 CodeWarrior Development Studio Processor Expert RTOS Adapter User Guide Document Number: CWPEXRTUG Rev 10.6, 02/2014

2 2 Freescale Semiconductor, Inc.

3 Contents Section number Title Page Chapter 1 Introduction 1.1 RTOS component files RTOS adapter component properties RTOS component methods and events Relation between RTOS adapter component and RTOS adapter driver...8 Chapter 2 RTOS adapter driver 2.1 RTOS adapter driver properties RTOS adapter driver methods and events RTOS adapter driver subroutines Accessing RTOS adapter Naming convention Optional parameters Hosted properties in RTOS component RTOS adapter driver API Memory allocation RTOSAdap_genDriverMemoryAlloc Constraint Parameters arg_destptrbuffer arg_objtype opt_arg_errcode Optional parameters arg_globdefsthread opt_arg_memoryallocparams...13 Freescale Semiconductor, Inc. 3

4 Section number Title Page RTOSAdap_genDriverMemoryDealloc Parameters arg_ptrbuffer arg_objtype Interrupt Vector Table Handling RTOSAdap_genSetInterruptVector Parameters arg_intvectorproperty arg_isrfunctionname arg_isrparametertype arg_isrparametervalue opt_arg_oldisrsettings Optional parameter arg_globdefsthread RTOSAdap_genRestoreInterruptVector Parameters arg_intvectorproperty arg_oldisrsettings RTOSAdap_genISRSettingsVarDeclaration(arg_varName, opt_arg_comment) Parameters arg_varname opt_arg_comment RTOSAdap_genISRFunctionDefinitionOpen Parameters arg_intvectorproperty arg_isrfunctionname arg_isrparametertype arg_isrparametername RTOSAdap_genISRFunctionDefinitionClose Freescale Semiconductor, Inc.

5 Section number Title Page RTOSAdap_genISRFunctionDeclaration Parameters arg_intvectorproperty arg_isrfunctionname arg_isrparametertype arg_isrparametername Synchronization RTOSAdap_genCriticalSectionBegin Parameters opt_arg_genreentrantmethods Optional parameter RTOSAdap_genCriticalSectionEnd Includes and type definitions RTOSAdap_genRTOSTypeDefinitions() RTOSAdap_genRTOSDriverIncludes()...19 Chapter 3 RTOS development process 3.1 Creating new RTOS adapter component Creating new RTOS adapter driver Running new RTOS adapter...22 Freescale Semiconductor, Inc. 5

6 6 Freescale Semiconductor, Inc.

7 Chapter 1 Introduction RTOS adapter component is a standard operating system Processor Expert component used as a programming interface between Processor Expert logical device drivers and the target operating system. The primary role of RTOS adapter component is to provide appropriate code fragments to logical device drivers during a code generation process. This manual describes RTOS adapter component and RTOS adapter driver in detail. Table 1-1. Manual contents RTOS adapter driver RTOS development process Chapter Description Explains RTOS adapter driver and its properties, methods and events, subroutines, and API. Describes how to create a new RTOS adapter for new RTOS. 1.1 RTOS component files RTOS adapter component is added to the Processor Expert project using Component Selector. You can use Component Inspector view to configure the component. To modify the interface of the existing RTOS component or create a new RTOS component, use standard Component Wizard tool of Processor Expert (in basic version it is available in your installation of CodeWarrior). RTOS component is stored in the following files ($PE stands for the root directory of Processor Expert installation, the default directory structure is: Program Files/Freescale/ CodeWarrior/Processor Expert): $PE/beans/<RTOSComponentName>/*.* Contains the description of the component user interface (properties, methods, events) $PE/drivers/<RTOSComponentName>.src Freescale Semiconductor, Inc. 7

8 RTOS adapter component properties Refers to the branching script. It runs the proper RTOS component script type according to symbol DriverExtension value ( $PE/drivers/sw/<RTOSComponentName>.*) $PE/drivers/sw/<RTOSComponentName>.* Contains DRV, TST, TS2, and CHG scripts of RTOS component NOTE All the files and their structure are standard for Processor Expert technology. 1.2 RTOS adapter component properties The properties of RTOS adapter component are: RTOS version is checked against the supported list of RTOS versions. This property is exported to all components in the project. Other components can use this configuration to adapt to the generated code if it depends on RTOS version. Group of properties configuring RTOS adapter. These properties are propagated to the RTOS adapter. 1.3 RTOS component methods and events RTOS adapter component has no methods and events. 1.4 Relation between RTOS adapter component and RTOS adapter driver RTOS adapter driver is a special driver in Processor Expert, internally used in the code generation process to generate code fragments specific to the selected RTOS. RTOS adapter driver is not visible to the user (it is not listed within the project) except the configuration properties of RTOS adapter driver that are included within the group of properties of RTOS component. There is no difference between RTOS adapter component and RTOS adapter driver from the user perspective, but there is a difference from the Processor Expert perspective. Both RTOS adapter component and RTOS adapter driver act as one RTOS adapter. For details, see RTOS adapter driver topic. 8 Freescale Semiconductor, Inc.

9 Chapter 2 RTOS adapter driver RTOS adapter is a special driver in Processor Expert which is internally used in the code generation process to generate the constructions specific for the selected RTOS. The standard Processor Expert component generates the code based on its properties. Such code defines methods that can be called from the application code. RTOS adapter driver works in a different way. RTOS adapter driver does not define methods that can be called, but it provides methods (subroutines in Processor Expert) that can be called during a code generation process. RTOS adapter driver subroutines generate code fragments that are directly placed into the generated code of LDD components in the project. This chapter explains: RTOS adapter driver properties RTOS adapter driver methods and events RTOS adapter driver subroutines Accessing RTOS adapter 2.1 RTOS adapter driver properties RTOS adapter driver typically needs some configuration properties to implement RTOS functionalities on specific RTOS. Configuration properties of RTOS adapter driver are shown in a group in RTOS Adapter Component (user visible). There are no standard RTOS adapter properties (because it depends on possibilities of specific RTOS), but the following is a typical list of property types used: Overriding standard RTOS functions by user-defined implementations. The standard RTOS functions are used. For example, if there is a standard RTOS function for allocation of system memory, this function can be replaced by user-defined function (with same prototype). Providing design-time configurations to RTOS. Freescale Semiconductor, Inc. 9

10 RTOS adapter driver methods and events For example, some features of RTOS can be configured by C #define-s. RTOS adapter is able to configure such features. Such properties are simply propagated into the generated code that configures RTOS. Optimization choices. If some functionality is implemented in more ways, the configuration property can help to choose which implementation is the best from user perspective. Selecting which RTOS resources should be used for LDD components. You are allowed to choose a resource to be used by LDD layer implementation by selecting a configuration property. 2.2 RTOS adapter driver methods and events RTOS adapter does not generate any user-callable methods or events. It provides only code generation subroutines. 2.3 RTOS adapter driver subroutines Code generation subroutines are methods of RTOS adapter that are executed during code generation process. The result of a subroutine execution is a generation of code that performs the desired functionality during run time. The subroutines are implemented in Processor Expert macro language. The two types of RTOS adapter driver subroutines are: Routines specific for target RTOS - these are implemented in file $PE/drivers/SW/ RTOSAdaptor/<rtosName>_RTOSAdaptor.prg. Routines common to all RTOS adapters (typically providing a support for RTOS specific ones) are implemented in $PE/drivers/SW/RTOSAdaptor/Common_RTOSAdaptor.prg file. The API of both types of suboutines is documented directly in the source code in file $PE/ drivers/sw/rtosadaptor/common_rtosadaptor.prg. In the RTOS specific files, only implementation issues related to the respective RTOSes are documented. 10 Freescale Semiconductor, Inc.

11 2.4 Accessing RTOS adapter Chapter 2 RTOS adapter driver If a common LDD component needs to use RTOS adapter, it includes Common \RTOSAdaptor.prg. This includes common RTOS adapter subroutines and also a specific implementation of RTOS adapter for the selected RTOS in the project Naming convention All RTOS adapter subroutine names start with RTOSAdap_ prefix. Name prefix RTOSAdap_priv_ denotes a private subroutine (should not be used) Optional parameters There is a general concept of optional parameters of RTOS adapter subroutines. For some optional parameters, the default value by RTOSAdap_setDefaultParameter() subroutine can be specified (see documentation of each subroutine for which parameters this feature applies) Hosted properties in RTOS component The values of RTOS adapter properties defined in RTOS component are exported to macro-language global symbols by.ts2 file of RTOS component (file $PE/drivers/SW/ <rtosname>/<rtosname>.ts2). Then the exported values are available in global symbols for other LDD components. In both cases (export and usage,), the global symbols are not accessed directly but through RTOS adapter methods. Simple string-like properties are exported from RTOS component into RTOS adapter by RTOSAdap_publishRTOSProperty(). Reading of property values can be done by RTOSAdap_getRTOSProperty(). Property group for overriding the RTOS service calls is exported by RTOSAdap_defineRTOSFunction(). The configured function can be read by RTOSAdap_getRTOSFunction() RTOS adapter driver API The following is a list of RTOS adapter driver API. Freescale Semiconductor, Inc. 11

12 Accessing RTOS adapter Memory allocation RTOS adapter creates an abstraction of memory allocation system of RTOS. RTOS adapter can also implement static memory allocation if dynamic allocation is not available in the RTOS RTOSAdap_genDriverMemoryAlloc Generates code for dynamic memory allocation of object of type arg_objtype and stores the address of allocated object in arg_destptrbuffer. The allocated memory is suitable for direct usage in LDD driver code (paging, protection). If an allocation is not successful, statement arg_errcode will be executed. If dynamic allocation is not supported, the help static object is generated into thread arg_globdefsthread, and the address of such static object is stored in arg_destbufferptr Constraint The generated code cannot be executed within the run time cycle. The only allowed run time scenario is allocation - usage - deallocation (and possibly repeatedly). It is because of simulation of dynamic allocation Parameters arg_destptrbuffer An l-value expression to which the address of allocated object is assigned arg_objtype Type of the allocated object; NOT pointer to that type opt_arg_errcode Code which will be executed if the allocation fails. If run time detection of memory allocation failure is not enabled or supported by RTOS, the parameter is omitted Optional parameters If not specified (or empty), error handling is not generated. 12 Freescale Semiconductor, Inc.

13 arg_globdefsthread Chapter 2 RTOS adapter driver Name of the thread that has been already created by %THREAD CREATE. Specifies where the definition of help static object is generated if dynamic allocation is not supported opt_arg_memoryallocparams Optional memory allocation parameters. Specifies additional optional parameters in format <param1>=<value> <param2>=<value>.... Optional parameters ZERO - Allocates memory block and fill the memory by zero. UNCACHED - Allocates memory block in uncached area. ALIGN=<boundary> - Allocates memory block whose address is a multiple of <boundary> RTOSAdap_genDriverMemoryDealloc Generates a code fragment for dynamic memory de-allocation (if supported) of memory area at address arg_ptrbuffer. The object should be of type arg_objtype. If dynamic allocation is simulated by static allocation, it does nothing Parameters arg_ptrbuffer Expression which evaluates to the address to object to de-allocate arg_objtype Type of the object to de-allocate (NOT pointer to that type) Interrupt Vector Table Handling RTOS adapter provides an abstraction of settings of interrupt vectors. If RTOS provides dynamic reconfiguration of vector table, maps to this RTOS functionality. If vector table is static, Processor Expert can generate it according to the requests. There are also subroutines for generation of ISR function definition and declaration. Freescale Semiconductor, Inc. 13

14 Accessing RTOS adapter RTOSAdap_genSetInterruptVector Generates the code fragment which routes interrupt vector with name defined by arg_intvectorproperty component property to ISR function with name arg_isrfunctionname. The ISR function obtains an argument of type arg_isrparametertype. The value of such parameter is defined by arg_isrparametervalue. The previous settings of the interrupt vector (handling ISR function and ISR function argument value) are stored into arg_oldisrsettings. If run time allocation of ISR vectors is not available, ISR vector is allocated statically in the interrupt vector table generated by Processor Expert, and the parameter passed into the ISR function is transferred by help global variable; its definition is generated into thread arg_globdefsthread. The code generated by this subroutine and by RTOSAdap_genISRFunctionDefinition() must have access to this possibly generated global symbol. NOTE The generated code requires access to the interrupt vector index constants. See RTOSAdap_getInterruptVectorSymbol topic for details Parameters arg_intvectorproperty Name of the interrupt vector component property arg_isrfunctionname Name of the ISR function which will handle the interrupt vector. ISR function declaration/definition must be generated by proper RTOS adapter subroutines, RTOSAdap_genISRFunctionDefinition* and RTOSAdap_genISRFunctionDeclaration* arg_isrparametertype Type of the ISR function parameter passed into the ISR function arg_isrparametervalue Expression which evaluates to the value of type arg_isrparametertype. The value will be passed into ISR function as an argument opt_arg_oldisrsettings An l-value expression to which the previous settings of interrupt vector are saved. The definition of such object should be generated by RTOSAdap_genISRSettingsVarDeclaration(). 14 Freescale Semiconductor, Inc.

15 Chapter 2 RTOS adapter driver Optional parameter If not specified, old vector settings are not saved arg_globdefsthread Name of the generation thread created by %THREAD CREATE. Specifies where a global variable definition should be generated if run time installation of ISR vectors is not available RTOSAdap_genRestoreInterruptVector Generates the code which restores the settings of the interrupt vector (handling ISR function and ISR function argument value) with name defined by arg_intvectorproperty component property to the state specified by arg_oldisrsettings. NOTE The generated code requires access to the interrupt vector index constants. Refer RTOSAdap_getInterruptVectorSymbol and RTOSAdap_genSetInterruptVector() for details Parameters arg_intvectorproperty Name of the interrupt vector component property arg_oldisrsettings Expression evaluating to the settings to which the interrupt vector. The definition of such object should be generated by RTOSAdap_genISRSettingsVarDeclaration() RTOSAdap_genISRSettingsVarDeclaration(arg_varName, opt_arg_comment) Generates the C declaration of object storing the settings of ISR vector (handling ISR function and ISR function argument value). If generated inside C function body, it results into definition of automatic variable with name arg_varname. If generated inside C structure definition, it results into declaration of structure member with name arg_varname. If generated outside any function definition, it results into definition of global variable with name arg_varname. Freescale Semiconductor, Inc. 15

16 Accessing RTOS adapter Parameters arg_varname Name of the variable/struct member to declare opt_arg_comment Optional comment for the declaration RTOSAdap_genISRFunctionDefinitionOpen Generates the definition of C function named arg_isrfunctionname that can be used as an ISR function for interrupt vector with name defined by arg_intvectorproperty component property. Generates also opening { of the function body and also (if needed) RTOS specific ISR prolog (saving registers, handling stack pointer). The symbol arg_isrparametername of type arg_isrparametertype can be used inside the function body. This symbol contains the value defined during installation of the ISR function. NOTE The code generated by this subroutine must have access to the possibly generated global symbol by RTOSAdap_genSetInterruptVector(). NOTE There can be some RTOS specific limitations to arg_isrparametertype type. See documentation of concrete RTOS adapter for details. NOTE To generate ISR epilog and closing }, use RTOSAdap_genISRFunctionDefinitionClose() Parameters arg_intvectorproperty Name of the interrupt vector defined arg_isrfunctionname component property which can be handled by the ISR function arg_isrfunctionname Name of the C function to define. 16 Freescale Semiconductor, Inc.

17 Chapter 2 RTOS adapter driver arg_isrparametertype Type of the parameter passed into the ISR function arg_isrparametername Name of the parameter passed into the ISR function. This name can be used within the function body to access the value defined during ISR function installation. The parameter evaluates to arg_isrparametertype RTOSAdap_genISRFunctionDefinitionClose Pair subroutine to RTOSAdap_genISRFunctionDefinitionClose() RTOSAdap_genISRFunctionDeclaration Generates the declaration of C function arg_isrfunctionname that can be used as an ISR function for interrupt vector with name defined by arg_intvectorproperty component property. NOTE There can be some RTOS specific limitations to arg_isrparametertype type. See documentation of concrete RTOS adapter for details. NOTE To generate ISR epilog and closing }, use RTOSAdap_genISRFunctionDefinitionClose() Parameters arg_intvectorproperty Name of the interrupt vector defined arg_isrfunctionname component property that can be handled by the ISR function arg_isrfunctionname Name of the C function to declare. Freescale Semiconductor, Inc. 17

18 Accessing RTOS adapter arg_isrparametertype Type of the parameter passed into the ISR function arg_isrparametername Name of the parameter passed into the ISR function; only declaration is generated, so the parameter name is only for information Synchronization There is supported generation of two basic synchronization constructions - methods reentrancy (monitor) and critical sections (interrupts disable/enable) RTOSAdap_genCriticalSectionBegin Generates the code for entering the critical section. All code inside the critical section is protected against interrupting by any interrupt. It is typically implemented as disabling of interrupts. NOTE If reentrancy of methods (see RTOSAdap_genReentrantMethodBegin()) is handled by disabling interrupts, and if methods are required to be reentrant, code may not be generated. The generated code must be in pair with the code generated by RTOSAdap_genCriticalSectionEnd(). The critical section must always be dynamically nested within the code generated by RTOSAdap_genReentrantMethodBegin()/ End() (even if reentrant methods are not required). NOTE It is supported that critical sections can be dynamically nested. For example, a method can be called containing critical section from different critical section Parameters opt_arg_genreentrantmethods Contains 'yes' or 'no' if reentrant methods are or are not required for the current LDD component. It is used only if generation of critical sections can be optimized for this parameter. 18 Freescale Semiconductor, Inc.

19 Chapter 2 RTOS adapter driver Optional parameter If not specified, a default value specified by RTOSAdap_setDefaultParameter() is used RTOSAdap_genCriticalSectionEnd Pair subroutine to RTOSAdap_genCriticalSectionBegin() Includes and type definitions Code generated by RTOS adapter requires some includes and type definitions to be placed into the code, so subroutines are available to generate them RTOSAdap_genRTOSTypeDefinitions() Generates the definitions of RTOS specific types (types with name LDD_RTOS_*). This type should be declared in (or included into) every module where any code generated by the RTOS adapter is used RTOSAdap_genRTOSDriverIncludes() Generates proper #includes to access RTOS driver's API. It is necessary to process these includes before code generated by RTOSAdap_genDriverInstallationsFunctionDefinition() occurs. Freescale Semiconductor, Inc. 19

20 Accessing RTOS adapter 20 Freescale Semiconductor, Inc.

21 Chapter 3 RTOS development process This chapter describes how to create a new RTOS adapter for new RTOS. This chapter explains: Creating new RTOS adapter component Creating new RTOS adapter driver Running new RTOS adapter 3.1 Creating new RTOS adapter component To create a new RTOS component: 1. Use Component Wizard tool to create a new RTOS adapter component. a. Create a new component. b. Fill the short hint, author name, and change the icon (optional). c. Select component category SW Operating System. 2. Add one property of RTOS component (optional) Select the property of type Enumeration for selecting the version of RTOS. This property is optional. 3. Remove the existing RTOS adapter group containing properties to select between RTOS native or user-defined functions to enter/exit into/from a critical section. 4. Add configuration properties of new RTOS adapter. These properties are all RTOS specific. 5. Add calls of export/publish subroutines to the.ts2 file of the RTOS components to export/publish all RTOS adapter properties. For details, see Hosted properties in RTOS component topic. 6. There is a limitation of current Component Wizard distributed with CodeWarrior. As a workaround for this, open bean XML file of RTOS Component located at: $PE/ beans/<rtosname>.bean1 and add <OperatingSystemId>XXX</OperatingSystemId> to the / <Options> new child XML element. Replace XXX with the name of RTOS. Freescale Semiconductor, Inc. 21

22 Creating new RTOS adapter driver NOTE On Windows Vista, the bean file can be created at $SystemDrive/Program Data/Processor Expert/CW/beans/ <rtosname>.bean depending on the permissions on the Program Files directory. 3.2 Creating new RTOS adapter driver The RTOS adapter implementation is stored in a file <OperatingSystemId>_RTOSAdap.prg located at: $PE/drivers/SW/RTOSAdaptor/. To create a new RTOS adapter driver: 1. Create RTOS adapter driver implementation file manually or by copying already existing RTOS adapter driver. For example, Bareboard_RTOSAdaptor.prg. 2. Implement all subroutines required by $PE/drivers/SW/RTOSAdaptor/Common_RTOSAdap.prg file according to the RTOS adapter subroutines documentation (see Accessing RTOS adapter topic for details). To access the RTOS adapter property values, use common RTOS adapter subroutines for getting exported/published parameters (see Hosted properties in RTOS component topic for details). 3.3 Running new RTOS adapter 1. Create a new Processor Expert project or a CodeWarrior project using Processor Expert. 2. Add a new RTOS adapter component. This automatically selects RTOS adapter driver. All LDD components in the project will use new RTOS adapter to generate the code. 22 Freescale Semiconductor, Inc.

23 How to Reach Us: Home Page: freescale.com Web Support: freescale.com/support Information in this document is provided solely to enable system and software implementers to use Freescale 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. Freescale reserves the right to make changes without further notice to any products herein. Freescale makes no warranty, representation, or guarantee regarding the suitability of its products for any particular purpose, nor does Freescale 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 Freescale 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. Freescale does not convey any license under its patent rights nor the rights of others. Freescale sells products pursuant to standard terms and conditions of sale, which can be found at the following address: freescale.com/salestermsandconditions. Freescale, the Freescale logo, CodeWarrior, and Processor Expert are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. All other product or service names are the property of their respective owners Freescale Semiconductor, Inc. Document Number CWPEXRTUG Revision 10.6, 02/2014

DDR Validation Tool Getting Started Guide

DDR Validation Tool Getting Started Guide DDR Validation Tool Getting Started Guide Document Number: QCVSDDRVGETSTARTUG Rev 4.1, 10/2014 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Getting Started with DDR Validation

More information

General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices

General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices Freescale Semiconductor Document Number: AN2864 Application Note Rev. 2, 09/2015 General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices by:

More information

Adding a run control interface into an existing CodeWarrior for MCU v10.x project

Adding a run control interface into an existing CodeWarrior for MCU v10.x project Freescale Semiconductor Document Number:AN4902 Application Note Rev 03/2014 Adding a run control interface into an existing CodeWarrior for MCU v10.x project 1 Introduction There are two ways to add a

More information

How to setup pre-build steps in CodeWarrior for Microcontrollers v10.x

How to setup pre-build steps in CodeWarrior for Microcontrollers v10.x Freescale Semiconductor Application Note Document Number: AN4910 How to setup pre-build steps in CodeWarrior for Microcontrollers v10.x 1. Introduction This document outlines the steps for setting up userdefined

More information

Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE

Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE Freescale Semiconductor, Inc. Document Number: KSDKGSKDSUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE 1 Overview This section describes

More information

Component Development Environment Getting Started Guide

Component Development Environment Getting Started Guide Component Development Environment Getting Started Guide Document Number: CDEGS Rev 02/2014 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction 1.1 Overview...5 1.2

More information

Working around ERR7026 according to application needs

Working around ERR7026 according to application needs Freescale Semiconductor Document Number: EB795 Engineering Bulletin Rev. 0, 08/2013 Working around ERR7026 according to application needs by: Automotive and Industrial Solutions Group 1 Introduction This

More information

FRDM-K64F Board Errata

FRDM-K64F Board Errata Freescale Semiconductor, Inc. Document Number: FRDMK64F_ERRATA Board Errata Rev. 2.0, 06/2014 FRDM-K64F Board Errata by: Freescale Semiconductor, Inc. 2014 Freescale Semiconductor, Inc. 1 Errata Title:

More information

Processor Expert Software for i.mx Processors Version 1.0

Processor Expert Software for i.mx Processors Version 1.0 Release Notes Processor Expert Software for i.mx Processors Version 1.0 1 Overview Processor Expert Software for i.mx processors is a suite of configuration tools for i.mx family processors. This file

More information

Building U-Boot in CodeWarrior ARMv8

Building U-Boot in CodeWarrior ARMv8 NXP Semiconductors Document Number: AN5347 Application Note Rev. 0, 10/2016 Building U-Boot in CodeWarrior ARMv8 1 Introduction This application note defines guidelines for configuring CodeWarrior for

More information

Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil

Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil Freescale Semiconductor, Inc. Document Number: KSDKGSKEILUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil µvision5 1 Read Me First This document

More information

Collecting Linux Trace without using CodeWarrior

Collecting Linux Trace without using CodeWarrior Freescale Semiconductor Application Note Document Number: AN5001 Collecting Linux Trace without using CodeWarrior 1. Introduction This document guides you how to collect Linux trace directly from QDS or

More information

i.mx 6Solo/6DualLite Product Lifetime Usage Estimates

i.mx 6Solo/6DualLite Product Lifetime Usage Estimates Freescale Semiconductor, Inc. Application Note Document Number: AN4725 Rev. 2, 02/2015 i.mx 6Solo/6DualLite Product Lifetime Usage Estimates This document describes the estimated product lifetimes for

More information

Watt Saver Software Component (WSC)

Watt Saver Software Component (WSC) Freescale Semiconductor Document Number:WSSCUG User Guide Rev 1, 10/2013 Watt Saver Software Component (WSC) 1 Introduction This document describes the basic steps for getting started with the Watt Saver

More information

CodeWarrior Development Studio for StarCore 3900FP DSP v SP3 Release Notes

CodeWarrior Development Studio for StarCore 3900FP DSP v SP3 Release Notes Freescale Semiconductor Document Number: CW_SC_3900FP_v10.8.3 SP3 Release Notes Rev. 1.0, 11/2015 CodeWarrior Development Studio for StarCore 3900FP DSP v10.8.3 SP3 Release Notes Release Description ServicePack3

More information

i.mx 6 Android JB 4.3_1.1.1 Patch Release Notes

i.mx 6 Android JB 4.3_1.1.1 Patch Release Notes Freescale Semiconductor, Inc. Document Number: IMX6JBPATCHRN Release Notes Rev. JB 4.3_1.1.1, 10/2014 i.mx 6 Android JB 4.3_1.1.1 Patch Release Notes 1 Overview This patch release is based on the i.mx

More information

Intelligent Sensing Framework 2.1 for Kinetis Errata Sheet

Intelligent Sensing Framework 2.1 for Kinetis Errata Sheet Document Number: ISF2P1_KINETIS_ER ERRATA SHEET Rev. 1, 4/2015 Intelligent Sensing Framework 2.1 for Kinetis Errata Sheet The following errata sheet covers changes to the Freescale Intelligent Sensing

More information

Configuring DDR in U-Boot using QCVS

Configuring DDR in U-Boot using QCVS NXP Semiconductors Application Note Document Number: AN5279 Configuring DDR in U-Boot using QCVS 1. Introduction This document describes how to configure the double data rate (DDR) memory in U-Boot, running

More information

Single Chip Module (SCM) Package-on- Package (PoP) Assembly Guide

Single Chip Module (SCM) Package-on- Package (PoP) Assembly Guide Freescale Semiconductor, Inc. Document Number: AN5247 Application Notes Rev. 0, 01/2016 Single Chip Module (SCM) Package-on- Package (PoP) Assembly Guide 1. Introduction Freescale Single Chip Modules (SCM)

More information

Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform

Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform Freescale Semiconductor, Inc. Application Note Document Number: AN5069 Rev. 0, 01/2015 Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform 1 Introduction This application note describes

More information

MMPF0100 Errata for Mask 1N47F and 1N18J

MMPF0100 Errata for Mask 1N47F and 1N18J Freescale Semiconductor Errata (or Chip Errata) Document Number: MMER Rev. 5.0, 4/2014 MM Errata for Mask 1N47F and 1N18J Introduction Device Revision Identification This errata document applies to the

More information

MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform

MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform Freescale Semiconductor Document Number: MQXKSDK120KL33RN Release Notes Rev. 0, 4/2015 MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform 1

More information

Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC

Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC Freescale Semiconductor, Inc. Document Number: KSDKGSARMGCCUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC 1 Overview This section describes the steps

More information

Generating a Quick and Controlled Waveform With the DAC

Generating a Quick and Controlled Waveform With the DAC Freescale Semiconductor Document Number: AN4978 Application Note Rev 0, 08/2014 Generating a Quick and Controlled Waveform With the DAC by: Arpita Agarwal 1 Overview This application note describes how

More information

TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools

TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools Freescale Semiconductor User s Guide Doc Number: TWRKV10Z32CWUG Rev. 0.1, 01/2014 TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools by Freescale Semiconductor,

More information

Freedom FRDM-MC-LVBLDC Development Platform User s Guide

Freedom FRDM-MC-LVBLDC Development Platform User s Guide Freescale Semiconductor, Inc. Document Number: FRDMLVBLDCUG User's Guide 0, 02/2016 Freedom FRDM-MC-LVBLDC Development Platform User s Guide 1. Introduction The Freedom development platform is a set of

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

Using an External GCC Toolchain with CodeWarrior for Power Architecture

Using an External GCC Toolchain with CodeWarrior for Power Architecture Freescale Semiconductor Application Note Document Number: AN5277 Using an External GCC Toolchain with CodeWarrior for Power Architecture 1. Introduction This document explains how to use an external GNU

More information

Using DMA for Pulse Counting on S32K

Using DMA for Pulse Counting on S32K Freescale Semiconductor, Inc. Document Number: AN5258 Application Note Rev. 0, 02/2016 Using DMA for Pulse Counting on S32K 1. Introduction This application note describes pulse counting on the S32K product

More information

Getting Started with Pins Tool User's Guide

Getting Started with Pins Tool User's Guide Getting Started with Pins Tool User's Guide Document Number: PINSGS Rev. 0, 05/2016 2 NXP Semiconductors Contents Section number Title Page Chapter 1 Introduction 1.1 Features...5 1.2 Conventions... 6

More information

Getting Started with MQX RTOS for Kinetis SDK

Getting Started with MQX RTOS for Kinetis SDK Freescale Semiconductor Document Number: MQXKSDKGSUG User's Guide Rev. 1, 04/2015 Getting Started with MQX RTOS for Kinetis SDK 1 Introduction This document describes the steps required to configure supported

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

New VLE Instructions for Improving Interrupt Handler Efficiency Robert Moran Applications Engineer Microcontroller Solutions Group

New VLE Instructions for Improving Interrupt Handler Efficiency Robert Moran Applications Engineer Microcontroller Solutions Group Freescale Semiconductor Engineering Bulletin Document Number: EB696 Rev. 0, 07/2008 New VLE Instructions for Improving Interrupt Handler Efficiency by: Robert Moran Applications Engineer Microcontroller

More information

Quick Start Guide for FRDM-FXS-MULTI-B

Quick Start Guide for FRDM-FXS-MULTI-B Quick Start Guide for FRDM-FXS-MULTI-B Contents: Quick Start Package Overview Get to Know the FRDM-FXS-MULTI-B Getting Started Out of the Box Explore Further freescale.com/frdm-multi-b External Use FRDMFXSMULTIBQSG

More information

AIOP Task Aware Debug

AIOP Task Aware Debug Freescale Semiconductor Document Number: AN5044 Application Note Rev. 05/2015 AIOP Task Aware Debug 1 Introduction This document describes the how to debug the AIOP tasks. It also describes the AIOP task

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

HVP-KV10Z32 User s Guide

HVP-KV10Z32 User s Guide Freescale Semiconductor, Inc. User s Guide Document Number: HVPKV10Z32UG Rev. 0, 12/2014 HVP-KV10Z32 User s Guide by: Ivan Lovas 1 High voltage controller card HVP-KV10Z32 This document supports the HVP-MC3PH

More information

MQX RTOS Release Notes for Kinetis SDK FRDM- KV10Z Freescale Freedom Development Platform

MQX RTOS Release Notes for Kinetis SDK FRDM- KV10Z Freescale Freedom Development Platform Freescale Semiconductor Document Number: MQXKSDK120KV10RN Release Notes Rev. 0, MQX RTOS Release Notes for Kinetis SDK 1.2.0 FRDM- KV10Z Freescale Freedom Development Platform 1 Overview These are the

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

TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools

TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools Freescale Semiconductor User s Guide Doc Number: TWRKV10Z32IARUG Rev. 0.1, 01/2014 TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools by Freescale Semiconductor,

More information

Kinetis Updater User's Guide

Kinetis Updater User's Guide Freescale Semiconductor Document Number: KUPDTRUG User's Guide Rev. 1, 07/2015 Kinetis Updater User's Guide 1 Introduction The Kinetis Updater is a Windows OS application used to write user application

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

P1010RDB-PB Quick Start Guide

P1010RDB-PB Quick Start Guide Freescale Semiconductor P1010RDB-PB Quick Start Guide Document Number: P1010RDBPBQS Rev. 0, 10/2013 P1010RDB-PB Quick Start Guide 1 Introduction to P1010RDB-PB This quick start guide applies to boards

More information

PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide

PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide Freescale Semiconductor Document Number: PMSMUG User Guide Rev. 0, 06/2013 PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide by: Pavel Rech 1 Introduction The application described

More information

Freescale MQX USB Stack for TWR-K24F120M GA User s Guide

Freescale MQX USB Stack for TWR-K24F120M GA User s Guide Freescale Semiconductor Document Number: USBTWRK24F120MUG User s Guide Rev. 1.0, 08/2014 Freescale MQX USB Stack for TWR-K24F120M GA User s Guide 1 Read Me First This document describes how to compile

More information

Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module

Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module Freescale Semiconductor Document Number: KSDKK24FN256RN Release Notes 1.0.0, 08/2014 Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module 1 Overview These are the release notes for the TWR-K24F120M

More information

Freescale MKW40Z IEEE Software Quick Start Guide

Freescale MKW40Z IEEE Software Quick Start Guide Freescale Semiconductor, Inc. Document Number: MKW40Z802154SW523QSG User's Guide Rev. 0, 09/2015 Freescale MKW40Z IEEE 802.15.4 Software Quick Start Guide This document is a brief presentation of the Freescale

More information

HVP-KV31F120M User s Guide

HVP-KV31F120M User s Guide Freescale Semiconductor, Inc. User s Guide Document Number: HVPKV31F120MUG Rev. 0, 12/2014 HVP-KV31F120M User s Guide by: Ivan Lovas 1 High voltage controller card HVP-KV31F120M This document supports

More information

Getting Started with MCUXpresso SDK CMSIS Packs

Getting Started with MCUXpresso SDK CMSIS Packs NXP Semiconductors Document Number: MCUXSDKPACKSGSUG User's Guide Rev. 1, 11/2017 Getting Started with MCUXpresso SDK CMSIS Packs 1 Introduction The MCUXpresso Software Development Kit (SDK) is a comprehensive

More information

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128 The industry s most complete solution for portable medical applications TOWER SYSTEM Get to Know the TWR-S08MM128-KIT BDM Interface for MC9S08MM128

More information

TWR-LS1021A Getting Started

TWR-LS1021A Getting Started Freescale Semiconductor Getting Started Document Number: TWR-LS1021AGS Rev. 3, 10/2015 TWR-LS1021A Getting Started 1 Introduction This document describes how to connect the QorIQ LS1021A Tower System Module

More information

Getting Started with the MCU Flashloader

Getting Started with the MCU Flashloader NXP Semiconductors Document Number: MBOOTFLASHGS User's Guide Rev 3, 05/2018 Getting Started with the MCU Flashloader Contents Contents Chapter 1 Introduction...3 Chapter 2 Overview...4 2.1 MCU flashloader...4

More information

Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler

Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler Freescale Semiconductor, Inc. Document Number: AN5163 Application Note Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler 1. Introduction This document provides guidance

More information

i.mx 6UltraLite Product Usage Lifetime Estimates

i.mx 6UltraLite Product Usage Lifetime Estimates NXP Semiconductors Document Number: AN5198 Application Notes Rev. 2, 08/2016 i.mx 6UltraLite Product Usage Lifetime Estimates 1. Introduction This document describes the estimated product lifetimes for

More information

i.mx 6ULL Product Usage Lifetime Estimates

i.mx 6ULL Product Usage Lifetime Estimates NXP Semiconductors Document Number: AN5337 Application Note Rev. 1, 03/2017 i.mx 6ULL Product Usage Lifetime Estimates 1. Introduction This document describes the estimated product lifetimes for the i.mx

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

HVP-MC56F82748 User s Guide

HVP-MC56F82748 User s Guide Freescale Semiconductor, Inc. User s Guide Document Number: HVPMC56F82748UG Rev. 0, 12/2014 HVP-MC56F82748 User s Guide by: Ivan Lovas 1 High voltage controller cards overview This document supports the

More information

Quick Start Guide for FRDM-KL05Z

Quick Start Guide for FRDM-KL05Z Quick Start Guide for FRDM-KL05Z Contents: Quick Start Package Overview Get to Know the FRDM-KL05Z Getting Started Out of the Box Introduction to OpenSDA Explore Further www.freescale.com/frdm-kl05z 1

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

Freescale MQX USB Device API Reference Manual

Freescale MQX USB Device API Reference Manual Freescale MQX USB Device API Reference Manual MQXUSBDEVRM Rev. 3 02/2014 How to Reach Us: Home Page: freescale.com Web Support: freescale.com/support Information in this document is provided solely to

More information

TWR-LS1021A Getting Started

TWR-LS1021A Getting Started Freescale Semiconductor Getting Started Document Number: TWR-LS1021AGS Rev. 0, 09/2014 TWR-LS1021A Getting Started 1 Introduction This document explains how to connect the QorIQ LS1021A Tower System Module

More information

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network Freescale Semiconductor, Inc. Document Number: AN5204 Application Note Rev. 0, 01/2016 Kinetis Bootloader to Update Multiple Devices in a Field Bus Network 1. Introduction This application note describes

More information

Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide

Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide NXP Semiconductors Document Number: MKW41ZSNIFFERQSG User's Guide Rev. 2, 09/2016 Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide This document describes the usage of the USB- KW41Z evaluation

More information

Emulating Dual SPI Using FlexIO

Emulating Dual SPI Using FlexIO Freescale Semiconductor, Inc. Document Number: AN5242 Application Note Rev. 0, 01/2016 Emulating Dual SPI Using FlexIO 1. Introduction This application note discusses one example of how to use FlexIO module

More information

Kinetis SDK v Release Notes for KV5x Derivatives

Kinetis SDK v Release Notes for KV5x Derivatives Freescale Semiconductor, Inc. Document Number: KSDK120MKV5XRN Release Notes Rev. 0, 08/2015 Kinetis SDK v.1.2.0 Release Notes for KV5x Derivatives 1 Overview These are the release notes for the Freescale

More information

NADK Reflector Application Debug

NADK Reflector Application Debug Freescale Semiconductor Document Number: AN4940 Application Note Rev. 11.2, 01/2016 NADK Reflector Application Debug 1 Introduction The most popular user space application for SDK/NADK usage is the packet

More information

i.mx 7 Dual/Solo Product Lifetime Usage

i.mx 7 Dual/Solo Product Lifetime Usage NXP Semiconductors Document Number: AN5334 Application Note Rev. 1, 05/2017 i.mx 7 Dual/Solo Product Lifetime Usage 1. Introduction This document describes the estimated product lifetimes for the i.mx

More information

QCVS Frame Distributor Wizard User Guide

QCVS Frame Distributor Wizard User Guide QCVS Frame Distributor Wizard User Guide Document Number: QCVSFDWUG Rev. 4.3, 07/2015 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Frame Distributor Wizard 1.1 Introduction...5

More information

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide Freescale Semiconductor, Inc. KSDKKL03UG User s Guide Rev. 1.0.0, 09/2014 Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide 1 Introduction This document describes the hardware and software

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

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

OpenSDA on TWR-KW2x. User s Guide Rev 1.1

OpenSDA on TWR-KW2x. User s Guide Rev 1.1 OpenSDA on TWR-KW2x User s Guide 2013 Rev 1.1 Freescale, Inc. TKW2x_OSDAUG Table of Contents 1 Overview...3 1.1 OpenSDA Hardware...4 1.2 OpenSDA Software...4 1.2.1 MSD Bootloader...4 1.2.2 P&E Debug Application...5

More information

Using an FFT on the Sigma-Delta ADCs

Using an FFT on the Sigma-Delta ADCs Freescale Semiconductor Application Note Documents Number: AN4847 Rev.0, 12/2013 Using an FFT on the Sigma-Delta ADCs by: Luděk Šlosarčík 1 Introduction This application note deals with two topics in digital

More information

i.mx 6 Yocto Project Patch Release Notes

i.mx 6 Yocto Project Patch Release Notes Freescale Semiconductor Document Number: IMX6YOCTOPATCHRN Release Notes Rev. L3.10.17_1.0.3, 10/2015 i.mx 6 Yocto Project Patch Release Notes 1 Release Purpose The purpose of this patch release is to provide

More information

Freescale Kinetis Software Development Kit Release Notes

Freescale Kinetis Software Development Kit Release Notes Freescale Semiconductor, Inc. Document Number: KSDKRN Release Notes Rev. 1.0.0, 07/2014 Freescale Kinetis Software Development Kit Release Notes 1 Overview These are the release notes for the Freescale

More information

QCVS Hardware Device Tree Editor User Guide

QCVS Hardware Device Tree Editor User Guide NXP Semiconductors Document Number: QCVS_HWDT_User_Guide User's Guide Rev. 4.x, 05/2016 QCVS User Guide Contents Contents Chapter 1...3 1.1 Introduction... 3 1.2 Using... 3 1.2.1 Create a new project...

More information

Mask Set Errata for Mask 0N22G

Mask Set Errata for Mask 0N22G Freescale Semiconductor MSE9S12ZVL_0N22G Mask Set Errata Rev 29 SEP 2014 Mask Set Errata for Mask 0N22G This report applies to mask 0N22G for these products: MSE9S12ZVL ID before 15 MAY 2008 ID from 15

More information

i.mxrt1050 Product Lifetime Usage Estimates

i.mxrt1050 Product Lifetime Usage Estimates NXP Semiconductors Document Number: AN12170 Application Note Rev. 0, 04/2018 i.mxrt1050 Product Lifetime Usage Estimates 1. Introduction This document describes the estimated product lifetimes for the

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

Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z

Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z External Use Contents ts Quick Start Package Overview GettoKnowtheFRDMKL43Z to the FRDM-KL43Z Getting Started Out of the Box

More information

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core,

More information

Three-Phase Power Meter Hardware Design Reference Manual

Three-Phase Power Meter Hardware Design Reference Manual Freescale Semiconductor, Inc. Document Number: DRM146 Design Reference Manual Rev. 0, 03/2014 Three-Phase Power Meter Hardware Design Reference Manual by: Albert Chen and Shawn Shi 1 Overview Freescale

More information

Understanding S08P Internal Clock Source

Understanding S08P Internal Clock Source Freescale Semiconductor Application Note Document Number: AN4763 Rev. 0, 8/2013 Understanding S08P Internal Clock Source By: William Jiang 1 Introduction The S08P family integrates an internal clock source

More information

Kinetis SDK v Release Notes for the MK21DA5 and MKW24D5 Devices

Kinetis SDK v Release Notes for the MK21DA5 and MKW24D5 Devices Freescale Semiconductor, Inc. Document Number: KSDK110MK21DA5MKW24D5RN Release Notes Rev. 0, 02/2015 Kinetis SDK v.1.1.0 Release Notes for the MK21DA5 and MKW24D5 Devices 1 Overview These are the release

More information

KIT33972AEWEVBE Evaluation Board

KIT33972AEWEVBE Evaluation Board Freescale Semiconductor, Inc. User s Guide Document Number: KT33972UG Rev. 1.0, 7/2013 KIT33972AEWEVBE Evaluation Board Featuring the MC33972A Multiple Switch Detection Interface IC Contents Figure 1.

More information

Freescale Semiconductor Data Sheet: Technical Data

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

More information

MCUXpresso SDK USB Power Delivery

MCUXpresso SDK USB Power Delivery NXP Semiconductors Document Number: Quick Start Guide Rev. 1.0, 04/2017 MCUXpresso SDK USB Power Delivery 1. Introduction Today many devices charge or get their power from USB port connected in laptops,

More information

PCIe Certification Guide for i.mx 6Dual/6Quad and i.mx 6Solo/6DualLite

PCIe Certification Guide for i.mx 6Dual/6Quad and i.mx 6Solo/6DualLite Freescale Semiconductor Document Number: AN4784 Rev. 0, 10/2013 PCIe Certification Guide for i.mx 6Dual/6Quad and i.mx 6Solo/6DualLite This document provides a description of procedures, tools, and criteria

More information

High Volume Pressure Sensor for Disposable Applications

High Volume Pressure Sensor for Disposable Applications Freescale Semiconductor Data Sheet: Technical Data Pressure Rev 9, 10/2012 High Volume Pressure Sensor for Disposable Applications Freescale Semiconductor has developed a low cost, high volume, miniature

More information

QCVS SerDes Tool User Guide

QCVS SerDes Tool User Guide NXP Semiconductors Document Number: QCVS_SerDes_User_Guide User's Guide Rev. 4.x, 05/2016 QCVS SerDes Tool User Guide Contents Contents Chapter 1 SerDes Configuration and Validation... 3 1.1 Introduction...

More information

Freescale MQX RTOS for Kinetis SDK Release Notes version beta

Freescale MQX RTOS for Kinetis SDK Release Notes version beta Freescale Semiconductor Document Number: MQXKSDKRN Release Notes Rev 1.0.0, 07/2014 Freescale MQX RTOS for Kinetis SDK Release Notes version 1.0.0 beta 1 Read Me This is the release notes for Freescale

More information

MPXHZ6130A, 15 to 130 kpa, Absolute, Integrated Pressure Sensor

MPXHZ6130A, 15 to 130 kpa, Absolute, Integrated Pressure Sensor Freescale Semiconductor Document Number: Data Sheet: Technical Data Rev. 1.2, 06/2015, 15 to 130 kpa, Absolute, Integrated Pressure Sensor The series sensor integrates on-chip, bipolar op amp circuitry

More information

Collect Linux Hardware Trace for ARMv8 User Space and Kernel Space Applications

Collect Linux Hardware Trace for ARMv8 User Space and Kernel Space Applications NXP Semiconductors Document Number: AN5129 Application Note Rev. 11.3.0, 12/2017 Collect Linux Hardware Trace for ARMv8 User Space and Kernel Space Applications 1 Introduction This document describes the

More information

Mask Set Errata for Mask 2N27B

Mask Set Errata for Mask 2N27B Freescale Semiconductor COLDFIREPLUS_2N27B Mask Set Errata Rev 29 JUL 2013 Mask Set Errata for Mask 2N27B Introduction This report applies to mask 2N27B for these products: COLDFIREPLUS Errata ID Errata

More information

QCVS Frame Distributor Wizard User Guide

QCVS Frame Distributor Wizard User Guide NXP Semiconductors Document Number: QCVS_FDW_User_Guide User's Guide Rev. 4.x, 02/2017 QCVS Frame Distributor Wizard User Guide Contents Contents Chapter 1 Frame Distributor Wizard...3 1.1 Introduction...

More information

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB 1 MC9S08MM128 Electrocardiogram (EKG) with Freescale USB stack TOWER SYSTEM Introduction This lab is a step-by-step guide to run the EKG demo. The EKG

More information

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Software Disk Space Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core, AMD Athlon

More information

Table of Contents 1 Typical Applications General Description Block Diagram Pinout System Connections Typical A

Table of Contents 1 Typical Applications General Description Block Diagram Pinout System Connections Typical A Data Sheet: Product Preview Rev 0.3, 3/2014 Xtrinsic 3-Axis Digital Angular Rate Gyroscope is a small, low-power, yaw, pitch, and roll angular rate gyroscope. The full-scale range is adjustable from ±250

More information

Kinetis Bootloader v1.2.0 Release Notes

Kinetis Bootloader v1.2.0 Release Notes Freescale Semiconductor Document Number: KBTLDR120RN Release Notes Rev. 0, 07/2015 Kinetis Bootloader v1.2.0 Release Notes 1 Overview These are the release notes for the Kinetis bootloader v1.2.0. This

More information

MMA845x Driver: Quick Start Guide

MMA845x Driver: Quick Start Guide Freescale Semiconductor Document Number: AN4475 Application Note Rev 0, 07/2012 MMA845x Driver: Quick Start Guide by: Laura Salhuana 1 Introduction This quick start guide demonstrates how to load the MMA845x

More information