Using Program Memory As Data Memory. 1. Introduction Program Memory and Data. Contents. Memory. Freescale Semiconductor Application Note
|
|
|
- Carol Reeves
- 9 years ago
- Views:
Transcription
1 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 memory spaces. Program memory is generally used for storing program code, although it can be used for storing data; while, as its name indicates, Data memory is used for storing data. Because the CodeWarrior tool for the Family does not directly support access to Program memory from C code, using assembly code is the only way to access Program memory. To speed a product s time to market, this document includes a Program Memory Functions Library, which can be used for accessing data of various types stored in Program Memory. It is simple, easy to understand, and easy to use. For quick reference, source code is included in Section C in the Appendix Program Memory and Data Memory Program memory and Data memory in the Family are known as P memory and X memory, respectively. Both memory spaces are 16 bits wide; i.e., one word wide. Program memory is normally used for storing program code, i.e. instructions. Data memory is used for storing program data. There is only one kind of instruction for Program memory access: MOVE(M) P:(Rj)+,HHHH. In contrast, many kinds of instructions are used to access Data memory, such as MOVE instructions, bit-manipulation instructions and so on. A detailed comparison between both memory usages is shown in Table 2-1. According to this table, hybrid controllers provide far less Data memory than Program memory. A user can benefit from larger Program memory to store data when the data memory space is insufficient. For example, a user can store various constant coefficients in the Program Flash. The disadvantage of using Program memory is obvious: the access time is longer. Contents 1. Introduction Program Memory and Data Memory Program Memory Functions Library Performance of the APIs Requirements of the APIs pmemreads pmemwrites pmemreadf pmemwritef pmemreadl pmemwritel pmemreadns pmemwritens pmemreadnf pmemwritenf How to Use the Program Memory Functions Library Tips and Tricks Linker Command File for 56F827 External RAM main.c...9 APPENDIX Freescale Semiconductor, Inc., All rights reserved.
2 Program Memory Functions Library Table 2-1. Usage Comparison between Program Memory and Data Memory Program Memory Data Memory How Many Instruction Types? 1 Many Parallel Move Allowed? No Yes Machine Cycles for a MOVE instruction >8 >2 but < its counterpart for Program memory 56F801 56F802 9K (1K RAM/ 8K Flash) 9K (1K RAM/ 8K Flash) 3K (1K RAM/2K Flash) 3K (1K RAM/2K Flash) 56F K (512 RAM/ 32K Flash) 56F K (512 RAM/ 32K Flash) 6K (2K RAM/4K Flash) 6K (2K RAM/4K Flash) 56F807 62K (2K RAM/ 60K Flash) 10K (2K RAM/8K Flash) 56F K (512 RAM/ 32K Flash) 6K (4K RAM/2K Flash) 56F827 65K (1K RAM/ 64K Flash) 8K (4K RAM/4K Flash) 3. Program Memory Functions Library This section provides the Program memory function APIs which can be called by C code to access Program memory. Program memory is limited to the Program RAM in the case of memory write functions. For writing into the Program Flash/ROM, the relevant Flash/ROM algorithm should be used. These functions support various data types: bool; char; unsigned char; short; unsigned short; int; unsigned int; long; unsigned long; float; double; and pointer. A description of each function s performance follows. 3.1 Performance of the APIs The performance numbers that follow are calculated under these conditions: Table 3-2. Performance of the APIs Program Memory Functions Oscillator Cycles Instructions Words pmemreads 18 2 pmemwrites 18 2 pmemreadf 28 4 pmemwritef 28 4 pmemreadl Freescale Semiconductor
3 pmemwrites Table 3-2. Performance of the APIs (Continued) Program Memory Functions Oscillator Cycles Instructions Words pmemwritel 28 4 pmemreadns 16+N*10 5 pmemwritens 16+N*10 5 pmemreadnf 16+N*20 7 pmemwritenf 16+N*20 7 The functions run from the on-chip program memory N stands for the number of data in words to be read or written When the functions are executed from external Program memory which requires wait states, the execution will be slower. 3.2 Requirements of the APIs Since there are no boundary checks by the Program memory functions, the user must ensure all addresses passed to the function APIs are within the scope of the device memory. The program memory functions do not use any stack space to pass parameters and return values.the stack space required for execution of a program memory function is only one word. 3.3 pmemreads This function reads a short value from the Program memory at the specified address. It can also be used to read other types of data: unsigned short; bool; char; unsigned char; int; and unsigned int, since they are represented in 16 bits in memory by CodeWarrior. Prototype: short pmemreads(void *address); Input: address A pointer to the location in P memory to be read Return: A short value 3.4 pmemwrites This function writes a short value to the Program RAM at the specified address. It can also be used to write other types of data: unsigned short; bool; char; unsigned char; int; and unsigned int, since they are represented in 16 bits in memory by CodeWarrior. Prototype: void pmemwrites(void *address,short data); Input: address A pointer to the location in P RAM to write data Return: None A short value to be written Freescale Semiconductor 3
4 Program Memory Functions Library 3.5 pmemreadf This function reads a float value from the Program memory at the specified address. Prototype: float pmemreadf(void *address); Input: address Return: A float value 3.6 pmemwritef A pointer to the location in P memory to be read This function reads a float value to the Program RAM at the specified address. Prototype: void pmemwritef(void *address,float data); Input: address data Return: None 3.7 pmemreadl A pointer to the location in P RAM where the value is to be written A float value to be written This function reads a long value from the Program memory at the specified address. Prototype: long pmemreadl(void *address); Input: address Return: A long value 3.8 pmemwritel A pointer to the location in P memory where data are to be read This function writes a long value to the Program RAM at the specified address. Prototype: void pmemwritel(void *address,long data); Input: address data Return: None A pointer to the location in P RAM where the value is to be written A long value to be written 4 Freescale Semiconductor
5 pmemreadnf 3.9 pmemreadns This function reads an array of short values with nelem elements from the Program memory at addressfrom and stores these data into Data memory at addressto. It can also be used to read other types of data: unsigned short; bool; char; unsigned char; int; and unsigned int since they are represented in 16 bits in memory by CodeWarrior. Prototype: short pmemreadns(void *addressfrom,void *addressto,unsigned short nelem); Input:, addressfrom A pointer to the source location in P memory from which data are to be read addressto nelem Return: A short value last read 3.10 pmemwritens A pointer to the destination location in X memory where data are to be written Indicates the number of elements in the short array where data are to be stored This function writes an array of short values with nelem elements to the program RAM memory at addressto from the Data memory at addressfrom. It can also be used to write other types of data: unsigned short; bool; char; unsigned char; int; and unsigned int, since they are represented in 16 bits in memory by CodeWarrior. Prototype: void pmemwritens(void * addressfrom,void * addressto,unsigned short nelem); Input: addressfrom A pointer to the source location in X memory from which data are to be read addressto nelem Return: None 3.11 pmemreadnf A pointer to the destination location in P memory where data are to be written Indicates the number of elements in the short array to be written This function reads an array of 32-bit values with nelem elements from the Program RAM memory at addressfrom and stores these data into Data memory at addressto. It can be used to read an array of long values or float values. Prototype: short pmemreadnf(void *addressfrom,void *addressto,unsigned short nelem); Input: addressfrom A pointer to the location in P memory from which data are to be read addressto nelem Return: A short value last read A pointer to the location in X memory where data are to be written Indicates the number of elements in the short array where data are to be received Freescale Semiconductor 5
6 How to Use the Program Memory Functions Library 3.12 pmemwritenf This function writes an array of 32-bit values with nelem elements to the Program RAM memory at addressto from the Data memory at addressto. It can be used to read an array of long values or float values. Prototype: void pmemwritenf(void * addressfrom,void * addressto,unsigned short nelem); Input: addressfrom addressto nelem Return: None A pointer to the location in X memory from which data are to be read A pointer to the location in P memory where data are to be written Indicates the number of elements in the short array to be written 4. How to Use the Program Memory Functions Library There are some tips and tricks for using the Program Memory Functions Library. Here is an example of storing constant variables in the program memory on the 56F827. The framework of the sample code is generated with Freescale s Embedded Stationery. The global constant variables defined in main.c will be stored in the external Program RAM at load time. This can be achieved by setting the compiler to emit const defined data to the.rodata section and by using the linker command file as shown. The.ApplicationCode section contains code lines similar to these: # rodata: Constants to be placed in Program memory _Prodata_start_addr_in_RAM =.; F_Prodata_start_addr_in_RAM =.; main.c (.rodata) F_Prodata_size =. - _Prodata_start_addr_in_RAM; These code lines direct the linker to put the global constant variables defined in main.c into the Program RAM. After the code is loaded by the CodeWarrior debugger, the Program RAM contains these global constants. However, take care when using strings in CodeWarrior. 4.1 Tips and Tricks Without the keyword const just before the variable name ErrorMessages, the following definition results in that data will be stored in.data section instead of in the.rodata section. const char * ErrorMessages [] = "IO ERROR", "TRBLE MODE ERR", "DATA ERROR", "DATA CORRUPTED", "DISPLAY ERROR", "MEMORY ERROR", "INVALID PARAMETER" ; 6 Freescale Semiconductor
7 Linker Command File for 56F827 External RAM In the code above, there are constant strings which will be stored in Data memory instead of in Program memory, since CodeWarrior puts those strings in the.data section. To direct CodeWarrior to store constant strings in the.rodata section and then in the Program memory, check "Make Strings ReadOnly" in the Code Generation\M56800 Processor panel. In general, the user can refer to the linker map file for the Program and Data memory usages. 4.2 Linker Command File for 56F827 External RAM # Linker.cmd file for DSP56827EVM External RAM # using both internal and external data memory (EX = 0) # and using external program memory (Mode = 3) #******************************************************************************* MEMORY.pInterruptVector (RX) : ORIGIN = 0x0000, LENGTH = 0x0086.pExtRAM (RWX) : ORIGIN = 0x0086, LENGTH = 0xFF7A.xAvailable (RW) : ORIGIN = 0x0000, LENGTH = 0x0030.xCWRegisters (RW) : ORIGIN = 0x0030, LENGTH = 0x0010.xIntRAM_DynamicMem (RW) : ORIGIN = 0x0040, LENGTH = 0x0FC0.xPeripherals (RW) : ORIGIN = 0x1000, LENGTH = 0x0400.xReserved1 (R) : ORIGIN = 0x1400, LENGTH = 0x0C00.xFlash (R) : ORIGIN = 0x2000, LENGTH = 0x1000.xReserved2 (R) : ORIGIN = 0x3000, LENGTH = 0x1000.xExtRAM (RW) : ORIGIN = 0x4000, LENGTH = 0xA000.xExtRAM_DynamicMem (RW) : ORIGIN = 0xE000, LENGTH = 0x1200.xStack (RW) : ORIGIN = 0xF200, LENGTH = 0x0D80.xCoreRegisters (RW) : ORIGIN = 0xFF80, LENGTH = 0x0080 #******************************************************************************* FORCE_ACTIVE FconfigInterruptVector SECTIONS # # Data (X) Memory Layout # _EX_BIT = 0; # Internal Memory Partitions (for mem.h partitions) _NUM_IM_PARTITIONS = 1; # IM_ADDR_1 (no IM_ADDR_2 ) # External Memory Partition (for mem.h partitions) _NUM_EM_PARTITIONS = 1; # EM_ADDR_1 #*******************************************************************************.ApplicationInterruptVector : vector.c (.text) >.pinterruptvector #*******************************************************************************.ApplicationCode : Freescale Semiconductor 7
8 How to Use the Program Memory Functions Library # Place all code into External Program RAM * (.text) * (rtlib.text) * (fp_engine.text) * (user.text) # data to be placed into Program RAM F_Pdata_start_addr_in_ROM = 0; F_Pdata_start_addr_in_RAM =.; pramdata.c (.data) # rodata: Constants to be placed in Program memory _Prodata_start_addr_in_RAM =.; F_Prodata_start_addr_in_RAM =.; main.c (.rodata) F_Prodata_size =. - _Prodata_start_addr_in_RAM; F_Pdata_ROMtoRAM_length = 0; F_Pbss_start_addr =.; _P_BSS_ADDR =.; pramdata.c (.bss) F_Pbss_length =. - _P_BSS_ADDR; F_Pram_end_addr =.; >.pextram #*******************************************************************************.ApplicationData : # Define variables for C initialization code F_Xdata_start_addr_in_ROM = ADDR(.xFlash) + SIZEOF(.xFlash) / 2; F_StackAddr = ADDR(.xStack); F_StackEndAddr = ADDR(.xStack) + SIZEOF(.xStack) / 2-1; F_Xdata_start_addr_in_RAM =.; # Define variables for mem library FmemEXbit =.; WRITEH(_EX_BIT); FmemNumIMpartitions =.; WRITEH(_NUM_IM_PARTITIONS); FmemNumEMpartitions =.; WRITEH(_NUM_EM_PARTITIONS); FmemIMpartitionList =.; WRITEH(ADDR(.xIntRAM_DynamicMem)); WRITEH(SIZEOF(.xIntRAM_DynamicMem) / 2); 8 Freescale Semiconductor
9 main.c FmemEMpartitionList =.; WRITEH(ADDR(.xExtRAM_DynamicMem)); WRITEH(SIZEOF(.xExtRAM_DynamicMem) /2); # Place rest of the data into External RAM * (.data) * (fp_state.data) * (rtlib.data) F_Xdata_ROMtoRAM_length = 0; F_Xbss_start_addr =.; _X_BSS_ADDR =.; * (rtlib.bss.lo) * (.bss) F_Xbss_length =. - _X_BSS_ADDR; # Copy DATA >.xextram #******************************************************************************* FArchIO = ADDR(.xPeripherals); FArchCore = ADDR(.xCoreRegisters); 4.3 main.c File: main.c #include "pmemop.h" ****************************************************** * Skeleton C main program for use with Embedded Software ****************************************************** #define assert(a)\ if(!a)\ \ asm(debug)\ extern void * _Prodata_start_addr_in_RAM; extern void * _Prodata_size; extern void * _Pram_end_addr; #pragma use_rodata on const short ShortArray [3][3] = 0x4000, 0x5000, 0x6000, Freescale Semiconductor 9
10 How to Use the Program Memory Functions Library 0x7000, 0x8000, 0x9000, 0xa000, 0xb000, 0xc000 ; const float FloatArray [3][3] = 0.5, 1.0, 2.5, 3.0, 3.25, 4.0, 0.25, 4.25, 5.5 ; const long LongArray[3][3] = 0x55aaff00,0xff0055aa,0x0055ffaa, 0x ,0x ,0x a, 0x456789ab,0x56789abc,0x6789abcd ; * Without 'const' just before the variable name,the following defintion results in that * data will be stored in.data section instead of.rodata section * This is testified by the linker map file. * Please check "Make Strings ReadOnly" in the Code Generation\M56800 Processor panel. const char * const ErrorMessages [] = "IO ERROR", "TRBLE MODE ERR", "DATA ERROR", "DATA CORRUPTED", "DISPLAY ERROR", "MEMORY ERROR", "INVALID PARAMETER" ; #pragma use_rodata off void main (void) int i,j; shorts[3][3]; // stores the array of short values floatf[3][3]; // stores the array of float values longl[3][3]; // stores the array of long values char*msg_pointer[7];// stores the pointers to the strings charmsg[50]; // stores the actual string longldata = 0x L; 10 Freescale Semiconductor
11 main.c * CASE 1: test pmemreads to read a single short value and pmemreadf to read a single float value and * pmemreadl to read a long value. for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) s[i][j] = pmemreads((void*)&shortarray[i][j]);// read short values from p memory at &ShortArray [i][j] f[i][j] = pmemreadf((void*)&floatarray[i][j]);// read float values from p memory at &FloatArray [i][j] l[i][j] = pmemreadl((void*)&longarray[i][j]);// read long values from p memory at &LongArray [i] [j] * CASE 2: test pmemreadns to read an array of short values. pmemreadns((void*)errormessages,msg_pointer,7);// read pointers to the desired strings for (i = 0; i < 7;i++) pmemreadns(msg_pointer[i],msg,20);// check msg to see whether it contains the desired string * CASE 3: test pmemwritens to write an array of short values. for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) s[i][j] = (i+1)*j; // initialize the short array pmemwritens((void*)s,(void*)shortarray,9);// write 9 shorts in the program memory for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) s[i][j] = 0; // reset the short array pmemreadns((void*)shortarray,(void*)s,9); Freescale Semiconductor 11
12 How to Use the Program Memory Functions Library for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) assert(s[i][j] == (i+1)*j); // check the returned value * CASE 4: test pmemwritenf to write an array of float values. for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) f[i][j] = (i+10.0)*j; // initialize the short array pmemwritenf(f,(void*)floatarray,9);// write 9 shorts in the program memory for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) f[i][j] = 0.0; // reset the short array pmemreadnf((void*)floatarray,(void*)f,9); for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) assert(f[i][j] == (i+10.0)*j);// check the returned value * CASE 5: test pmemwritenf to write an array of long values. for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) l[i][j] = (i+0x l)*j+0x l; // initialize the long array 12 Freescale Semiconductor
13 main.c pmemwritenf((void*)l,(void*)longarray,9);// write 9 long values to the program memory for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) l[i][j] = 0; // reset the short array pmemreadnf((void*)longarray,(void*)l,9); for (i = 0; i < 3; i++) for(j = 0; j < 3; j++) assert(l[i][j] == (i+0x l)*j+0x l); // check the returned value * CASE 6: test pmemwritel to write a long value ldata = 0x L; pmemwritel((void*)&_pram_end_addr,ldata); ldata = pmemreadl((void*)&_pram_end_addr); assert(ldata == 0x L); * CASE 7: test pmemwrites to write a short value pmemwrites((void*)&_pram_end_addr,0x1234); s[0][0]= pmemreads((void*)&_pram_end_addr); assert(s[0][0]==0x1234); * CASE 8: test pmemwritefto write a float value pmemwritef((void*)&_pram_end_addr, ); f[0][0]= pmemreadf((void*)&_pram_end_addr); assert(f[0][0]== ); Freescale Semiconductor 13
14 How to Use the Program Memory Functions Library APPENDIX Before reading the source code of the Program Memory Functions Library, a user must understand CodeWarrior Data Representation and the C Calling Conventions, which are shown here for reference. A. CodeWarrior Data Representation A.1 Bool; Char; Short; Int; and Pointer Types These types are represented in one word; i.e., 16 bits, as shown below: B A.2 Long; Float and Double Types These types are represented in two words in Little Endian Mode: the high address word stores high data word, and the low address word stores low data word. High Word Low Word B Address + 1 B Address B. CodeWarrior Calling Conventions CodeWarrior for Freescale may store data and calls functions differently from other target platforms. Registers A, R2, R3, Y0 and Y1 pass parameters to functions When a function is called, the parameter list is scanned from left to right. The parameters are passed in this way: 1. The first long fixed-point value is placed in A 2. The first two 16-bit fixed-point values are placed in Y0 and Y1 3. The first two 16-bit addresses are placed in R2 and R3 4. If there are no long fixed-point parameters, the first non-fixed-point 32-bit value or 19-bit address is placed in A. 5. If there are no 16-bit fixed-point parameters, the first two 16-bit non-fixed-point, non-address values are placed in Y0 and Y1 (and Y0 receives the single value when only one is passed) 14 Freescale Semiconductor
15 main.c 6. All remaining parameters are pushed onto the stack, beginning with the right-most parameter. Multiple-word parameters (19- and 32-bit values) have their least significant word pushed onto the stack first. When calling a routine that returns a structure, the caller passes an address in R0, which specifies where to copy the structure. The registers A, R0, R2, and Y0 are used to return function results as follows: Long fixed-point values are returned in A All 19-bit addresses and 32-bit values are returned in A 16-bit addresses are returned in R2 All 16-bit non-address values are returned in Y0 C. Source Code of Program Memory Functions Library C.1 pmemop.h #ifndef pmemop_h #define pmemop_h short pmemreads(void *address); long pmemreadl(void *address); float pmemreadf(void *address); short pmemreadns(void *addressfrom,void *addressto,unsigned short nelem); short pmemreadnf(void *addressfrom,void *addressto,unsigned short nelem); void pmemwrites(void *address,short data); void pmemwritel(void *address,long data); void pmemwritef(void *address,float data); void pmemwritens(void * addressfrom,void * addressto,unsigned short nelem); void pmemwritenf(void * addressfrom,void * addressto,unsigned short nelem); #endif C.2 pmemop.c #include "pmemop.h" * Function: pmemreads * Description: reads a short value from the program memory at address * Input: * address pointer to the location in p memory to be read from * Return: *short value asm short pmemreads(void *address) movem P:(R2)+,y0 rts Freescale Semiconductor 15
16 How to Use the Program Memory Functions Library * Function: pmemreadns * Description: reads an array of short values with nelem elements from the program memory at addressfrom and * stores these data into data memory at addressto. * Input: * addressfrom pointer to the location in p memory to be read *addressto pointer to the location in x memory where data are to be written *nelem indicates the number of elements in the short array to be read * Return: *short value last read asm short pmemreadns(void * addressfrom,void * addressto,unsigned short nelem) do Y0,endr movem P:(R2)+,y0//addressFrom move y0,x:(r3)+//addressto endr: rts * Function: pmemreadf * Description: reads a float value from the program memory at address * Input: * address pointer to the location in p memory to be read * Return: *float value asm float pmemreadf(void *address) movem P:(R2)+,x0 movem P:(R2)+,a move x0,a0 rts * Function: pmemreadnf * Description: reads an array of float values with nelem elements from the program memory at addressfrom and * stores these data into data memory at addressto. * Input: * addressfrom pointer to the location in p memory to be read from *addressto pointer to the location in x memory where data are to be written *nelem indicates the number of elements in the short array to be read * Return: *short value last read 16 Freescale Semiconductor
17 main.c asm short pmemreadnf(void * addressfrom,void * addressto,unsigned short nelem) do Y0,endr movem P:(R2)+,y0//addressFrom : low word move y0,x:(r3)+//addressto movem P:(R2)+,y0//addressFrom : high word move y0,x:(r3)+//addressto endr: rts * Function: pmemreadl * Description: reads a long value from the program memory at address * Input: * address pointer to the location in p memory to be read * Return: *long value asm long pmemreadl(void *address) movem P:(R2)+,x0 movem P:(R2)+,a move x0,a0 rts * Function: pmemwrites * Description: writes a short value to the program memory at address * Input: * address pointer to the location in p memory to be written to * data a short value to be written; * Return: *none asm void pmemwrites(void *address,short data) move y0,p:(r2)+ rts * Function: pmemwritens * Description: writes an array of short values with nelem elements to the program memory at addressto * from the data memory at addressfrom * Input: * addressfrom pointer to the location in x memory to be read *addressto pointer to the location in p memory where data are to be written Freescale Semiconductor 17
18 How to Use the Program Memory Functions Library *nelem * Return: *none indicates the number of elements in the short array to be read asm void pmemwritens(void * addressfrom,void * addressto,unsigned short nelem) do Y0,endr move X:(R2)+,y0//addressFrom move y0,p:(r3)+//addressto endr: rts * Function: pmemwritel * Description: writes a long value to the program memory at address * Input: * address pointer to the location in p memory to be written to * data a long value to be written; * Return: *none asm void pmemwritel(void *address,long data) move a0,x0 move x0,p:(r2)+ move a1,p:(r2)+ rts * Function: pmemwritef * Description: writes a float value to the program memory at address * Input: * address pointer to the location in p memory to be writen to; * data a float value to be writen; * Return: * none asm void pmemwritef(void *address,float data) move a0,x0 move x0,p:(r2)+ move a1,p:(r2)+ rts * Function: pmemwritenf * Description: writes an array of float values with nelem elements to the program memory at addressto from * the data memory at addressto. 18 Freescale Semiconductor
19 main.c * Input: * addressfrom pointer to the location in x memory to be read * addressto pointer to the location in p memory where data are to be writen * nelem indicates the number of elements in the short array to be read * Return: * none asm void pmemwritenf(void * addressfrom,void * addressto,unsigned short nelem) do Y0,endr move X:(R2)+,y0 //addressfrom : low word move y0,p:(r3)+ //addressto move X:(R2)+,y0 //addressfrom : high word move y0,p:(r3)+ //addressto endr: rts Freescale Semiconductor 19
20 How to Reach Us: Home Page: USA/Europe or Locations Not Listed: Freescale Semiconductor Technical Information Center, CH N. Alma School Road Chandler, Arizona or Europe, Middle East, and Africa: Freescale Halbleiter Deutschland GmbH Technical Information Center Schatzbogen Muenchen, Germany (English) (English) (German) (French) [email protected] 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 Hong Kong Ltd. Technical Information Center 2 Dai King Street Tai Po Industrial Estate Tai Po, N.T., Hong Kong [email protected] For Literature Requests Only: Freescale Semiconductor Literature Distribution Center P.O. Box 5405 Denver, Colorado or Fax: [email protected] 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. Freescale and the Freescale logo are trademarks of Freescale Semiconductor, Inc. All other product or service names are the property of their respective owners. This product incorporates SuperFlash technology licensed from SST. Freescale Semiconductor, Inc All rights reserved. AN1952 Rev. 0 9/2005
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
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
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
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
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,
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
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
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
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
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
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
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
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,
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
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
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
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
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,
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
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
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:
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
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
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,
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
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
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
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.
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.......................................................................
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
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
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
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
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
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
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
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
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
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
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
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
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
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 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
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 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
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.............................................................
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
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
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
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
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
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
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
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
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
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
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 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
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
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
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
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
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
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
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,
i.mx Applications Processors with Hantro's Multimedia Framework
Freescale Semiconductor White Paper IMXHANTROWP/D Rev. 2, 09/2004 i.mx Applications Processors with Hantro's Multimedia Framework By: Clint Powell, Freescale Semiconductor Inc. Marko Nurro, Hantro Products
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
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
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,
Quickly Turning Ideas into Microcontroller-Based Applications with CodeWarrior Development Tools and UNIS Processor Expert
Quickly Turning Ideas into Microcontroller-Based Applications with CodeWarrior Development Tools and UNIS Processor Expert Author, Chris Joffrain, Product Manager Document Number: PROCESSXPERTWP Rev. 0
Getting Started with the Student Learning Kit Featuring the Freescale HCS12 Microcontroller Application Module
Freescale Semiconductor SLKS12QSG Quick Reference Guide Rev. 0, 2/2008 Getting Started with the Student Learning Kit Featuring the Freescale HCS12 Microcontroller Application Module Freescale Semiconductor,
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).
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
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,
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
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
Solder Joint Temperature and Package Peak Temperature Determining Thermal Limits during Soldering
Freescale Semiconductor Application Note Document Number: AN3298 Rev. 0, 07/2006 Solder Joint Temperature and Package Peak Temperature Determining Thermal Limits during Soldering 1 Processability of Integrated
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,
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
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
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
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
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
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,
LOW POWER SCHOTTKY. http://onsemi.com GUARANTEED OPERATING RANGES ORDERING INFORMATION
The TTL/MSI SN74LS151 is a high speed 8-input Digital Multiplexer. It provides, in one package, the ability to select one bit of data from up to eight sources. The LS151 can be used as a universal function
SEMICONDUCTOR TECHNICAL DATA
SEMICONDUCTOR TECHNICAL DATA Order this document by MPX5050/D The MPX5050 series piezoresistive transducer is a state of the art monolithic silicon pressure sensor designed for a wide range of applications,
ULN2803A ULN2804A OCTAL PERIPHERAL DRIVER ARRAYS
Order this document by ULN283/D The eight NPN Darlington connected transistors in this family of arrays are ideally suited for interfacing between low logic level digital circuitry (such as TTL, CMOS or
Freescale Semiconductor, I
nc. SEMICONDUCTOR APPLICATION NOTE ARCHIVED BY FREESCALE SEMICONDUCTOR, INC. 00 Order this document by AN8/D by: Eric Jacobsen and Jeff Baum Systems Engineering Group Sensor Products Division Motorola
LOW POWER NARROWBAND FM IF
Order this document by MC336B/D The MC336B includes an Oscillator, Mixer, Limiting Amplifier, Quadrature Discriminator, Active Filter, Squelch, Scan Control and Mute Switch. This device is designed for
AND9190/D. Vertical Timing Optimization for Interline CCD Image Sensors APPLICATION NOTE
Vertical Timing Optimization for Interline CCD Image Sensors APPLICATION NOTE Introduction This application note applies to the ON Semiconductor Interline CCD Image Sensors listed in Table 1. On these
Multicore Processing: Virtualization and Data Center
Networking Multicore Processing: ization Data Center Syed Shah, Nikolay Guenov ization Its Impact ization is a combination of software hardware features that creates virtual CPUs (vcpu) or virtual systems-on-chip
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
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
