Avoiding Read While Write Errors When Developing In-Software Flash Programming Applications for Kinetis and ColdFire+ MCUs
|
|
|
- Martin Harris
- 9 years ago
- Views:
Transcription
1 Freescale Semiconductor Document Number:AN4695 Application Note Rev. 0, 04/2013 Avoiding Read While Write Errors When Developing In-Software Flash Programming Applications for Kinetis and ColdFire+ MCUs by: Chris Brown, Maclain Lobdell, and Melissa Hunter 1 Overview This application note discusses important considerations and guidelines for implementing in-software flash programming on Kinetis and ColdFire+ MCUs. The methods described provide a means to perform in-software flash programming on devices with a single flash block or devices that do not allow memory reads while writes are occurring within the same block. The techniques described are utilized in the Kinetis 100 MHz sample code. Also, the examples provided in this application note use the TFS Flash Driver Software for Kinetis and ColdFire+ MCUs. See References section for details. The examples provided in the application note support: IAR Embedded Workbench 6.40 Freescale CodeWarrior 10.2/10.3 with Freescale compiler Freescale CodeWarrior 10.3 with GCC compiler Contents 1 Overview Introduction: In-software flash programming Procedure Size of RAM function Using the C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers Instructions for creating a RAM function References...10 Any other development environment must be able to support the methods described. Contact IAR (iar.com) or Freescale CodeWarrior (freescale.com/codewarrior) for additional help and support Freescale Semiconductor, Inc.
2 Introduction: In-software flash programming 2 Introduction: In-software flash programming Many applications require the storage of data into non-volatile memory while in operation. The ability to erase/reprogram embedded flash memory in-software enables the use of a bootloader to upgrade the application software or the capability to securely store valuable data. Embedded flash memory is grouped into blocks. Each block contains the circuitry required to read, erase, and program within that block. Most of the flash memory technologies have a limitation of not allowing read operations at the same time as an erase or program operation is occurring within the same block. Thus, erasing/programming a sector is not allowed if code execution (fetching instructions = reading) is taking place within the same block even if the read is in a different flash sector than the erase/program. This is called a Read While Write (RWW) violation and will result in a Read Collision error on Kinetis and other microcontrollers. To determine whether or not there is a potential for a Read While Write violation, consult the Flash Memory Configuration section of the Chip Configuration Chapter for a specific part and/or the *.map file of the program. The Flash Memory Configuration section contains a table that correlates the specific part numbers to the amount of flash memory, flash blocks, and locations of the flash blocks. An example of such a table is given below. Device Program flash (KB) Block 0 (P- Flash) address range MK60DN256ZVLQ x0000_0000 0x0001_FFFF MK60DX256ZVLQ x0000_0000 0x0003_FFFF MK60DN512ZVLQ x0000_0000 0x0003_FFFF MK60DN256ZVMD x0000_0000 0x0001_FFFF MK60DX256ZVMD x0000_0000 0x0003_FFF MK60DN512ZVMD x0000_0000 0x0003_FFF FlexNVM (KB) Block 1 (FlexNVM/P- Flash address range 0x0002_0000 0x0003_FFFF 256 0x1000_0000 0x1003_FFFF 0x0004_0000 0x0007_FFFF 0x0002_0000 0x0003_FFFF 256 0x1000_0000 0x1003_FFFF 0x0004_0000 0x0007_FFFF FlexRAM (KB) FlexRAM address range N/A 4 0x1400_0000 0x1400_0FFF N/A N/A 4 0x1400_0000 0x1400_0FFF N/A The *.map file will list the locations of all of the functions of the program being used. Through this file, the user can know the location where flash programming function is stored as well as any other functions that may be pertinent to avoiding Read While Write errors, (that is, interrupt service routines). For help on how to enable a specific tool to produce a *.map file, consult the help documentation of the specific toolset. 2.1 Avoiding Read While Write violations: Flash command code The following subsections describe two simple methods to workaround this restriction. 2 Freescale Semiconductor, Inc.
3 Introduction: In-software flash programming Method 1: Execute flash commands from a separate flash block The first method is to execute the flash erase/program software subroutines from a different flash block than the one with the sectors being erased/programmed. This works well if the microcontroller has multiple flash blocks. With multiple flash blocks, the application can place the flash subroutines in one block and designate all or part of the other block for data storage Method 2: Execute flash commands from SRAM The second method is recommended for situations when the MCU has only flash block, or the user needs to erase/reprogram within each available block. In these scenarios, the critical parts of the flash subroutines are moved into SRAM for execution. Thus, the Read While Write condition on the flash is avoided. 2.2 Avoiding Read While Write violations: ISR code If an interrupt occurs during a flash erase/program operation, the Read While Write restriction will be violated if the interrupt service routine (ISR) code is located in the same flash block as the erase/program operation is occurring on. This situation can be avoided with three possible options: The first option is to disable/enable interrupts before/after the flash command operation. If interrupts are disabled, any interrupt that occurs during the flash operation will be pending when interrupts are re-enabled. The second option is to ensure that the ISR code is never in the same block as in-software flash erase/programming is performed. The third option is to relocate the expected ISR into RAM for the duration of the erase or program time. See Instructions for creating a RAM function for more details on how to create a RAM function. 2.3 What this application note demonstrates This application note shows how to create RAM functions for executing flash commands in RAM using two Integrated Development Environments, Freescale CodeWarrior and IAR Embedded Workbench. The examples are based on C90TFS Standard Flash Software Drivers for Kinetis and ColdFire+ Microcontrollers, but the concepts apply to other Freescale microcontrollers and software as well. Examples of the RAM function methods can be found in the Kinetis 100 MHz sample code projects. See References section. 2.4 Example application Consider an example application in which the user wants to erase/reprogram sectors defined by the application as the data log region while executing from the code execution region. Both of these regions are within the same flash block (P-Flash Block 0). To avoid the Read While Write violation of erasing/programming within the same block as code is executing, use a RAM function to launch the flash commands. This function is copied to SRAM from flash during system initialization. Freescale Semiconductor, Inc. 3
4 Procedure Figure 1. Use-case example: The application code and data log regions are within the same flash block (P-flash block 0). 3 Procedure The application executes from the code execution region in P-Flash Block 0. When the application wants to erase/ reprogram a sector in the data log region, it first prepares to execute the flash commands by loading the flash registers. 1. Before jumping to SRAM, set the Flash CCOB registers to prepare to launch a flash command. 2. Call an SRAM function which launches the flash command by clearing the CCIF flag, then waits for the CCIF flag to set, indicating the command is complete. 3. After the command is complete, return from the SRAM function back to flash and continue code execution. Figure 2. Code Execution: Code execution jumps from flash, to SRAM, and then back to flash. 4 Size of RAM function The function presented below to execute flash commands in SRAM (FlashLaunchCommand) takes approximately 16 bytes of SRAM memory. 4 Freescale Semiconductor, Inc.
5 Using the C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers 5 Using the C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers The examples in this application note utilize the C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers from Freescale. Following are the instructions on how to add C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers into the project. 1. Add C90TFS driver source/header files into the project. 2. Add C90TFS driver paths to the project settings. 3. Include C90TFS driver header files needed in the user source files that will be accessing the flash commands. 4. In SSD_FTFx.h, be sure the FLASH_DERIVATIVE is set to the right configuration for the specific device being used. For MD50DN512CMB10 - "N512": #define FLASH_DERIVATIVE FTFx_KX_512K_0K_0K_2K_0K For MK50DX256CMD10 - "X256": #define FLASH_DERIVATIVE FTFx_KX_256K_256K_4K_2K_2K 5. Be sure to declare a global structure for the flash information, as given below. /* Flash driver structure */ FLASH_SSD_CONFIG ftfl_cfg = FTFx_REG_BASE, /* FTFx control register base */ PFLASH_BLOCK_BASE, /* base address of PFlash block */ PBLOCK_SIZE, /* size of PFlash block */ DEFLASH_BLOCK_BASE, /* base address of DFlash block */ DBLOCK_SIZE, /* size of DFlash block */ EERAM_BLOCK_BASE, /* base address of EERAM block */ EERAM_BLOCK_SIZE, /* size of EERAM block */ 0, /* size of EEE block */ DEBUGENABLE, /* background debug mode enable bit */ NULL_CALLBACK /* pointer to callback function */ ; 6. Then initialize the flash driver by calling the init function. printf("initializing Flash Driver: "); returncode = pflashinit(&ftfl_cfg); 7. Finally, the C90TFS Flash Driver Software functions are ready to be used in the application. Here is an example of the swap function being called: returncode = ppflashswap(&ftfl_cfg, FLASH_SWAP_INDICATOR_ADDR, SwapCallback, FlashCommandSequence); 6 Instructions for creating a RAM function 6.1 IAR Embedded Workbench In the linker file, initialize the.textrw_init and.textrw sections manually, using the code given below. initialize manually section.textrw_init ; initialize mnaually section.textrw ; 2. Define and place sections in the linker file. Freescale Semiconductor, Inc. 5
6 Instructions for creating a RAM function CodeRelocate is a.textrw_init section placed in ROM. This is a flash section which will store RAM functions to be copied to RAM when the system initializes. CodeRelocateRam is a.textrw section placed in RAM. This is a RAM section, which will be the home of RAM functions after they are copied from flash. define block CodeRelocate section.textrw_init ; define block CodeRelocateRam section.textrw ; place in ROM_region readonly, block CodeRelocate; place in RAM_region readwrite, block CodeRelocateRam, block CSTACK, block HEAP ; 3. In the software source files, prefix the function prototype with ramfunc. IAR will place this function in the CodeRelocate section to be copied to CodeRelocateRam. The C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers utilize a FlashCommandSequence function for executing all flash commands. This entire function can be placed into SRAM. This is the simplest method to implement, but it is the least SRAM-efficient. To reduce SRAM usage, just a critical subset can be placed in SRAM. The following function, just performs the critical steps that need to run from SRAM when launching a flash command. /* Flash launch command */ ramfunc UINT32 FlashLaunchCommand (PFLASH_SSD_CONFIG PSSDConfig) /* clear CCIF bit */ REG_WRITE(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF); /* check CCIF bit */ while(false == (REG_BIT_TEST(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF))) /* wait till CCIF bit is set */ 4. In the startup initialization source file, reference sections using #pragma directives are shown below. #pragma section = "CodeRelocate" #pragma section = "CodeRelocateRam" 5. In the software initialization routine, declare and initialize pointers for various data sections. These pointers are initialized using values pulled from the linker file. /* Get addresses for any code sections that need to be copied from ROM to RAM * The IAR tools have a predefined keyword that can be used to mark individual * functions for execution from RAM. Add " ramfunc" before the return type in * the function prototype for any routines you need to execute from RAM * instead of ROM. ex: ramfunc void foo(void); */ uint8* code_relocate_ram = section_begin("coderelocateram"); uint8* code_relocate = section_begin("coderelocate"); uint8* code_relocate_end = section_end("coderelocate"); 6. In the startup initialization routine, copy the RAM functions from ROM to RAM. /* Calculate the number of bytes to copy */ uint32 n; n = code_relocate_end - code_relocate; /* Copy functions from ROM to RAM */ while (n--) *code_relocate_ram++ = *code_relocate++; 7. Call the function to launch the flash command from within the FlashCommandSequence function of the C90TFS flash software drivers. Call the function just after the CCOB registers are loaded and before the error flags are checked. 6 Freescale Semiconductor, Inc.
7 Instructions for creating a RAM function // CallRAM function to launch command FlashLaunchCommand (PSSDConfig); 6.2 Freescale CodeWarrior for Microcontrollers v.10.2/10.3 with Freescale compiler 1. In a header file, define a custom section for relocating code. Use the pragma compiler directive #pragma define_section to define a section called ".relocate_code". #pragma define_section relocate_code ".relocate_code" far_abs RX NOTE In the Kinetis sample code, this is defined in the file CW.h. 2. The attribute declspec() is used to specify a storage location for objects. So, prepending functions with declspec(relocate_code) will place them into the relocate_code section that was just defined by the pragma statement. The user can define a keyword in the header file such as relocate_code to make an easier-to-read substitution of this attribute. #define relocate_code declspec(relocate_code) 3. In the linker file, insert.relocate_code section in the.data_bss section. The.data_bss section is saved space in the SRAM for initialized data, but the RAM function can be placed there as well. This section is linked to the SRAM, but the data is loaded to the flash via a startup routine. AT( DATA_ROM) designator..data_bss : AT( DATA_ROM) DATA_RAM =.; *(.data) *(.sdata) *(.relocate_code) *(.relocate_const) *(.relocate_data) *(.test) DATA_END =.;. = ALIGN(0x10); START_BSS =.; *(.sbss) *(SCOMMON) *(.bss) *(COMMON) END_BSS =.;. = ALIGN(0x10); HEAP_START =.; heap_addr=.; heap_size = (4 * 1024);.=. + heap_size; HEAP_END =.; SP_END =.;.=. + (1 * 1024); BOOT_STACK_ADDRESS =.; > ram 4. In the software source files, prefix the function with the keyword relocate code defined in step 2 or use declspec (relocate_code). CodeWarrior will place this function in the relocate_code section. The C90TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers utilize a FlashCommandSequence function for executing all flash commands. This entire function can be placed into SRAM. This is the simplest method to implement, but it is the least SRAM-efficient. To reduce SRAM usage, just a critical subset can be placed in SRAM. Freescale Semiconductor, Inc. 7
8 Instructions for creating a RAM function The following function just performs the critical steps that need to run from SRAM when launching a flash command. /* Flash launch command function prototype */ extern void FlashLaunchCommand(PFLASH_SSD_CONFIG PSSDConfig); relocate_code void FlashLaunchCommand (PFLASH_SSD_CONFIG PSSDConfig) /* Flash launch command */ /* clear CCIF bit */ REG_WRITE(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF); /* check CCIF bit */ while(false == (REG_BIT_TEST(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF))) /* wait till CCIF bit is set */ 5. In the software initialization source file, bring in symbols from the header file as externs. These symbols define the sections: extern uint32 DATA_ROM[]; extern uint32 DATA_RAM[]; extern char DATA_END[]; 6. In the software initialization routine, declare and initialize pointers for various data sections. These pointers are initialized using values pulled from the linker file: uint8 * data_ram, * data_rom, * data_rom_end; /* Note data_rom_end is actually a RAM address in CodeWarrior */ data_ram = (uint8 *) DATA_RAM; data_rom = (uint8 *) DATA_ROM; data_rom_end = (uint8 *) DATA_END; 7. In a startup initialization routine, copy the contents from DATA_ROM to DATA_RAM. NOTE data_rom_end is actually a RAM address in CodeWarrior, so when calculating the number of bytes to copy, use data_ram instead of data_rom as the starting point. /* Calculate the number of bytes to copy */ uint32 n; n = data_rom_end - data_ram; /* Copy initialized data from ROM to RAM */ while (n--) *data_ram++ = *data_rom++; 8. Call the function to launch the flash command from within the FlashCommandSequence function of the C90TFS flash software drivers. Call the function just after the CCOB registers are loaded and before the error flags are checked. // Call RAM function to launch command FlashLaunchCommand (PSSDConfig); 6.3 CodeWarrior for Microcontroller 10.3 with GCC compiler 1. In a header file, define a custom section for relocating code. Use the attribute declaration specifier to specify where a function should be placed in memory. The user can define a macro for this attribute as given below. 8 Freescale Semiconductor, Inc.
9 #define relocate_code attribute ((section(".relocate_code"), long_call)) 2. In the link file, insert.relocate_code section in the.data section:.data : AT( ROM_AT). = ALIGN(4); _sdata =.; *(.data) *(.data*) *(.relocate_code). = ALIGN(4); _edata =.; > m_data 3. For program execution to copy the section from ROM to RAM, a link copy table must be defined in the linker file. The following is an example of such a table: _romp_at = ROM_AT + SIZEOF(.data) + SIZEOF(.user_data2);.romp : AT(_romp_at) S_romp = _romp_at; LONG( ROM_AT); LONG(_sdata); LONG( data_size); LONG( m_data2_romstart); LONG( m_data2_ramstart); LONG( m_data2_romsize); LONG(0); LONG(0); LONG(0); > m_data2 NOTE The startup initialization routine will call the function copy_rom_sections_to_ram, that copies the contents from ROM to RAM. 4. In the flash driver source files, declare and define the FlashLaunchCommand function with the keyword " relocate_code ". For example: /* Flash launch command function prototype */ void FlashLaunchCommand(PFLASH_SSD_CONFIG PSSDConfig) relocate_code ; void relocate_code FlashLaunchCommand (PFLASH_SSD_CONFIG PSSDConfig) /* Flash launch command */ /* clear CCIF bit */ REG_WRITE(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF); /* check CCIF bit */ while(false == (REG_BIT_TEST(PSSDConfig->ftfxRegBase + FTFx_SSD_FSTAT_OFFSET, FTFx_SSD_FSTAT_CCIF))) /* wait till CCIF bit is set */ 5. Call the function to launch the flash command from within the FlashCommandSequence function of the C90TFS flash software drivers. Call the function just after the CCOB registers are loaded and before the error flags are checked. // Call RAM function to launch command FlashLaunchCommand (PSSDConfig); Instructions for creating a RAM function Freescale Semiconductor, Inc. 9
10 References 7 References The following reference materials can be used for this application note. KINETIS512_SC: Bare-metal sample code projects for Kinetis 100MHz V1 microcontroller family, available on freescale.com C90TFS_FLASH_DRIVER: TFS Flash Driver Software for Kinetis and ColdFire+ Microcontrollers, available on freescale.com AN4329: Relocating Code and Data Using the CodeWarrior Linker Command File (LCF), available on freescale.com IAR Technical Note 11578: Execute in RAM after copying from flash/rom (v5.20 and later), available on iar.com IAR Technical Note Using " ramfunc" on assembly source (EWARM 5.x & 6.x):, available on iar.com Porting Freescale ARM Compiler-based Projects to use ARM GCC (included in the CodeWarrior 10.3 build at <CodeWarrior root directory >\MCU\Help\PDF\Porting_ARM_GCC.pdf) 10 Freescale Semiconductor, Inc.
11 How to Reach Us: Home Page: Web Support: USA/Europe or Locations Not Listed: Freescale Semiconductor Technical Information Center, EL East Elliot Road Tempe, Arizona or Europe, Middle East, and Africa: Freescale Halbleiter Deutschland GmbH Technical Information Center Schatzbogen Muenchen, Germany (English) (English) (German) (French) Japan: Freescale Semiconductor Japan Ltd. Headquarters ARCO Tower 15F 1-8-1, Shimo-Meguro, Meguro-ku, Tokyo Japan or [email protected] Asia/Pacific: Freescale Semiconductor China Ltd. Exchange Building 23F No. 118 Jianguo Road Chaoyang District Beijing China [email protected] Information in this document is provided solely to enable system and software implementers to use Freescale Semiconductors products. There are no express or implied copyright licenses granted hereunder to design or fabricate any integrated circuits or integrated circuits based on the information in this document. Freescale Semiconductor reserves the right to make changes without further notice to any products herein. Freescale Semiconductor makes no warranty, representation, or guarantee regarding the suitability of its products for any particular purpose, nor does Freescale Semiconductor assume any liability arising out of the application or use of any product or circuit, and specifically disclaims any liability, including without limitation consequential or incidental damages. "Typical" parameters that may be provided in Freescale Semiconductor 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 Semiconductor does not convey any license under its patent rights nor the rights of others. Freescale Semiconductor products are not designed, intended, or authorized for use as components in systems intended for surgical implant into the body, or other applications intended to support or sustain life, or for any other application in which failure of the Freescale Semiconductor product could create a situation where personal injury or death may occur. Should Buyer purchase or use Freescale Semiconductor products for any such unintended or unauthorized application, Buyer shall indemnify Freescale Semiconductor and its officers, employees, subsidiaries, affiliates, and distributors harmless against all claims, costs, damages, and expenses, and reasonable attorney fees arising out of, directly or indirectly, any claim of personal injury or death associated with such unintended or unauthorized use, even if such claims alleges that Freescale Semiconductor was negligent regarding the design or manufacture of the part. RoHS-compliant and/or Pb-free versions of Freescale products have the functionality and electrical characteristics as their non-rohs-complaint and/or non-pb-free counterparts. For further information, see or contact your Freescale sales representative. For information on Freescale's Environmental Products program, go to Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. All other product or service names are the property of their respective owners Freescale Semiconductor, Inc. Document Number: AN4695 Rev. 0, 04/2013
Windows 7: Using USB TAP on a Classic CodeWarrior Installation (MGT V9.2 DSC V8.3)
Freescale Semiconductor Document Number: AN4338 Application Note Rev. 1.0, 12/2011 Windows 7: Using USB TAP on a Classic CodeWarrior Installation (MGT V9.2 DSC V8.3) Technical Information & Commercial
How To Build A Project On An Eclipse Powerbook For Anarc (Powerbook) On An Ipa (Powerpoint) On A Microcontroller (Powerboard) On Microcontrollers (Powerstation) On Your Microcontroller 2 (Powerclock
Freescale Semiconductor Document Number: AN4819 Application Note Rev. 1, 10/2013 Building a Project using IAR Eclipse Plugin Processor Expert Microcontrollers Driver Suite Processor Expert Microcontrollers
Software Real Time Clock Implementation on MC9S08LG32
Freescale Semiconductor Document Number: AN4478 Rev. 0, 03/2012 Software Real Time Clock Implementation on MC9S08LG32 by: Nitin Gupta Automotive and Industrial Solutions Group 1 Introduction The MC9S08LG32
Connecting Low-Cost External Electrodes to MED-EKG
Freescale Semiconductor Document Number: AN4223 Application Note Rev. 0, 11/2010 Connecting Low-Cost External Electrodes to MED-EKG by: Carlos Casillas RTAC Americas Guadalajara Mexico 1 Introduction This
IRTC Compensation and 1 Hz Clock Generation
Freescale Semiconductor Document Number: AN4257 Application Note Rev. 0, January 2011 IRTC Compensation and 1 Hz Clock Generation by: Derek Liu Applications Engineering Shanghai 1 Introduction The MC9S08GW64
etpu Host Interface by:
Freescale Semiconductor Application Note AN2821 Rev. 2, 08/2007 etpu Host Interface by: David Paterson Ming Li MCD Applications 1 Introduction This application note discusses the enhanced Time Processing
Using WinUSB in a Visual Studio Project with Freescale USB device controller
Freescale Semiconductor Document Number: AN4378 Application Note Rev. 0, 10/2011 Using WinUSB in a Visual Studio Project with Freescale USB device controller by: Paolo Alcantara Microcontroller Solutions
Connecting to an SMTP Server Using the Freescale NanoSSL Client
Freescale Semiconductor Document Number: AN4363 Application Note Rev. 0, 10/2011 Connecting to an SMTP Server Using the Freescale NanoSSL Client by: Paolo Alcantara Microcontroller Solutions Group 1 Introduction
How To Control A Motor Control On An Hvac Platform
Freescale Semiconductor Document Number:AN4616 Application Note Rev. 0, 10/2012 Flap Motor Control Based On HVAC Platform by: Shawn Shi, Albert Chen, Alex Liu 1 Introduction According to the world market
Cyclic Redundant Checker Calculation on Power Architecture Technology and Comparison of Big-Endian Versus Little-Endian
Freescale Semiconductor Document Number:AN4657 Application Note Rev. 0, 01/2013 Cyclic Redundant Checker Calculation on Power Architecture Technology and Comparison of Big-Endian Versus Little-Endian by:
Installation of the MMA955xL CodeWarrior Service Pack Author: Fengyi Li Application Engineer
Freescale Semiconductor Application Note Document Number: AN4128 Rev. 0, 10/2011 Installation of the MMA955xL CodeWarrior Service Pack Author: Fengyi Li Application Engineer 1 Overview The Freescale MMA955xL
Robust Over-the-Air Firmware Updates Using Program Flash Memory Swap on Kinetis Microcontrollers
Freescale Semiconductor Document Number:AN4533 Application Note Robust Over-the-Air Firmware Updates Using Program Flash Memory Swap on Kinetis Microcontrollers by: Maclain Lobdell Automotive, Industrial,
Using the Kinetis Security and Flash Protection Features
Freescale Semiconductor Document Number:AN4507 Application Note Rev. 1, 6/2012 Using the Kinetis Security and Flash Protection Features by: Melissa Hunter Automotive and Industrial Solutions Group 1 Introduction
USB HID bootloader for the MC9S08JM60
Freescale Semiconductor Document Number: AN4252 Application Note Rev. 0, 4/2011 USB HID bootloader for the MC9S08JM60 by: Derek Lau System and Solution Engineering, Microcontroller Solutions Group Hong
Freescale Embedded GUI Converter Utility 2.0 Quick User Guide
Freescale Semiconductor User Guide Document Number: EGUICUG Rev. 1, 08/2010 Freescale Embedded GUI Converter Utility 2.0 Quick User Guide 1 Introduction The Freescale Embedded GUI Converter Utility 2.0
Understanding LCD Memory and Bus Bandwidth Requirements ColdFire, LCD, and Crossbar Switch
Freescale Semiconductor Application Note Document Number: AN3606 Rev. 0, 03/2008 Understanding LCD Memory and Bus Bandwidth Requirements ColdFire, LCD, and Crossbar Switch by: Melissa Hunter TSPG Applications
Using the Performance Monitor Unit on the e200z760n3 Power Architecture Core
Freescale Semiconductor Document Number: AN4341 Application Note Rev. 1, 08/2011 Using the Performance Monitor Unit on the e200z760n3 Power Architecture Core by: Inga Harris MSG Application Engineering
Blood Pressure Monitor Using Flexis QE128 Gabriel Sanchez RTAC Americas
Freescale Semiconductor Application Note Document Number: AN3500 Rev. 0, 08/2007 Blood Pressure Monitor Using Flexis QE128 by: Gabriel Sanchez RTAC Americas 1 Introduction Product designers and developers
Flexible Active Shutter Control Interface using the MC1323x
Freescale Semiconductor Document Number: AN4353 Application Note Rev. 0, 9/2011 Flexible Active Shutter Control Interface using the MC1323x by: Dennis Lui Freescale Hong Kong 1 Introduction This application
MCF54418 NAND Flash Controller
Freescale Semiconductor Application Note Document Number: AN4348 Rev. 0, 09/2011 MCF54418 NAND Flash Controller by: Liew Tsi Chung Applications Engineer 1 Introduction The ColdFire MCF5441x family is the
Initializing the TSEC Controller
Freescale Semiconductor Application Note Document Number: AN2925 Rev. 0, 11/2005 Initializing the TSEC Controller by Ahsan Kabir Digital Systems Division Freescale Semiconductor, Inc. Austin, TX This application
Hardware Configurations for the i.mx Family USB Modules
Freescale Semiconductor Application Note Document Number: AN4136 Rev. 0, 06/2010 Hardware Configurations for the i.mx Family USB Modules by Multimedia Applications Division Freescale Semiconductor, Inc.
How to Convert 3-Axis Directions and Swap X-Y Axis of Accelerometer Data within Android Driver by: Gang Chen Field Applications Engineer
Freescale Semiconductor Application Note Document Number: AN4317 Rev. 0, 08/2011 How to Convert 3-Axis Directions and Swap X-Y Axis of Accelerometer Data within Android Driver by: Gang Chen Field Applications
Point-of-Sale (POS) Users Guide Lech José Olmedo Guerrero Jaime Herrerro Gallardo RTAC Americas
Freescale Semiconductor Users Guide Document Number: POSUG Rev. 0, 03/2007 Point-of-Sale (POS) Users Guide by: Lech José Olmedo Guerrero Jaime Herrerro Gallardo RTAC Americas 1 Introduction This quick
Generate Makefiles from Command Line Support in Eclipse-Based CodeWarrior Software
Freescale Semiconductor Document Number: AN4272 Application Note Rev. 0, 03/2011 Generate Makefiles from Command Line Support in Eclipse-Based CodeWarrior Software by Devtech Customer Engineering Freescale
Local Interconnect Network (LIN) Physical Interface
Freescale Semiconductor Engineering Bulletin EB215 Rev. 1.0, 03/2005 Local Interconnect Network (LIN) Physical Interface Difference Between MC33399 and MC33661 Introduction This engineering bulletin highlights
Handling Freescale Pressure Sensors
Freescale Semiconductor Application Note Rev 3, 11/2006 Handling Freescale Pressure by: William McDonald INTRODUCTION Smaller package outlines and higher board densities require the need for automated
MC13783 Buck and Boost Inductor Sizing
Freescale Semiconductor Application Note Document Number: AN3294 Rev. 0.1, 01/2010 MC13783 Buck and Boost Inductor Sizing by: Power Management Application Team 1 Introduction The purpose of this application
Programming Audio Applications in the i.mx21 MC9328MX21
Freescale Semiconductor Application Note Document Number: AN2628 Rev. 1, 10/2005 Programming Audio Applications in the MC9328MX21 by: Alfred Sin 1 Abstract The MC9328MX21 () processor has two dedicated
Performance Monitor on PowerQUICC II Pro Processors
Freescale Semiconductor Application Note Document Number: AN3359 Rev. 0, 05/2007 Performance Monitor on PowerQUICC II Pro Processors by Harinder Rai Network Computing Systems Group Freescale Semiconductor,
Freescale Semiconductor. Integrated Silicon Pressure Sensor. On-Chip Signal Conditioned, Temperature Compensated and Calibrated MPX4080D.
Freescale Semiconductor Integrated Silicon Pressure Sensor + On-Chip Signal Conditioned, Temperature Compensated and Calibrated The series piezoresistive transducer is a state-of-the-art monolithic silicon
PowerQUICC II Pro (MPC83xx) PCI Agent Initialization
Freescale Semiconductor Application Note Document Number: AN3373 Rev. 0, 04/2007 PowerQUICC II Pro (MPC83xx) PCI Agent Initialization by: David Smith Field Application Engineering Raleigh, NC In many designs,
Improving Embedded Software Test Effectiveness in Automotive Applications
Improving Embedded Software Test Effectiveness in Automotive Applications Author, D Brook Document Number: CODETESTTECHWP Rev. 0 11/2005 As the automotive industry introduces more and more safety-critical,
Freescale Variable Key Security Protocol Transmitter User s Guide by: Ioseph Martínez and Christian Michel Applications Engineering - RTAC Americas
Freescale Semiconductor User s Guide VKSPTXUG Rev. 0, 06/2008 Freescale Variable Key Security Protocol Transmitter User s Guide by: Ioseph Martínez and Christian Michel Applications Engineering - RTAC
Emulated EEPROM Implementation in Dual Flash Architecture on MC9S08LG32 With Demo Description
Freescale Semiconductor Application Note Document Number: AN3822 Rev. 0, 2/2009 Emulated EEPROM Implementation in Dual Flash Architecture on MC9S08LG32 With Demo Description by: Saurabh Jhamb Reference
Processor Expert Software Microcontrollers Driver Suite Getting Started Guide
Freescale Semiconductor Document Number: PEXDRVSGETSTARTEDUG Rev. 2, 09/2012 Processor Expert Software Microcontrollers Driver Suite Getting Started Guide This document introduces Microcontrollers Driver
How To Measure Power Of A Permanent Magnet Synchronous Motor
Freescale Semiconductor Document Number:AN4680 Application Note Rev. 0, 02/2013 PMSM Electrical Parameters Measurement by: Viktor Bobek 1 Introduction The vector control, also known as the field-oriented
Using eflexpwm Module for ADC Synchronization in MC56F82xx and MC56F84xx Family of Digital Signal Controllers
Freescale Semiconductor Document Number:AN4675 Application Note Rev. 0, 01/2013 Using eflexpwm Module for ADC Synchronization in MC56F82xx and MC56F84xx Family of Digital Signal Controllers by: Pavel Grasblum
Using Program Memory As Data Memory. 1. Introduction. 2. 56800 Program Memory and Data. Contents. Memory. Freescale Semiconductor Application Note
Freescale Semiconductor Application Note AN1952 Rev. 0, 9/2005 Using Program Memory As Data Memory William Jiang 1. Introduction Microcontrollers with Harvard architecture have separate program and data
User Interface Design using CGI Programming and Boa Web Server on M5249C3 Board
Freescale Semiconductor Application Note AN3238 Rev. 0, 02/2006 User Interface Design using CGI Programming and Boa Web Server on M5249C3 Board by: H.K. Au MCD Applications 1 Introduction This application
USB Mass Storage Device Host Bootloader
Freescale Semiconductor Document Number:AN4368 Application Note Rev. 1, 12/2012 USB Mass Storage Device Host Bootloader by: Derek Lau 1 Introduction Bootloader is a small program put into a device that
Data Movement Between Big-Endian and Little-Endian Devices
Freescale Semiconductor Application Note AN2285 Rev. 2.2, 3/2008 Data Movement Between Big-Endian and Little-Endian Devices by Kyle Aubrey, Field Technical Leader Ashan Kabir, System Engineering Freescale
VLE 16-bit and 32-bit Instruction Length Decode Algorithm
Freescale Semiconductor Document Number: AN4648 Application Note Rev. 1, 3/2013 VLE 16-bit and 32-bit Instruction Length Decode Algorithm by: Pavel Bohacik 1 Introduction The Qorivva MPC56xx 32-bit microcontroller
Detecting a CPM Overload on the PowerQUICC II
Freescale Semiconductor Application Note Document Number: AN2547 Rev. 1, 11/2006 Detecting a CPM Overload on the PowerQUICC II by Qiru Zou NCSD Applications Freescale Semiconductor, Inc. Austin, TX This
Developing an Application for the i.mx Devices on the Linux Platform
Freescale Semiconductor Application Note Document Number: AN3870 Rev. 0, 08/2010 Developing an Application for the i.mx Devices on the Linux Platform by Multimedia Applications Division Freescale Semiconductor,
MLPPP in the Evolving Radio Access Network
Freescale Semiconductor White Paper Document Number: MLPPPWP Rev. 0, 09/2010 MLPPP in the Evolving Radio Access Network by Networking and Multimedia Group Freescale Semiconductor, Inc. East Kilbride, Scotland
Using XGATE to Implement LIN Communication on HCS12X Daniel Malik 8/16-Bit Products Division East Kilbride, Scotland
Freescale Semiconductor Application Note Document Number: AN2732 Rev. 0, 05/2004 Using XGATE to Implement LIN Communication on HCS12X By Daniel Malik 8/16-Bit Products Division East Kilbride, Scotland
NOT RECOMMENDED FOR NEW DESIGN
Technical Data RF Power Field Effect Transistor N- Channel Enhancement- Mode Lateral MOSFET Designed for broadband commercial and industrial applications with frequencies up to 00 MHz. The high gain and
Efficient Low-Level Software Development for the i.mx Platform
Freescale Semiconductor Application Note Document Number: AN3884 Rev. 0, 07/2009 Efficient Low-Level Software Development for the i.mx Platform by Multimedia Applications Division Freescale Semiconductor,
Configuring the FlexTimer for Position and Speed Measurement with an Encoder
Freescale Semiconductor Application Note Document Number: AN4381 Rev. 0, 12/2011 Configuring the FlexTimer for Position and Speed Measurement with an Encoder by: Matus Plachy System Application Engineer,
Freescale Semiconductor. Integrated Silicon Pressure Sensor. On-Chip Signal Conditioned, Temperature Compensated and Calibrated MPX5500.
Freescale Semiconductor Integrated Silicon Pressure Sensor + On-Chip Signal Conditioned, Temperature Compensated and Calibrated Series Pressure Rev 7, 09/2009 0 to 500 kpa (0 to 72.5 psi) 0.2 to 4.7 V
MSC8156 and MSC8157 PCI Express Performance
Freescale Semiconductor Application Note Document Number: AN3935 Rev. 1, 11/2011 MSC8156 and MSC8157 PCI Express Performance This application note presents performance measurements of the MSC8156 and MSC8157
A Utility for Programming Single FLASH Array HCS12 MCUs, with Minimum RAM Overhead
Freescale Semiconductor Application Note AN2720 Rev. 2, 04/2008 A Utility for Programming Single FLASH Array HCS12 MCUs, with Minimum RAM Overhead By Jim Williams 8/16-Bit Applications Engineering Austin,
i.mx28 Ethernet Performance on Linux
Freescale Semiconductor Document Number:AN4544 Application Note Rev. 0, 6/2012 i.mx28 Ethernet Performance on Linux 1 Introduction The aim of this document is to show how to measure the ENET "Ethernet
How to Do EEPROM Emulation Using Double Flash Array on MC9S08LC60 Ronald Gonzalez and Tatiana Orofino RTAC Americas
Freescale Semiconductor Application Note Document Number: AN3404 Rev. 1, 03/2007 How to Do EEPROM Emulation Using Double Flash Array on MC9S08LC60 by: Ronald Gonzalez and Tatiana Orofino RTAC Americas
CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start
CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel Pentum -compatible processor 512 MB of RAM
NOT RECOMMENDED FOR NEW DESIGN
Technical Data RF Power Field Effect Transistor N-Channel Enhancement-Mode Lateral MOSFET Designed for broadband commercial and industrial applications with frequencies up to 00 MHz. The high gain and
ColdFire Security SEC and Hardware Encryption Acceleration Overview
Freescale Semiconductor Application Note Document Number: AN2788 Rev. 1, 05/2008 ColdFire Security SEC and Hardware Encryption Acceleration Overview by: Melissa Hunter MSG Applications This application
Implementing Positioning Algorithms Using Accelerometers
Freescale Semiconductor Application Note Rev 0, 02/2007 Implementing Positioning Algorithms Using Accelerometers by: Kurt Seifert and Oscar Camacho OVERVIEW This document describes and implements a positioning
VGA Output using TV-Out Extension Solution i.mx21
Freescale Semiconductor Application Note Document Number: AN3378 Rev. 0, 11/2006 VGA Output using TV-Out Extension Solution i.mx21 by: Tatiana Orofino 1 Abstract Freescale first thought of a TV-Out Extension
Enhanced Serial Interface Mapping
Freescale Semiconductor Application Note Document Number: AN3536 Rev. 1, 11/2007 Enhanced Serial Interface Mapping 16 E1/T1 QUICC Engine Solution for TDM Connectivity by Netcomm Applications Networking
How To Fit A 2Mm Exposed Pad To A Dfn Package
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
MPC8245/MPC8241 Memory Clock Design Guidelines: Part 1
Freescale Semiconductor AN2164 Rev. 4.1, 03/2007 MPC8245/MPC8241 Memory Clock Design Guidelines: Part 1 by Esther C. Alexander RISC Applications, CPD Freescale Semiconductor, Inc. Austin, TX This application
CodeWarrior Development Studio Floating Licensing Quick Start
CodeWarrior Development Studio Floating Licensing Quick Start This quick start guide explains how to set up a floating license server of Freescale software products licensed with FLEXlm (e.g. CodeWarrior).
Production Flash Programming Best Practices for Kinetis K- and L-series MCUs
Freescale Semiconductor Document Number:AN4835 Application Note Rev 1, 05/2014 Production Flash Programming Best Practices for Kinetis K- and L-series MCUs by: Melissa Hunter 1 Introduction This application
3-Phase BLDC Motor Control with Hall Sensors Using 56800/E Digital Signal Controllers
Freescale Semiconductor Application Note AN1916 Rev. 2.0, 11/2005 3-Phase BLDC Motor Control with Hall Sensors Using 56800/E Digital Signal Controllers Leonard N. Elevich Contents 1. Application Benefits...1
Comparison of MC9S08QE128 and MCF51QE128 Microcontrollers Scott Pape and Eduardo Montanez Systems Engineering, Freescale Microcontroller Division
Freescale Semiconductor White Paper Document Number: QE128COMPWP Rev. 0, 05/2007 Comparison of MC9S08QE128 and MCF51QE128 Microcontrollers by: Scott Pape and Eduardo Montanez Systems Engineering, Freescale
Ref Parameters Symbol Conditions Min Typ Max Units. Standby 3.5 10 μa. 3 Range 50 115 kpa. 4 Resolution 0.15 kpa. 5 Accuracy -20ºC to 85ºC ±1 kpa
Freescale Semiconductor Miniature I 2 C Digital Barometer The is an absolute pressure sensor with digital output for low cost applications. A miniature 5 x 3 x 1.2 mm LGA package ideally suits it for portable
Techniques and Tools for Software Analysis
Techniques and Tools for Software Analysis Freescale Semiconductor Document Number: CODETESTTECHWP Rev. 0 11/2005 Understanding how software development can be optimized through the use of software analysis
Adding SDIO Wi-Fi Solution to i.mx Windows CE 5.0/Windows CE 6.0
Freescale Semiconductor Application Note Document Number: AN3981 Rev. 0, 04/2010 Adding SDIO Wi-Fi Solution to i.mx Windows CE 5.0/Windows CE 6.0 by Multimedia Applications Division Freescale Semiconductor,
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 Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel
NOT RECOMMENDED FOR NEW DESIGN
Technical Data RF Power Field Effect Transistor N-Channel Enhancement-Mode Lateral MOSFET Designed for broadband commercial and industrial applications with frequencies up to 1000 MHz. The high gain and
UART Boot Loader Design on the Kinetis E Series
Freescale Semiconductor Application Note Document Number: AN4767 Rev. 0, 7/2013 UART Boot Loader Design on the Kinetis E Series by Wang Peng Many applications and products need to upgrade the firmware
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 Processor Windows OS: Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core,
Real Time Development of MC Applications using the PC Master Software Visualization Tool. 1. Introduction. 2. Development of Motor Control.
Freescale Semiconductor Application Note AN1948 Rev. 1, 11/2005 Real Time Development of MC Applications using the PC Master Software Visualization Tool The PC Master Software Visualization Tool Simplifies
Understanding Pressure and Pressure Measurement
Freescale Semiconductor Application Note Rev 1, 05/2005 Understanding Pressure and Pressure Measurement by: David Heeley Sensor Products Division, Phoenix, Arizona INTRODUCTION Fluid systems, pressure
DRM for Driver Information System on S12G128. Reference Design
DRM for Driver Information System on S12G128 Reference Design Document Number: DRM134 Rev. 0, 04/2012 2 Freescale Semiconductor, Inc. Contents Section Number Title Page Chapter 1 Introduction 1.1 Introduction...5
PQ-MDS-T1 Module. HW Getting Started Guide. Contents. About This Document. Required Reading. Definitions, Acronyms, and Abbreviations
HW Getting Started Guide PQ-MDS-T1 Module April 2006: Rev. 0.3 Contents Contents................................................................................. 1 About This Document.......................................................................
White Paper. Freescale s Embedded Hypervisor for QorIQ P4 Series Communications Platform
White Paper Freescale s Embedded for QorIQ P4 Series Communications Platform Document Number: EMHYPQIQTP4CPWP Rev 1 10/2008 Overview Freescale Semiconductor s QorIQ communications platform P4 series processors
RF Power Field Effect Transistors N- Channel Enhancement- Mode Lateral MOSFETs
Technical Data RF Power Field Effect Transistors N- Channel Enhancement- Mode Lateral MOSFETs Designed for GSM and GSM EDGE base station applications with frequencies from 864 to 894 MHz. Suitable for
3-Phase BLDC Motor Control with Hall Sensors Using the MC56F8013
3-Phase BLDC Motor Control with Hall Sensors Using the MC56F8013 Targeting User Guide 56F8000 16-bit Hybrid Controllers 56F8013BLDCUG Rev. 1 11/2005 freescale.com TABLE OF CONTENTS About This Book Audience.............................................................
Pressure Freescale Semiconductor
Freescale Semiconductor Integrated Silicon Sensor On-Chip Signal Conditioned, Temperature Compensated and Calibrated The series piezoresistive transducer is a state-of-the-art monolithic silicon pressure
Using the HC08 SCI Module
Freescale Semiconductor Application Note AN3035 Rev. 0, 09/2005 Using the HC08 SCI Module By Jorge Zambada Tinoco Oscar Luna González RTAC Americas Mexico 2005 Overview This document is intended to serve
AND8365/D. 125 kbps with AMIS-4168x APPLICATION NOTE
125 kbps with AMIS-4168x Introduction Question Is it possible to drive 125kB with the AMIS 41682? Please consider all possible CAN bit timings (TSEG1, TSEG2, SJW), a capacitive load at each can pin about
TWR-KV31F120M Sample Code Guide for IAR Board configuration, software, and development tools Rev.0
TWR-KV31F120M Sample Code Guide for IAR Board configuration, software, and development tools Rev.0 Freescale TWR-KV31F120M Sample Code Guide for IAR KL25_LAB Contents 1 Purpose... 3 2 Getting to know the
Freescale Semiconductor. Integrated Silicon Pressure Sensor
Freescale Semiconductor Rev 7, 1/2009 Integrated Silicon Sensor + Manifold Absolute Sensor On-Chip Signal Conditioned, Temperature Compensated and Calibrated The series Manifold Absolute (MAP) sensor for
ITU-T V.42bis Data Dictionary Search on the StarCore SC140/SC1400 Cores
Freescale Semiconductor Application Note AN2270 Rev. 1, 11/2004 ITU-T V.42bis Data Dictionary Search on the StarCore SC140/SC1400 Cores By Emilian Medve 1 This application note presents a StarCore SC140/SC1400
User Guide. Introduction. HCS12PLLCALUG/D Rev. 0, 12/2002. HCS12 PLL Component Calculator
User Guide HCS12PLLCALUG/D Rev. 0, 12/2002 HCS12 PLL Component Calculator by Stuart Robb Applications Engineering Motorola, East Kilbride Introduction The MC9S12D amily o MCUs includes a Phase-Locked Loop
How To Develop A Toolstick
TOOLSTICK BASE ADAPTER USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage to
Using the High Input Voltage Charger for Single Cell Li-Ion Batteries (KIT34671EPEVBE)
Freescale Semiconductor User s Guide Document Number: KT3467UG Rev..0, 3/008 Using the High Input Voltage Charger for Single Cell Li-Ion Batteries (KIT3467EPEVBE) Purpose This User Guide helps the Lithium-Ion
Motion and Freefall Detection Using the MMA8451, 2, 3Q
Freescale Semiconductor Application Note Document Number: Rev 1, 10/2011 Motion and Freefall Detection Using the MMA8451, 2, 3Q by: Kimberly Tuck Applications Engineer 1.0 Introduction The MMA8451, 2,
PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram
TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools
How To Improve Performance On A P4080 Processor
QorIQ Advanced Multiprocessing (AMP) Series Delivers More than Moore Freescale s new QorIQ AMP series pushes the compute and energy performance envelope beyond the P4080 processor such that its performance
Bootloader with AES Encryption
...the world's most energy friendly microcontrollers Bootloader with AES Encryption AN0060 - Application Note Introduction This application note describes the implementation of a bootloader capable of
1 Introduction. Freescale Semiconductor Application Note. Document Number: AN3031 Rev. 1, 04/2010
Freescale Semiconductor Application Note Document Number: AN3031 Rev. 1, 04/2010 Temperature Sensor for the HCS08 Microcontroller Family by: Donnie Garcia MCD Applications, Austin, Texas Rafael Peralez
Building and Debugging a project using Keil MDK-ARM Eclipse plug-in
Freescale Semiconductor Document Number: AN4913 Building and Debugging a project using Keil MDK-ARM Eclipse plug-in Processor Expert Microcontrollers Driver Suite 1. Introduction Processor Expert Microcontrollers
Genesi Pegasos II Setup
Freescale Semiconductor Application Note AN2666 Rev. 0, 07/2004 Genesi Pegasos II Setup by Maurie Ommerman CPD Applications Freescale Semiconductor, Inc. Austin, TX This application note is the first in
MPXAZ6115A MPXHZ6115A SERIES. Freescale Semiconductor Technical Data. MPXAZ6115A Rev 4, 01/2007
Freescale Semiconductor Technical Data Media Resistant and High Temperature Accuracy Integrated Silicon Pressure Sensor for Measuring Absolute Pressure, On-Chip Signal Conditioned, Temperature Compensated
Creating your own Tower Module Custom Relay Module Example
Freescale Semiconductor Application Note Document Number: AN4390 Rev. 0, 11/2011 Creating your own Tower Module Custom Relay Module Example by: Maclain Lobdell Austin, Texas The Tower System is a uniquely
