Migrating Between MC9S08AC and MCF51AC Flexis Devices
|
|
|
- Whitney Stokes
- 10 years ago
- Views:
Transcription
1 Freescale Semiconductor Application Note Document Number: AN3732 Rev. 0, 06/2008 Migrating Between MC9S08AC and MCF51AC Flexis Devices by: Bruno Castelucci Bruno Nunes RTAC, Americas This application note describes how to migrate from the MC9S08AC device to the MCF51AC device. As the need to add new features accelerates, engineers face the challenging task of migrating applications from 8-bit to 32-bit microcontrollers (MCU). The AC family of devices is part of the Flexis series, which has a single development tool, common peripheral set, and pin-to-pin compatibility to reduce hardware/software investment and maximize reuse when moving between 8-bit and 32-bit. Although most peripherals are identical in this family, there are differences between 8-bit and 32-bit architectures. This document helps designers develop applications for easy migration between 8-bit and 32-bit devices. This application note covers the architectural differences between 8-bit and 32-bit AC MCUs. It provides tips and tricks for writing C applications, ensuring code reuse and an easy migration. Finally, it details the enhancements in CodeWarrior for Microcontrollers, describing how the tool simplifies the porting experience between S08 and ColdFire V1 microcontrollers. Contents 1 Migrating Between 8-Bit and 32-Bit AC Hardware Comparison Common Porting Issues Porting Tip 1: Remove the Assembly Code Porting Tip 2: Assign Interrupt Vectors Using Interrupt Declarations in CodeWarrior Header Files Porting Tip 3: Reference Memory Using Register_Bitname Peripheral Declarations in CodeWarrior Header Files Porting Tip 4: Avoid Software Delays and Maintain Timing through Peripherals Porting Support Clock Module Migration Clock Module Differences Clock Code Examples Timer Module Migration Timer Modules Features Timer Modules in Each AC Version Timer Modules Migrating within 9S08AC Devices Header Files Conclusion Appendix AMCU Change Wizard Freescale Semiconductor, Inc., All rights reserved.
2 Migrating Between 8-Bit and 32-Bit 1 Migrating Between 8-Bit and 32-Bit Before deciding to use 8-bit or 32-bit technology, the following items should be considered. Table 1. 8-Bit vs. 32-Bit The core is not as complex. 8-Bit Devices where low power consumption is more critical than performance. Packaging is an important advantage where space is critical. 32-Bit Increased memory footprint and a wider portfolio of devices. Provides access to high-end hardware devices and complex peripherals. Applications demand more performance. The gap between 32-bit prices and 8-bit prices is getting smaller. A difficulty that can be found when migrating from an 8-bit to a 32-bit application is the use of different software tools. The time it takes to learn features and functionality can be significant, depending on how different the tools are. Hardware tools are commonly different; this implies extra cost and development time. The configuration of peripherals can get as complicated as the complexity gap between an 8-bit and a 32-bit architecture. Simple factors like differences in debugging tools and debugging modules of both devices can impact the development. Regarding the pin out, peripherals and supply pins might be located in different areas of the silicon. The supply voltage might be different and extra hardware might be required. The assignment of signals can vary creating conflict when building the new board. All these differences lead a designer to rewrite software: differences in peripherals, variations in memory maps, and changes in exception handling. These migration headaches could be the difference between a failing and a successful project. The Flexis series of microcontrollers have a single development tool to ease migration between 8-bit (S08) and 32-bit (CFV1). The same CodeWarrior version supports both cores. There is a common peripheral set to preserve software investment between 8-bit and 32-bit. The Flexis family has practical pin compatibility to maximize hardware reuse when moving between 8-bit and 32-bit. 2 Freescale Semiconductor
3 2 AC Hardware Comparison AC Hardware Comparison Figure 1 shows the hardware architecture the S08 (MC9S08AC) and ColdFire V1 (MCF51AC) share. This sharing makes the migrations easy for applications engineers and developers. Figure 1. AC Devices Hardware Comparison Although the CPU is different, a common set of peripherals is shared between the AC devices. This includes the ADC, serial modules, ACMP and others. The ColdFire device also has RTC, CAN and FTM modules that are not present in the S08. Besides the CPU, some other modules are different such as clock and timer modules that will be carefully reviewed in next sections. The AC devices are pin-to-pin compatible, although some pin-count versions are not available for some devices. In Table 2 you can find the pin-count AC version availability. Table 2. AC Devices Pin-Count Availability Device MC9S08AC8/16 X X X MC9S08AC32/48/60 X X X X MC9S08AC96/128 X X X MCF51AC128/256 X X Freescale Semiconductor 3
4 Common Porting Issues 3 Common Porting Issues When porting the software from 8-bit MC9S08AC to 32-bit ColdFire MCF51ACV1AC be aware of subtle architecture differences that can affect the software operation. In this section, these architectural differences will be shown along with how to avoid some mistakes. Other more complex porting issues (clock and timer) that must also be considered will be presented in other sections of this application note. 3.1 Porting Tip 1: Remove the Assembly Code When switching between different architectures the use of in-line assembly instructions is ineffective. 8-bit S08 core and 32-bit ColdFire V1 core have different instruction set architectures. If the code has some in-line assembly instructions, this can lead to a compiler error stating that the instruction operand is invalid. The C code for replacing in-line assembly instructions with correct compiler instructions is an example of that. For example: Must be replaced by: 3.2 Porting Tip 2: Assign Interrupt Vectors Using Interrupt Declarations in CodeWarrior Header Files Interrupt vector tables between the 8-bit S08 and 32-bit ColdFire V1 are not identical and reside in different memory locations. Therefore, vector assignments will not match up in memory space because vector numbers are different. For example: For the MC9S08AC, the RTI interrupt is vector number 29. For the MCF51AC, the RTI interrupt is vector number 91. A common mistake is to use the following improper interrupt assignment: This assignment works only for S08. Then instead of going back and forth when using the S08 and ColdFire V1, use the vector numbers defined by CodeWarrior. A solution is to replace with: 4 Freescale Semiconductor
5 Common Porting Issues 3.3 Porting Tip 3: Reference Memory Using Register_Bitname Peripheral Declarations in CodeWarrior Header Files The on-chip memory in the MC9S08AC and MCF51AC series of MCUs consist of RAM, flash program memory for nonvolatile data storage, plus I/O and control/status registers. These areas are located in different address in MC9S08AC and MCF51AC, as we can see in the Figure 2. Extended Address 0x0_0000 0x0_3FFF 0x0_4000 0x0_7FFF 0x0_8000 0x0_BFFF 0x0_C000 0x0_FFFF DIRECT PAGE REGISTERS 128 BYTES RAM 6016 BYTES HIGH PAGE REGISTERS 112 BYTES RAM 2176 BYTES PPAGE=0 FLASH 7952 BYTES PPAGE=1 FLASH BYTES Paging Window Extended addresses formed with PPAGE and CPU addresses A13:A0 PPAGE=3 FLASH BYTES CPU Address 0x0000 0x007F 0x0080 0x17FF 0x1800 0x186F 0x1870 0x20EF 0x20F0 0x3FFF 0x4000 0x7FFF 0x8000 0xBFFF 0xC000 0xFFFF CPU Address 0x(00)00_0000 0x(00)03_FFFF 0x(00)04_0000 0x(00)7F_FFFF 0x(00)80_0000 0x(00)80_7FFF 0x(00)80_8000 0x(00)BF_FFFF 0x(00)C0_0000 0x(00)C0_000F 0x(00)C0_0010 0x(FF)FF_7FFF 0x(FF)FF_8000 0x(FF)FF_FFFF Figure 2. Different Memory Maps MCF51AC256 Flash memory 256 Kbytes Reserved RAM 32 Kbytes Reserved ColdFire Rapid GPIO Reserved Slave Peripherals The S08 architecture uses a 16-bit data bus. That means the maximum memory addressable is more than 64 KB, so for the MC9S08AC96 and MC9S08AC128 there is a need to use the paging window and a MMU (memory management unit). That isn t necessary in the CF V1 device after the data bus is 32-bit. For further reference on memory paging for S08 devices, refer to AN3730 available at the Freescale website In both devices, RAM and flash memory allocation is determined by respective linker files. A good programming practice is to make reference to memory using register_bitname peripheral declarations in CodeWarrior header files (for example: PTAD_PTAD0) and allow the linker to place variables in available memory and remove absolute address. Freescale Semiconductor 5
6 Clock Module Migration An example of improper absolute memory declaration is: In this case, the code would work for the S08 device, after the 0x80 address is RAM area, but it wouldn t work for the CFV1 because the 0x80 is a flash memory area. To avoid that mistake, the best practice is to use the linker to allocate the variable, so the code should be replaced by: 3.4 Porting Tip 4: Avoid Software Delays and Maintain Timing through Peripherals In many software applications it is common to have software delays or timing in code. When migrating between 8-bit S08 and 32-bit ColdFire V1, software timing will result in a problem because of the different instruction sets and instruction timings. These devices execute at a different frequency: ColdFire V1 instructions execute at CPU frequency, and S08 instructions execute at bus clock frequency. The cycle time required by some instructions differs depending on the platform (S08 or ColdFire) used. For this reason, it is necessary to avoid software delays and use a common time base through peripherals, like TPM, FTM, and RTC. 3.5 Porting Support A useful feature in CodeWarrior that can help port applications faster are Porting Tips. These Porting Tips are built in the compiler and can be controlled through new pragma instructions. They are automatically added to a ColdFire V1 project in the file porting_support.h: This pragma reports all absolute addressing found in code and includes reporting fixed interrupt assignments. The pragmas can be disabled with these commands. This pragma reports anytime it finds invalid assembly codes. 4 Clock Module Migration 4.1 Clock Module Differences The clock module of MC9S08AC is called ICG (internal clock generator). For the Coldfire V1 this module is called MCG (multipurpose clock generator). The integrated clock module provides multiple options for clock source and in-application clock switching. 6 Freescale Semiconductor
7 Clock Module Migration The MC9S08AC ICG provides multiple options for clock sources. This offers a user great flexibility when making choices between cost, precision, current draw, and performance. The ICG consists of four functional blocks: oscillator, internal reference generator, frequency-locked loop (FLL), and clock select blocks. The multipurpose clock generator (MCG) module provides several clock source choices for the MCF51AC. The module contains a frequency-locked loop (FLL) and a phase-locked loop (PLL) that are controllable by either an internal or an external reference clock. The module can select either of the FLL or PLL clocks, or either of the internal or external reference clocks as a source for the MCU system clock. The selected clock source is passed through a reduced bus divider which allows a lower output clock frequency to be derived. The MCG also controls a crystal oscillator (XOSC), which allows an external crystal, ceramic resonator, or another external clock source to produce the external reference clock. There are differences between modes of operation supported by ICG and MCG modules, Table 1 and Table 2 show these modes and provide a brief description of each one. ICG Modes Off The output clock, ICGOUT, is static. This mode may be entered when the STOP instruction is executed. Self-clocked (SCM) Default mode of operation that is entered immediately after reset. The ICG s FLL is open loop and the digitally controlled oscillator (DCO) is free running at a frequency set by the filter bits. FLL engaged internal (FEI) In this mode, the ICG s FLL is used to create frequencies that are programmable multiples of the internal reference clock. FLL bypassed external (FBE) In this mode, the ICG is configured to bypass the FLL and use an external clock as the clock source. FLL engaged external (FEE) The ICG s FLL is used to generate frequencies that are programmable multiples of the external clock reference. MCG Modes Stop Entered whenever the MCU enters a stop state. FLL engaged internal (FEI) (default) MCGOUT is derived from the FLL clock, which is controlled by the internal reference clock. FLL engaged external (FEE) MCGOUT is derived from the FLL clock, which is controlled by the external reference clock. FLL bypassed internal (FBI) MCGOUT is derived from the internal reference clock; the FLL is operational, but its output clock is not used. This mode is useful to allow the FLL to acquire its target frequency while the MCGOUT clock is driven from the internal reference clock. FLL bypassed external (FBE) MCGOUT is derived from the external reference clock; the FLL is operational, but its output clock is not used. This mode is useful to allow the FLL to acquire its target frequency while MCGOUT is driven from the external reference clock. PLL engaged external (PEE) MCGOUT is derived from the PLL clock, which is controlled by the external reference clock. Freescale Semiconductor 7
8 Clock Module Migration PLL bypassed external (PBE) MCGOUT is derived from the external reference clock; the PLL is operational, but its output clock is not used. This mode is useful to allow the PLL to acquire its target frequency while MCGOUT is driven from the external reference clock. Bypassed low power internal (BLPI) MCGOUT is derived from the internal reference clock. The PLL and FLL are disabled, and MCGLCLK is not available for BDC communications. Bypassed low power external (BLPE) MCGOUT is derived from the external reference clock. The PLL and FLL are disabled, and MCGLCLK is not available for BDC communications. For reference, the register map for both clock modules can be found in the next lines. The ICG module registers are: ICG Control Register 1 (ICGC1) ICG Control Register 2 (ICGC2) ICG Status Register 1 (ICGS1) ICG Status Register 2 (ICGS2) ICG Filter Registers (ICGFLTU, ICGFLTL) ICG Trim Register (ICGTRM). The MCG module has the following registers: MCG Control Register 1 (MCGC1) MCG Control Register 2 (MCGC2) MCG Control Register 3 (MCGC3) MCG Control Register 4 (MCGC4) MCG Status and Control Register (MCGSC) MCG Test Register (MCGT) For further reference on clock modules details, please refer to corresponding data sheets and reference manuals. 4.2 Clock Code Examples To ease the ICG to MCG migration path, in this section you can find examples using ICG and MCG modules. It will be provided code for both modules, using internal and external clock references. NOTE The Device Initialization tool in CodeWarrior is also a powerful tool to help in the migration. With this tool you can visually configure both modules, and the code necessary will be automatically generated Internal Clock Configuration In the following initialization function Int_S08_ICG_init(), the frequency FLL will be used (in FEI mode) to multiply the internal 243 khz (approximate) reference clock up to 40 MHz to achieve 20 MHz bus frequency for the MC9S08AC device. 8 Freescale Semiconductor
9 Clock Module Migration void Int_S08_ICG_init(){ ICGC1 = 0x4C; Bit 7 HGO 0 Configures oscillator for low power Bit 6 RANGE 1 Configures oscillator for high-frequency range; FLL prescale factor is 1 Bit 5 REFS 1 Oscillator using crystal or resonator requested (bit is really a don t care) Bits 4:3 CLKS 01 FLL engaged, internal reference clock mode Bit 2 OSCSTEN 1 Enables the oscillator Bit 1 LOCD 0 Loss-of-clock enabled Bit 0 0 Unimplemented or reserved, always reads zero ICGC2 = 0x70; Bit 7 LOLRE 0 Generates an interrupt request on loss of lock Bit 6:4 MFD 111 Sets the MFD multiplication factor to 18 Bit 3 LOCRE 0 Generates an interrupt request on loss of clock Bit 2:0 RFD 000 Sets the RFD division factor to 1 ICGTRM = *(unsigned char*far)0xffbe; /* Initialize ICGTRM register from a non volatile memory */ while(!icgs1_lock) { /* Wait until FLL is locked*/ } } In the Int_V1_MCG_init() function below, the FLL will be used (FEI) to multiply the internal 32 khz to achieve a 20 MHz bus frequency. This system will also use the trim function to fine tune the frequency based on nonvolatile memory position. void Int_V1_MCG_init(){ /* System clock initialization */ MCGTRM = *(unsigned char*far)0x03ff; /* Initialize MCGTRM register from a nonvolatile memory */ MCGSC = *(unsigned char*far)0x03fe; /* Initialize MCGSC register from a nonvolatile memory */ MCGC2 = 0x00; /* Set MCGC2 register */ Bit 7:6 BDIV 00 Divides selected clock by 1 Bit 5 RANGE 0 low frequency range selected for the crystal oscillator of 32 khz to 100 khz Bit 4 HGO High Gain Oscillator Select 0 Configure crystal oscillator for low power operation Bit 3 Power Select 0 FLL (or PLL) is not disabled in bypass modes. Bit 2 EREFS 0 not used here Bit 1 ERCLKEN 0 not used Bit 0 EREFSTEN 0 not used MCGC1 = 0x06; /* Set MCGC1 register */ Bit 7:6 CLKS 00 Output of FLL or PLL is selected. Bit 5:3 RDIV not used Bit 2 IREFS 1 Internal reference clock selected Bit 1 IRCLKEN 1 Enables the internal reference clock for use as MCGIRCLK. Bit 0 IREFSTEN 0 0 Internal reference clock is disabled in stop Freescale Semiconductor 9
10 Clock Module Migration MCGC3 = 0x81; /* Set MCGC3 register */ Bit 7 LOLIE 1 Generate an interrupt request on loss of lock. Bit 6 PLLS 0 FLL is selected Bit 5 CME 0 Clock monitor is disabled. Bit 4 DIV32 0 Divide-by-32 is disabled. Bit 3:0 VDIV VCO Divider not used MCGC4 = 0x21; /* Set MCGC4 register */ Bit 7:6 0 Reserved. Bit 5 DMX32 1 DCO is fined tuned for maximum frequency with khz reference. Bit 4:2 0 reserved Bit 1 DRST: indicate the current frequency range for the FLL output, DCOOUT. Bit 0 DRS select the frequency range for the FLL output: 01Mid range } while(!mcgsc_lock) { /* Wait until FLL is locked */ } External Clock Configuration In the following initialization function Ext_S08_ICG_init(), a 4 MHz external crystal oscillator was used to generate a 16 MHz bus clock frequency. void Ext_V1_ICG_init(){ ICGC1 = 0xFC; Bit 7 HGO 1 Configures oscillator for high gain Bit 6 RANGE 1 Configures oscillator for high-frequency range; FLL prescale factor is 1 Bit 5 REFS 1 Oscillator using crystal or resonator requested Bits 4:3 CLKS 11 FLL engaged, external reference Bit 2 OSCSTEN 1 Enables the oscillator Bit 1 LOCD 0 Loss-of-clock enabled Bit 0 0 Unimplemented or reserved, always reads zero ICGC2 = 0x20; Bit 7 LOLRE 0 Generates an interrupt request on loss of lock Bit 6:4 MFD 010 Sets the MFD multiplication factor to 8 Bit 3 LOCRE 0 Generates an interrupt request on loss of clock Bit 2:0 RFD 000 Sets the RFD division factor to 1 while(!icgs1_lock) { /* Wait until FLL is locked*/ } } The same was made using the MCG module for the MCF51AC device in the Ext_V1_MCG_init() function below. void Ext_V1_MCG_init(){ 10 Freescale Semiconductor
11 Timer Module Migration MCGC2 = 0x36; /* Set MCGC2 register */ Bit 7:6 BDIV 00 Divides selected clock by 1 Bit 5 RANGE 1 High frequency range selected for the crystal oscillator of 1 MHz to 40 MHz for external clock source. Bit 4 HGO High Gain Oscillator Select 1 Configure crystal oscillator for high gain operation Bit 3 Power Select 0 FLL (or PLL) is not disabled in bypass modes. Bit 2 EREFS 1 Oscillator requested Bit 1 ERCLKEN 1 External Reference Enable Enables the external reference Bit 0 EREFSTEN 0 External Reference Stop Enable- External reference clock is disabled in stop mode. MCGC3 = (unsigned char)0x10; MCGC1 = 0x10; /* Set MCGC1 register */ Bit 7:6 CLKS 00 Output of FLL is selected. Bit 5:3 RDIV 010 External Reference Divider by 1 Bit 2 IREFS 1 External reference clock selected Bit 1 IRCLKEN 0 not used Bit 0 IREFSTEN 0 not used MCGC3 = 0x91; /* Set MCGC3 register */ Bit 7 LOLIE 1 Generate an interrupt request on loss of lock. Bit 6 PLLS 0 FLL is selected Bit 5 CME 0 Clock monitor is disabled. Bit 4 DIV32 1 Divide-by-32 is enabled. Bit 3:0 VDIV 0001 VCO Divider not used MCGC4 = 0x01; /* Set MCGC4 register */ Bit 7:6 0 Reserved. Bit 5 DMX32 0 DCO isn t fined tuned Bit 4:2 0 reserved Bit 1 DRST 0 : indicate the current frequency range for the FLL output, DCOOUT. Bit 0 DRS select the frequency range for the FLL output: 01Mid range while(mcgsc_irefst); /* Wait until external reference is selected */ while(!mcgsc_lock) ; /* Wait until FLL is locked */ while((mcgsc & 0x0C)!= 0x00) { reference */ } /* Wait until FLL clock is selected as a bus clock } 5 Timer Module Migration The 8-bit MC9S08AC devices have three TPM (timer and PWM module). The 32-bit MCF51AC devices have two FTM (FlexTimer module) and also one TPM (timer and PWM module). Freescale Semiconductor 11
12 Timer Module Migration 5.1 Timer Modules Features The FTM module has the same features as the TPM module and others such as dead time insertion and fault detection. The Table 3 shows a comparison of the two different timer modules features. Table 3. Timer Modules Features FTM Features Include TPM Features Include Backwards compatible with TPM FTM source clock is selectable Source clock can be the system clock, the fixed system clock, or a clock from an external pin External clock pin may be shared with any FTM channel pin or a separated input pin Prescaler divide-by 1, 2, 4, 8, 16, 32, 64, or 128 External clock source is synchronized to the system clock by FTM FTM has a 16-bit counter It can be a free-running counter or a counter with initial and final value The counting can be up or up-down The generation of one interrupt per channel The generation of one interrupt in the end of the counting Each channel can be configured for input capture, output compare, or edge-aligned PWM mode In input capture mode the capture can occur on rising edges, falling edges, or both edges an input filter can be selected for some channels In output compare mode the output signal can be set, cleared or toggled on match All channels can be configured for center-aligned PWM mode Each pair of channels can be combined to generate a PWM signal (with independent control of both edges of PWM signal) The FTM channels can operate as pairs with equal outputs, pairs with complementary outputs, or independent channels (with independent outputs) The deadtime insertion is available for each complementary pair Generation of triggers to ADC (hardware trigger) Software control of PWM outputs A fault input for global fault control The polarity of each channel is configurable The load of the FTM registers that have write buffers can be synchronized Write protection for critical registers TPM source clock is selectable Source clock can be the system clock, the fixed system clock or a clock from an external pin External clock pin may be shared with any TPM channel pin or a separated input pin Prescaler divide-by 1, 2, 4, 8, 16, 32, 64, or 128 TPM has a 16-bit counter It can be a free-running counter or a counter modulo final value The counting can be up or up-down The generation of one interrupt per channel The generation of one interrupt in the end of the counting Each channel can be configured for input capture, output compare, or edge-aligned PWM mode In input capture mode the capture can occur on rising edges, falling edges, or both edges In output compare mode the output signal can be set, cleared, or toggled on match All channels can be configured for center-aligned PWM mode Each TPM may be configured for buffered, center-aligned pulse-width modulation (CPWM) on all channels 5.2 Timer Modules in Each AC Version Some of the 9S08AC MCU devices have timer modules with more or fewer channels than others to reduce price and best fit in each market application. Table 4 shows how many and what timer modules are present in each device, separated by pin count. 12 Freescale Semiconductor
13 Timer Module Migration Table 4. Timer Modules on AC Devices Device MC9S08AC8/16 TPM1 4 ch MC9S08AC32/48/60 TPM1 6 ch MC9S08AC96/128 MCF51AC128/256 TPM1 6 ch TPM2 6 ch FTM1 6 ch FTM2 6 ch TPM1 6 ch FTM1 6 ch FTM2 2 ch TPM1 4 ch TPM1 4 ch TPM1 4 ch 5.3 Timer Modules Migrating within 9S08AC Devices The FTM module is backwards compatible with TPM. This means that FTM has all the TPM features. For full compatibility between both timer modules we should consider a project using only TPM features, made for any of the 9S08AC or MCF51AC devices (even if using the FTM). All the TPM registers are compatible with the FTM registers, but as the timer modules are different, the nomenclature changes. For example if we consider the TPM Status and Control Register (TPMxSC), there is a compatible FTM register named FTM Status and Control Register (FTMxSC) with the same control bits and options from the TPM register. When migrating between an 8-bit 9S08AC device to a 32-bit one, the nomenclature changes should be considered and reviewed so that the correspondent timer module works properly. To ease this migration, all the registers in Table 5 should be considered. This table shows the correspondent register in 8-bit and 32-bit Flexis AC devices. Table 5. Timer Modules Registers TPM FTM Definition TPMxSC FTMxSC Status and Control TPMxCNTH FTMxCNTH Counter Register High TPMxCNTL FTMxCNTL Counter Register Low TPMxMODH FTMxMODH Modulo Register High TPMxMODL FTMxMODL Modulo Register Low TPMxC0SC FTMxC0SC Channel 0 Status and Control TPMxC0VH FTMxC0VH Channel 0 Value High TPMxC0VL FTMxC0VL Channel 0 Value Low TPM1 4 ch To ease the migration path, the header files described in the next chapter were created. TPM1 2 ch TPM1 2 ch Freescale Semiconductor 13
14 Conclusion 5.4 Header Files NOTE The Device Initialization tool in CodeWarrior is also a powerful tool to help in the migration. With this tool you can visually configure both modules, and the necessary code will be automatically generated. The header files created with this document are useful when migrating your application between 8-bit and 32-bit Flexis AC devices, especially when the timer module is used. There are two header files. The TimerH_S08toV1.h is to be used when migrating from an MC9S08AC device to an MCF51AC. The TimerH_V1toS08.h file is to be used when migrating from an MCF51AC to an MC9S08AC. The header files are composed of #defines where the FTM registers are mapped using the nomenclature from the TPM registers (and vice-versa for the other header file), as shown in the example for the TimerH_S08toV1.h header file: #define TPM1SC FTM1SC The header file that contains this example is used when migrating from the MC9S08AC to the MCF51AC. In this case, the old TPM registers that were defined to work with the TPM module on the MC9S08AC device will be automatically understood by the compiler as the new FTM registers for the MCF51AC, and the project should migrate with no further problems. Both header files contain all the compatible timer registers, and also all the bit definitions inside these registers. You can find the full header files in the file AN3732.zip available at Freescale website To use these header files in your project, you must include them in the.c file you use timer registers, not only in initialization routines but also in all use of timer registers. To successfully include the files, you should place them in your project folder and then add a include as follows in the beginning of your.c files: #include "TimerH_S08toV1.h" 6 Conclusion The 8-bit to 32-bit Freescale Controller Continuum delivers unique capabilities to system designers, in terms of power optimization, size, performance, peripheral usage, and development tools. By following the porting tips such as being aware of clock and timer module differences and proper use of the new CodeWarrior features, a single application that compiles in 8- and 32-bit architectures can be developed, with working peripherals and improvements to some of the project features. The Flexis series is the 8- to 32-bit connection point in the Freescale Controller Continuum where S08 and ColdFire V1 microcontrollers share common sets of peripherals and development tools to deliver the ultimate in migration flexibility. In addition, with the ability to seamlessly transition upward, the Freescale Controller Continuum provides companies a long term planning capability. It is possible to move quickly from an 8-bit design to a 32-bit design perfect for developing a portfolio of products that span the performance spectrum. 14 Freescale Semiconductor
15 Conclusion Appendix A MCU Change Wizard The MCU change wizard in CodeWarrior for microcontrollers allows you to change cores with very few clicks. A project can change from an S08 to a V1 core in four simple steps. 1. Choose the option Change MCU/Connections. 2. Select the correct ColdFire V1 derivative to migrate the application. 3. Select the connection mode. 4. Click on the finish button. Figure below shows how to change from an S08 core to a ColdFire V1 core. Figure 3. MCU Change Wizard The group of libraries is different in the 8- and 32-bit cores. The integrated tool provides all the files used to build a project in both Flexis AC devices. Freescale Semiconductor 15
16 How to Reach Us: Home Page: Web Support: USA/Europe or Locations Not Listed: Freescale Semiconductor, Inc. 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] For Literature Requests Only: Freescale Semiconductor Literature Distribution Center P.O. Box 5405 Denver, Colorado or Fax: [email protected] 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 All rights reserved. Information in this document is provided solely to enable system and software implementers to use Freescale Semiconductor 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 and all 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 the 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 and hold 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 claim alleges that Freescale Semiconductor was negligent regarding the design or manufacture of the part. Document Number: AN3732 Rev. 0 06/2008
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
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
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
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
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,
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
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 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
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
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
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
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
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.
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
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
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
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
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
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
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
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:
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
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,
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
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
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
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
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
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
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
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
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
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
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,
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
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
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
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
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
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
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
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
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
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
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
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
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
Avoiding Read While Write Errors When Developing In-Software Flash Programming Applications for Kinetis and ColdFire+ MCUs
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
Freescale Semiconductor, Inc. Product Brief Integrated Portable System Processor DragonBall ΤΜ
nc. Order this document by MC68328/D Microprocessor and Memory Technologies Group MC68328 MC68328V Product Brief Integrated Portable System Processor DragonBall ΤΜ As the portable consumer market grows
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,
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
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
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
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,
AND8336. Design Examples of On Board Dual Supply Voltage Logic Translators. Prepared by: Jim Lepkowski ON Semiconductor. http://onsemi.
Design Examples of On Board Dual Supply Voltage Logic Translators Prepared by: Jim Lepkowski ON Semiconductor Introduction Logic translators can be used to connect ICs together that are located on the
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.............................................................
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,
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
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
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
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
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.......................................................................
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
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
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
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,
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
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
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
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
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
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).
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
How To Use A Watt Saver On A Microcontroller (Watt Saver) On A Cell Phone Or Mp3 Player
Watt Saver for a Cell Phone AC Adapter Reference Design Document Number: DRM130 Rev 1, 10/2013 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction 1.1 Overview...5
BLDC Motor Control with Hall Effect Sensors Using the 9S08MP
Freescale Semiconductor Application Note Document Number: AN458 Rev., 4/2 BLDC Motor Control with Hall Effect Sensors Using the 9S8MP by: Eduardo Viramontes Systems and Applications Engineering Freescale
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,
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
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
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
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
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
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
AND9015. A Solution for Peak EMI Reduction with Spread Spectrum Clock Generators APPLICATION NOTE. Prepared by: Apps Team, BIDC ON Semiconductor
A Solution for Peak EMI Reduction with Spread Spectrum Clock Generators Prepared by: Apps Team, BIDC ON Semiconductor APPLICATION NOTE Introduction This application note will outline Spread Spectrum Clock
Application Module Student Learning Kit Users Guide featuring the Freescale MC9S08QG8
Freescale Semiconductor DEMO9S08QG8UG User Guide Rev. 0, 12/2006 Application Module Student Learning Kit Users Guide featuring the Freescale MC9S08QG8 For use with the following part numbers: APS08QG8SLK
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
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
AN3265 Application note
Application note Handling hardware and software failures with the STM8S-DISCOVERY Application overview This application is based on the STM8S-DISCOVERY. It demonstrates how to use the STM8S window watchdog
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,
KIT34845EPEVME Evaluation Board
Freescale Semiconductor User s Guide Document Number: KT34845UG Rev. 1.0, 6/2009 KIT34845EPEVME Evaluation Board Table of Contents Figure 1. 33845 Evaluation Board (EVB) 1 Kit Contents / Packing List......................................................................
AN3332 Application note
Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three
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
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
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
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
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
APPLICATION NOTE. Atmel AVR134: Real Time Clock (RTC) Using the Asynchronous Timer. Atmel AVR 8-bit Microcontroller. Introduction.
APPLICATION NOTE Atmel AVR134: Real Time Clock (RTC) Using the Asynchronous Timer Introduction Atmel AVR 8-bit Microcontroller This application note describes how to implement a real time counter (RTC)
