TMS320C28x Assembly Language Tools User s Guide

Size: px
Start display at page:

Download "TMS320C28x Assembly Language Tools User s Guide"

Transcription

1 TMS320C28x Assembly Language Tools User s Guide Literature Number: SPRU513A December 2003 Printed on Recycled Paper

2 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product or service without notice. Customers should obtain the latest relevant information before placing orders and should verify that such information is current and complete. All products are sold subject to TI s terms and conditions of sale supplied at the time of order acknowledgment. TI warrants performance of its hardware products to the specifications applicable at the time of sale in accordance with TI s standard warranty. Testing and other quality control techniques are used to the extent TI deems necessary to support this warranty. Except where mandated by government requirements, testing of all parameters of each product is not necessarily performed. TI assumes no liability for applications assistance or customer product design. Customers are responsible for their products and applications using TI components. To minimize the risks associated with customer products and applications, customers should provide adequate design and operating safeguards. TI does not warrant or represent that any license, either express or implied, is granted under any TI patent right, copyright, mask work right, or other TI intellectual property right relating to any combination, machine, or process in which TI products or services are used. Information published by TI regarding third-party products or services does not constitute a license from TI to use such products or services or a warranty or endorsement thereof. Use of such information may require a license from a third party under the patents or other intellectual property of the third party, or a license from TI under the patents or other intellectual property of TI. Reproduction of information in TI data books or data sheets is permissible only if reproduction is without alteration and is accompanied by all associated warranties, conditions, limitations, and notices. Reproduction of this information with alteration is an unfair and deceptive business practice. TI is not responsible or liable for such altered documentation. Resale of TI products or services with statements different from or beyond the parameters stated by TI for that product or service voids all express and any implied warranties for the associated TI product or service and is an unfair and deceptive business practice. TI is not responsible or liable for any such statements. Following are URLs where you can obtain information on other Texas Instruments products and application solutions: Products Applications Amplifiers amplifier.ti.com Audio Data Converters dataconverter.ti.com Automotive DSP dsp.ti.com Broadband Interface interface.ti.com Digital Control Logic logic.ti.com Military Power Mgmt power.ti.com Optical Networking Microcontrollers microcontroller.ti.com Security Telephony Video & Imaging Wireless Mailing Address: Texas Instruments Post Office Box Dallas, Texas Copyright 2004, Texas Instruments Incorporated

3 Preface About This Manual The TMS320C28x Assemby Language Tools User s Guide tells you how to use these assembly language tools: Assembler Archiver Linker Absolute lister Cross-reference lister Object file display utility Name utility Strip utility Hex-conversion utility How to Use This Manual This book helps you learn to use the Texas Instruments assembly language tools specifically designed for the TMS320C28x devices. You can think of this book as four parts: Introductory information, consisting of Chapters 1 and 2, gives you an overview of the assembly language development tools. It also discusses common object file format (COFF), which helps you to use the TMS320C28x tools more efficiently. Read Chapter 2, Introduction to Common Object File Format, before using the assembler and linker. Assembler description, consisting of Chapters 3 through 5, contains detailed information about using the assembler. This part of the book explains how to invoke the assembler and discusses source statement format, valid constants and expressions, assembler output, and assembler directives. It also describes the macro language. Read This First iii

4 Notational Conventions Additional assembly language tools description, consisting of Chapters 6 through 11, describes in detail each of the tools provided with the assembler to help you create executable object files. For example, Chapter 7 explains how to invoke the linker, how the linker operates, and how to use linker directives. Reference material, consisting of Appendixes A through D, provides supplementary information. This part contains technical data about the internal format and structure of COFF object files. It discusses symbolic debugging directives that the TMS320C28x C/C++ compiler uses. Finally, it includes hex-conversion utility examples, assembler and linker error messages, and a glossary. Notational Conventions This document uses the following conventions: The TMS320C28x core is also referred to as TMS320C28x or C28x. Program listings, program examples, and interactive displays are shown in a special typeface. Examples use a bold version of the special typeface for emphasis; interactive displays use a bold version of the special typeface to distinguish commands that you enter from items that the system displays (such as prompts, command output, error messages, etc.). Here is a sample program listing: data F.byte byte D903 ADDB XAR1, #3 In syntax descriptions, the instruction, command, or directive is in a bold typeface and parameters are in an italic typeface. Portions of a syntax that are in bold should be entered as shown; portions of a syntax that are in italics describe the type of information that should be entered. Syntax that is entered on a command line is centered. Syntax that is used in a text file is left-justified. Here is an example of command-line syntax: cl2000 v28 z [options] filename 1,...[ filename n] The cl2000 v28 z command invokes the linker and has two parameters. The first parameter, options, is optional (see the next list item for details). The second parameter, filename 1, is required, and you can optionally enter more than one filename parameter. iv

5 Notational Conventions Square brackets ( [ and ] ) identify an optional parameter. If you use an optional parameter, you specify the information within the brackets. Unless the square brackets are in a bold typeface, do not enter the brackets themselves. This is an example of a command that has an optional parameter: hex2000 [options] filename The hex2000 command has two parameters. The second parameter, filename, is required. The first parameter, options, is optional. Since options is plural, you can select several options. In assembler syntax statements, column 1 is reserved for the first character of a label or symbol. If the label or symbol is optional, it is usually not shown. If it is a required parameter, it is shown starting in the left margin of the shaded box, as in the example below. No instruction, command, directive, or parameter, other than a symbol or label, can begin in column1. symbol.usect section name, size in bytes [, alignment] The symbol is required for the.usect directive and must begin in column 1. The section name must be enclosed in quotes and the parameter size in bytes must be separated from the section name by a comma. The alignment is optional and, if used, must be separated by a comma. Some directives can have a varying number of parameters. For example, the.byte directive can have up to 100 parameters. The syntax for this directive is: Note that.byte does not begin in column 1..byte value 1 [,..., value n ] This syntax shows that.byte must have at least one value parameter, but you have the option of supplying additional value parameters, each separated from the previous one by a comma. Read This First v

6 Related Documentation From Texas Instruments Following are other symbols and abbreviations used throughout this document: Symbol Definition Symbol Definition B,b Suffix binary integer MSB Most significant bit H,h Suffix hexadecimal integer 0x Prefix hexadecimal integer LSB Least significant bit Q,q Suffix octal integer Related Documentation From Texas Instruments The following books describe the TMS320C28x and related support tools. To obtain any of these TI documents, call the Texas Instruments Literature Response Center at (800) When ordering, identify the book by its title and literature number (located on the title page): TMS320C28x Optimizing C/C++ Compiler User s Guide (literature number SPRU514) describes the TMS320C28x C/C++ compiler. This C/C++ compiler accepts ANSI standard C/C++ source code and produces TMS320 assembly language source code for the TMS320C28x device. Code Composer Studio User s Guide (literature number SPRU328) explains how to use the Code Composer development environment to build and debug embedded real-time DSP applications. TMS320C28x DSP CPU and Instruction Set Reference Guide (literature number SPRU430) describes the central processing unit (CPU) and the assembly language instructions of the TMS320C28x fixed-point digital signal processors (DSPs). It also describes emulation features available on these DSPs. TMS320C2xx User s Guide (literature number SPRU127) discusses the hardware aspects of the TMS320C2xx 16-bit fixed-point digital signal processors. It describes the architecture, the instruction set, and the onchip peripherals. vi

7 Related Documentation Related Documentation You can use the following books to supplement this user s guide: Advanced C: Techniques and Applications, Gerald E. Sobelman and David E. Krekelberg, Que Corporation American National Standard for Information Systems Programming Language C X , American National Standards Institute (ANSI standard for C) Programming in C, Steve G. Kochan, Hayden Book Company Programming Language C++, ISO/IEC , American National Standards Institute (ANSI standard for C++) The Annotated C++ Reference Manual, Margaret A. Ellis and Bjarne Stroustrup, published by Addison-Wesley Publishing Company, Reading, Massachusetts, 1990 The C Programming Language (second edition), Brian W. Kernighan and Dennis M. Ritchie, published by Prentice-Hall, Englewood Cliffs, New Jersey, 1988, describes ANSI C. The C++ Programming Language (third edition), Bjarne Stroustrup, published by Addison-Wesley Publishing Company, Reading, Massachusetts, 1997 Understanding and Using COFF, Gintaras R. Gircys, published by O Reilly and Associates, Inc. Read This First vii

8 Trademarks Windows and Windows NT are trademarks of Microsoft Corporation. The Texas Instruments logo and Texas Instruments are registered trademarks of Texas Instruments Incorporated. Trademarks of Texas Instruments include: TI, XDS, Code Composer, Code Composer Studio, TMS320, TMS320C28x and 320 Hotline On-line. All other brand or product names are trademarks or registered trademarks of their respective companies or organizations. viii

9 Contents 1 Introduction to the Software Development Tools Provides an overview of the software development tools. 1.1 Software Development Tools Overview Tools Descriptions Introduction to Common Object File Format Common object file format, or COFF, is the object file format used by the TMS320C28x tools. This chapter discusses the basic COFF concept of sections and how they can help you use the assembler and linker more efficiently. Read this chapter before using the assembler and linker. 2.1 Sections How the Assembler Handles Sections Uninitialized Sections Initialized Sections Named Sections Subsections Section Program Counters An Example That Uses Sections Directives How the Linker Handles Sections Default Memory Allocation Placing Sections in the Memory Map Relocation Run-Time Relocation Loading a Program Symbols in a COFF File External Symbols The Symbol Table Assembler Description Explains how to invoke the assembler and discusses source statement format, valid constants and expressions, and assembler output. 3.1 Assembler Overview The Assembler s Role in the Software Development Flow Invoking the Assembler Naming Alternate Directories for Assembler Input Using the I Assembler Option Using the C2000_A_DIR and A_DIR Environment Variables ix

10 Contents 3.5 Source Statement Format Label Field Mnemonic Field Operand Field Comment Field Constants Binary Integers Octal Integers Decimal Integers Hexadecimal Integers Character Constants Assembly-Time Constants Floating-Point Constants Character Strings Symbols Labels Local Labels Symbolic Constants Defining Symbolic Constants ( d Option) Predefined Symbolic Constants Substitution Symbols Expressions Operators Expression Overflow and Underflow Well-Defined Expressions Conditional Expressions Legal Expressions Built-In Functions Source Listings Debugging Assembly Source Cross-Reference Listings Smart Encoding C-Type Symbolic Debugging for Assembly Variables ( mg option) TMS320C28x Assembler Modes C27x Object Mode C28x Object Mode C28x Object Accept C27x Syntax Mode C28x Object Accept C2xlp Syntax Mode x

11 Contents 4 Assembler Directives Describes the directives according to function and presents the directives in alphabetical order. 4.1 Directives Summary Compatibility With the TMS320C1x/C2x/C2xx/C5x Assembler Directives Directives That Define Sections Directives That Initialize Constants Directive That Aligns the Section Program Counter Directives That Format the Output Listing Directives That Reference Other Files Directives That Enable Conditional Assembly Directives That Define Symbols at Assembly Time Assembler Mode Override Directives Miscellaneous Directives Directives Reference Macro Language Describes macro directives, substitution symbols used as macro parameters, and how to create macros. 5.1 Using Macros Defining Macros Macro Parameters/Substitution Symbols Directives That Define Substitution Symbols Built-In Substitution Symbol Functions Recursive Substitution Symbols Forced Substitutions Accessing Individual Characters of Subscripted Substitution Symbols Substitution Symbols as Local Variables in Macros Macro Libraries Using Conditional Assembly in Macros Using Labels in Macros Producing Messages in Macros Using Directives to Format the Output Listing Using Recursive and Nested Macros Macro Directives Summary Archiver Description Describes instructions for invoking the archiver, creating new archive libraries, and modifying existing libraries. 6.1 Archiver Overview The Archiver s Role in the Software Development Flow Invoking the Archiver Archiver Examples Contents xi

12 Contents 7 Linker Description Explains how to invoke the linker, provides details about linker operation, discusses linker directives, and presents a detailed linking example. 7.1 Linker Overview The Linker s Role in the Software Development Flow Invoking the Linker Linker Options Relocation Capabilities ( a and r Options) Disable Merge of Symbolic Debugging Information ( b Option) C Language Options ( c and cr Options) Define an Entry Point ( e Option) Set Default Fill Value ( f fill_value Option) Make a Symbol Global ( g symbol Option) Make All Global Symbols Static ( h Option) Define Heap Size ( heap size Option) Alter the Library Search Algorithm ( l Option, I Option, and C_DIR Environment Variable) Disable Conditional Linking ( j Option) Ignore Alignment ( k Option) Create a Map File ( m filename Option) Name an Output Module ( o filename Option) Specify a Quiet Run ( q Option) Strip Symbolic Information ( s Option) Define Stack Size ( stack size Option) Introduce an Unresolved Symbol ( u symbol Option) Display a Message When an Undefined Output Section Is Created ( w Option) Exhaustively Read and Search Libraries ( x and priority Options) Generate XML Link Information File ( xml_link_info Option) Linker Command Files Reserved Names in Linker Command Files Constants in Linker Command Files Object Libraries The MEMORY Directive Default Memory Model MEMORY Directive Syntax The SECTIONS Directive SECTIONS Directive Syntax Allocation Specifying Input Sections Specifying a Section s Run-Time Address Specifying Load and Run Addresses Uninitialized Sections Referring to the Load Address by Using the.label Directive xii

13 Contents 7.10 Using UNION and GROUP Statements Overlaying Sections With the UNION Statement Grouping Output Sections Together Overlaying Pages Using the MEMORY Directive to Define Overlay Pages Example of Overlay Pages Using Overlay Pages With the SECTIONS Directive Memory Allocation for Overlaid Pages Special Section Types (DSECT, COPY, and NOLOAD) Default Allocation Output Section Formation Default Allocation Algorithm Assigning Symbols at Link Time Syntax of Assignment Statements Assigning the SPC to a Symbol Assignment Expressions Symbols Defined by the Linker Assigning Exact Start, End, and Size Values of a Section to a Symbol Why the Dot Operator Does Not Always Work Address and Dimension Operators Creating and Filling Holes Initialized and Uninitialized Sections Creating Holes Filling Holes Explicit Initialization of Uninitialized Sections Linker-Generated Copy Tables A Current Boot-Loaded Application Development Process An Alternative Approach Overlay Management Example Generating Copy Tables Automatically with the Linker The table() Operator Boot-Time Copy Tables Using the table() Operator to Manage Object Components Copy Table Contents General Purpose Copy Routine Linker Generated Copy Table Sections and Symbols Splitting Object Components and Overlay Management Partial (Incremental) Linking Linking C Code Run-Time Initialization Object Libraries and Run-Time Support Setting the Size of the Stack and Heap Sections Autoinitialization of Variables at Run Time Autoinitialization of Variables at Load Time The c and cr Linker Options Linker Examples Contents xiii

14 Contents 8 Absolute Lister Description Explains how to invoke the absolute lister to obtain a listing of the absolute addresses of an object file. 8.1 Producing an Absolute Listing Invoking the Absolute Lister Absolute Lister Example Cross-Reference Lister Description Explains how to invoke the cross-reference lister to obtain a listing of symbols, their definitions, and their references in the linked source files. 9.1 Producing a Cross-Reference Listing Invoking the Cross-Reference Lister Cross-Reference Listing Example Object File Utilities Descriptions Explains how to invoke the object file display utility, the name utility, and the strip utility Invoking the Object File Display Utility XML Tag Index Example XML Consumer The Main Application xml.h { Declaration of the XMLEntity Object xml.cpp { Definition of the XMLEntity Object Invoking the Name Utility Invoking the Strip Utility Hex-Conversion Utility Description Explains how to invoke the hex utility to convert a COFF object file into one of several standard hexadecimal formats suitable for loading into an EPROM programmer The Hex-Conversion Utility s Role in the Software Development Flow Invoking the Hex-Conversion Utility Invoking the Hex-Conversion Utility From the Command Line Invoking the Hex-Conversion Utility With a Command File Understanding Memory Widths Target Width Specifying the Memory Width Partitioning Data Into Output Files Specifying Word Order for Output Words The ROMS Directive When to Use the ROMS Directive An Example of the ROMS Directive The SECTIONS Directive Excluding a Specified Section Assigning Output Filenames xiv

15 Contents 11.8 Image Mode and the fill Option Generating a Memory Image Specifying a Fill Value Steps to Follow in Image Mode Building a Table for an On-Chip Boot Loader Description of the Boot Table The Boot Table Format Controlling the Boot Loader Booting From a Device Peripheral Setting the Entry Point for the Boot Table Using the C28x Boot Loader Controlling the ROM Device Address Object Formats ASCII-Hex Object Format ( a Option) Intel MCS-86 Object Format ( i Option) Motorola-S Object Format ( m Option) TI-Tagged SDSMAC Object Format ( t Option) Extended Tektronix Object Format ( x Option) Hex-Conversion Utility Error Messages A Common Object File Format A-1 Contains supplemental technical data about the internal format and structure of COFF object files. A.1 COFF File Structure A-2 A.2 File Header Structure A-4 A.3 Optional File Header Format A-5 A.4 Section Header Structure A-6 A.5 Structuring Relocation Information A-9 A.6 Symbol Table Structure and Content A-11 A.6.1 Special Symbols A-12 A.6.2 Symbol Name Format A-13 A.6.3 String Table Structure A-13 A.6.4 Storage Classes A-14 A.6.5 Symbol Values A-14 A.6.6 Section Number A-15 A.6.7 Auxiliary Entries A-15 B Symbolic Debugging Directives B-1 Discusses symbolic debugging directives that the TMS320C28x C/C++ compiler uses. B.1 DWARF Debugging Format B-2 B.2 COFF Debugging Format B-3 B.3 Debug Directive Syntax B-4 Contents xv

16 Contents C XML Link Information File Description C-1 Discusses the xml_link_info file contents including file element types and document elements. C.1 XML Information File Element Types C-2 C.2 Document Elements C-3 C.2.1 Header Elements C-3 C.2.2 Input File List C-4 C.2.3 Object Component List C-5 C.2.4 Logical Group List C-6 C.2.5 Placement Map C-9 C.2.6 Symbol Table C Glossary D Defines terms and acronyms used in this book. xvi

17 Figures 1 1 TMS320C28x Software Development Flow Partitioning Memory Into Logical Blocks Object Code Generated by the File in Example Combining Input Sections to Form an Executable Object Module The Assembler in the TMS320C28x Software Development Flow The.space and.bes Directives The.field Directive Initialization Directives The.align Directive Allocating.bss Blocks Within a Page The.field Directive The.usect Directive The Archiver in the TMS320C28x Software Development Flow The Linker in the TMS320C28x Software Development Flow Memory Map Defined in Example Section Allocation Defined in Example Run-Time Execution of Example Memory Allocation Shown in Example 7 7 and Example Overlay Pages Defined in Example 7 10 and Example Autoinitialization at Run Time Autoinitialization at Load Time Absolute Lister Development Flow module1.lst module2.lst Cross-Reference Lister Development Flow The Hex-Conversion Utility in the TMS320C28x Software Development Flow Hex-Conversion Utility Process Flow COFF Data and Memory Widths Data, Memory, and ROM Widths Varying the Word Order The infile.out File Partitioned Into Four Output Files ASCII-Hex Object Format Intel MCS86 Hexadecimal Object Format Motorola-S Object Format TI-Tagged Object Format Extended Tektronix Object Format Contents xvii

18 Figures A 1 COFF File Structure A-2 A 2 Sample COFF Object File A-3 A 3 Section Header Pointers for the.text Section A-8 A 4 Symbol-Table Contents A-11 A 5 String-Table Entries for Sample Symbol Names A-13 xviii

19 Tables 3 1 Order of Precedence of Operators Used in Expressions Built-In Mathematical Functions Symbol Attributes Smart Encoding for Efficiency Smart Encoding Intuitively Non-TMS320C27x Instructions Supported in the C27x Object Mode Assembler Directives Summary Functions and Return Values Creating Macros Manipulating Substitution Symbols Conditional Assembly Producing Assembly-Time Messages Formatting the Listing Linker Options Summary Groups of Operators Used in Expressions on Order of Precedence Symbol Attributes XML Tag Index Basic Options Boot-Loader Options Boot Table Source Formats Boot Table Format Options for Specifying Hex-Conversion Formats A 1 File Header Contents A-4 A 2 File Header Flags (Bytes 18 and 19) A-4 A 3 Optional File Header Contents A-5 A 4 Section Header Contents A-6 A 5 Section Header Flags (Bytes 40 Through 43) A-7 A 6 Relocation Entry Contents A-9 A 7 Relocation Types (Bytes 8 and 9) A-10 A 8 Symbol-Table Entry Contents A-12 A 9 Special Symbols in the Symbol Table A-12 A 10 Symbol Storage Classes A-14 A 11 Section Numbers A-15 A 12 Section Format for Auxiliary Table Entries A-15 B 1 Symbolic Debugging Directives B-4 Contents xix

20 Examples 2 1 Using Sections Directives An Example of Code That Generates Relocation Entries Relocation Expression Local Labels of the Form $n Local Labels Using Symbolic Constants Defined on Command Line Portion of an Assembler Listing Viewing Assembly Variables as C Types An Assembler Cross-Reference Listing Sections Directives Macro Definition, Call, and Expansion Calling a Macro With Varying Numbers of Arguments The.asg Directive The.eval Directive Using Built-In Substitution Symbol Functions Recursive Substitution Using the Forced Substitution Operator Using Subscripted Substitution Symbols to Redefine an Instruction Using Subscripted Substitution Symbols to Find Substrings The.loop/.break/.endloop Directives Nested Conditional Assembly Directives Built-In Substitution Symbol Functions in a Conditional Assembly Block Unique Labels in a Macro Producing Messages in a Macro Using Nested Macros Using Recursive Macros Linker Command File Command File With Linker Directives The MEMORY Directive The SECTIONS Directive The Most Common Method of Specifying Section Contents Copying a Section From ROM to RAM The UNION Statement Separate Load Addresses for UNION Sections Allocate Sections Together Memory Directive With Overlay Pages xx

21 Examples 7 11 SECTIONS Directive Definition for Overlays in Example Default Allocation for TMS320C28x Devices Using a UNION for Memory Overlay Produce Address for Linker Generated Copy Table Linker Command File to Manage Object Components TMS320C28x cpy_tbl.h File Run-Time-Support cpy_tbl.c File The cpy_utils.asm File Controlling the Placement of the Linker-Generated Copy Table Sections Creating a Copy Table to Access a Split Object Component Split Object Component Driver Linker Command File, demo.cmd Output Map File, demo.map A ROMS Directive Example Map File Output From Example 11 1 Showing Memory Ranges Sample Command File for Booting From 8-Bit SPI Boot Sample Hex Convertor Out File or Booting From 8-Bit SPI Boot Sample Command File for C28x 16-Bit Parallel Boot GP I/O Sample Hex Convertor Out File for C28x 16-Bit Parallel Boot GP I/O Sample Command File for Booting From 8-Bit SCI Boot Sample Hex Convertor Out File for Booting From 8-Bit SCI Boot C 1 Header Element for the hi.out Output File C-3 C 2 Input File List for the hi.out Output File C-4 C 3 Object Component List for the fl 4 Input File C-5 C 4 Logical Group List for the fl 4 Input File C-8 C 5 Placement Map for the fl 4 Input File C-10 C 6 Symbol Table for the fl 4 Input File C-11 Contents xxi

22 Notes Default Section Directive Expression Cannot Be Larger Than Space Reserved Octal Numbers Not Accepted With C2xlp Syntax Mode Differences in Precedence From Other TMS320 Assemblers Labels and Comments in Syntax Directives That Initialize Constants When Used in a.struct/.endstruct Sequence Ending a Macro Creating a Listing File ( l Option) The.struct Directive Does Not Allocate Memory Directives That Can Appear in a.struct/.endstruct Sequence Naming Library Members The a and r Options Filling Memory Ranges Binding Is Incompatible With Alignment and Named Memory You Cannot Specify Addresses for Sections Within a GROUP Overlay Section and Overlay Page Are Not the Same Linker Command File Operator Equivalencies Filling Sections Linking the.stack Section Boot Loader The TI-Tagged Format Is 16 Bits Wide When the order Option Applies Sections Generated by the C/C++ Compiler Defining the Ranges of Target Memory Valid Entry Points xxii

TMS320C55x Assembly Language Tools User s Guide

TMS320C55x Assembly Language Tools User s Guide TMS320C55x Assembly Language Tools User s Guide Literature Number: SPRU280D June 2001 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes

More information

TMS320C55x Assembly Language Tools User s Guide

TMS320C55x Assembly Language Tools User s Guide TMS320C55x Assembly Language Tools User s Guide Literature Number: SPRU280G March 2003 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right

More information

TMS320C6000 Assembly Language Tools User s Guide

TMS320C6000 Assembly Language Tools User s Guide TMS320C6000 Assembly Language Tools User s Guide Literature Number: SPRU186G Janurary 2000 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make

More information

TMS320C6x Assembly Language Tools User s Guide

TMS320C6x Assembly Language Tools User s Guide TMS320C6x Assembly Language Tools User s Guide Literature Number: SPRU186B Manufacturing Part Number: D426003-9761 revision B June 1997 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments (TI)

More information

TMS320C6000 DSP 32-Bit Timer Reference Guide

TMS320C6000 DSP 32-Bit Timer Reference Guide TMS320C6000 DSP 32-Bit Timer Reference Guide Literature Number: SPRU582A July 2003 Revised October 2004 Contents TMS320C6000 DSP 32-Bit Timer... 2 Table of Contents... 2 Preface... 3 1 Overview... 5 2

More information

DSP/BIOS Link. Platform Guide Published on 20 th JUNE Copyright 2009 Texas Instruments Incorporated.

DSP/BIOS Link. Platform Guide Published on 20 th JUNE Copyright 2009 Texas Instruments Incorporated. DSP/BIOS Link Platform Guide 1.63 Published on 20 th JUNE 2009 Copyright 2009 Texas Instruments Incorporated. 2 Platform Support Products Version 1.63 IMPORTANT NOTICE Texas Instruments Incorporated and

More information

TMS320C620x/C670x DSP Boot Modes and Configuration Reference Guide

TMS320C620x/C670x DSP Boot Modes and Configuration Reference Guide TMS320C620x/C670x DSP Reference Guide Literature Number: July 2003 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements,

More information

TMS320C6000 DSP Interrupt Selector Reference Guide

TMS320C6000 DSP Interrupt Selector Reference Guide TMS320C6000 DSP Interrupt Selector Reference Guide Literature Number: January 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications,

More information

TMS470R1x External Clock Prescale (ECP) Reference Guide

TMS470R1x External Clock Prescale (ECP) Reference Guide TMS470R1x External Clock Prescale (ECP) Reference Guide Literature Number: SPNU202B November 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform.

This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform. Overview This document describes the features of the GUI program used to control Power Line Modem with E-Meter Platform. Program Startup The first time the program is run, three menus will be displayed

More information

TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide

TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide TMS320C6000 DSP General-Purpose Input/Output (GPIO) Reference Guide Literature Number: March 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller

PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller PCIxx12 Single Socket CardBus Controller with Integrated 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller Data Manual Includes: PCI4512GHK, PCI4512ZHK, PCI6412GHK, PCI6412ZHK, PCI6612GHK, PCI6612ZHK,

More information

TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller. Reference Guide

TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller. Reference Guide TMS320C672x DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide Literature Number: SPRU879A May 2005 2 SPRU879A May 2005 Contents Preface... 5 1 Overview... 7 2 Functional Description...

More information

Application Report. 1 Introduction. MSP430 Applications. Keith Quiring... ABSTRACT

Application Report. 1 Introduction. MSP430 Applications. Keith Quiring... ABSTRACT Application Report SLAA325 July 2006 MSP430 Interface to CC1100/2500 Code Library Keith Quiring... MSP430 Applications ABSTRACT The MSP430 is an ideal microcontroller solution for low-cost, low-power wireless

More information

TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance

TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance Application Report SPRA965 October 2003 TMS320C64x DSP Peripheral Component Interconnect (PCI) Performance Stéphane Smith C6x Device Applications ABSTRACT This application report describes the number of

More information

Table 1. Proper Termination of Unused (Port) Pins in a Single-Port PSE System

Table 1. Proper Termination of Unused (Port) Pins in a Single-Port PSE System Application Report SLVA231A June 2006 Revised November 2006 Proper Termination of Unused Port Connections Dale Wellborn... PMP Systems Power The TPS2384 quad integrated power sourcing equipment (PSE) power

More information

Application Report. 1 Hardware Description. John Fahrenbruch... MSP430 Applications

Application Report. 1 Hardware Description. John Fahrenbruch... MSP430 Applications Application Report SLAA309 June 2006 Low-Power Tilt Sensor Using the MSP430F2012 John Fahrenbruch... MSP430 Applications ABSTRACT The MSP430 family of low-power microcontrollers are ideal for low-power

More information

Using Endianess Conversion in the OMAP5910 Device

Using Endianess Conversion in the OMAP5910 Device Application Report SWPA027 May 2004 Using Endianess Conversion in the OMAP5910 Device Matthias Kassner ABSTRACT The OMAP5910 device features a new dual-core architecture from Texas Instruments (TI) that

More information

Power Line Modem with E-Meter Platform Quick Start Guide

Power Line Modem with E-Meter Platform Quick Start Guide Purpose This document gives a quick summary of the steps to set up and run the platform. Preparation The setup configurations are shown in Figures 1 and 2, depending on whether a USB or RS232 (serial)

More information

XIO1100 NAND-Tree Test

XIO1100 NAND-Tree Test Application Report June 15, 2007 XIO1100 NAND-Tree Test Mike Campbell DIBU ABSTRACT Checking the interconnections between integrated circuits (IC) once they have been assembled on a PCB is important in

More information

System-on-Chip Battery Board User s Guide

System-on-Chip Battery Board User s Guide System-on-Chip Battery Board User s Guide swru241 Table of Contents 1 Introduction...3 2 About this Manual...3 3 Acronyms and Definitions...3 4 Kit Contents...4 5 Hardware Description...5 5.1 LED, Button

More information

TMS320VC5501/5502 DSP Host Port Interface (HPI) Reference Guide

TMS320VC5501/5502 DSP Host Port Interface (HPI) Reference Guide TMS320VC5501/5502 DSP Reference Guide Literature Number: November 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements,

More information

Code Composer Studio Getting Started Guide

Code Composer Studio Getting Started Guide Code Composer Studio Getting Started Guide Literature Number: SPRU509 May 2001 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to

More information

External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers

External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers Application Report SPRAA36 July 2004 External Programming of the TMS320C64x EDMA for Low Overhead Data Transfers Sébastien Tomas Wireless Infrastructure ABSTRACT This application report details a mechanism

More information

Bootstrap Loader (BSL) Scripter User s Guide

Bootstrap Loader (BSL) Scripter User s Guide Bootstrap Loader (BSL) Scripter 3.0.1.0 User s Guide Copyright 2015 Texas Instruments Incorporated. 2 Copyright Copyright 2015 Texas Instruments Incorporated. All rights reserved. MSP430 and MSP432 are

More information

The examples in this application report require the Flash API Modules (SPRC236) within the "Tools & Software" folder.

The examples in this application report require the Flash API Modules (SPRC236) within the Tools & Software folder. Application Report SPNA093A February 2006 Revised December 2007 In-System Programming With Catalog TMS470 Devices John Mangino.. TMS470 Applications ABSTRACT This document gives two examples of reprogramming

More information

TCI6616/C6670/TCI6608/C6678 Device Simulator EMAC Model I/O user-guide

TCI6616/C6670/TCI6608/C6678 Device Simulator EMAC Model I/O user-guide TCI6616/C6670/TCI6608/C6678 Device Simulator EMAC Model I/O user-guide IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections, modifications, enhancements,

More information

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Application Report SLAA175 JUNE 2003 Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Lijoy Philipose Data Acquisition Applications ABSTRACT This application note presents a method for interfacing

More information

Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218

Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218 Application Report SBAA099 August 2003 Calibration Routines and Register Value Generation for the ADS1216, ADS1217 and ADS1218 Joseph Wu Data Acquisition Group ABSTRACT In order to achieve the best possible

More information

SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR

SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR SN5476, SN54LS76A SN7476, SN74LS76A DUAL J-K FLIP-FLOPS WITH PRESET AND CLEAR SDLS121 DECEMBER 1983 REVISED MARCH 1988 PRODUCTION DATA information is current as of publication date. Products conform to

More information

Quad-Channel TEC Controller Getting Started Guide. Contents. Introduction. Contents of Evaluation Kit

Quad-Channel TEC Controller Getting Started Guide. Contents. Introduction. Contents of Evaluation Kit Contents Introduction... 1 Contents of Evaluation Kit... 1 Quad-TEC Platform Overview... 2 Installing the Control Software... 2 Removing the Quad-TEC Platform from its Protective Packaging... 2 Connecting

More information

AC Induction Motor (ACIM) Control Board

AC Induction Motor (ACIM) Control Board AC Induction Motor (ACIM) Control Board Ordering Information Order No. MDL-ACIM RDK-ACIM Description Stellaris ACIM Control Board Only Stellaris ACIM Control Board Reference Design Kit (includes MDL-ACIM

More information

TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide

TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide TMS320VC5510 DSP Host Port Interface (HPI) Reference Guide Literature Number: August 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

TMS320C28x Optimizing C/C++ Compiler User s Guide

TMS320C28x Optimizing C/C++ Compiler User s Guide TMS320C28x Optimizing C/C++ Compiler User s Guide Literature Number: SPRU514B October 2005 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the

More information

Application Report. Low-Power Wireless. Shreharsha Rao... ABSTRACT

Application Report. Low-Power Wireless. Shreharsha Rao... ABSTRACT Application Report SWRA043B July 2005 Dolphin Frequency Hopping Spread Spectrum Chipset Host Interface Protocol Shreharsha Rao... Low-Power Wireless ABSTRACT The Dolphin is a FCC precertified reference

More information

Application Report. 1 System Requirements. 2 Using the DM643x Pin Multiplexing Utility. Bernard Thompson...

Application Report. 1 System Requirements. 2 Using the DM643x Pin Multiplexing Utility. Bernard Thompson... Application Report SPRAAN3 July 2007 TMS320DM643x Pin Multiplexing Utility Bernard Thompson... ABSTRACT The DM643x devices use a great deal of internal pin multiplexing to allow the most functionality

More information

Using the TMS320C5509 USB Bootloader

Using the TMS320C5509 USB Bootloader Application Report SPRA840 - October 2002 Using the TMS320C5509 USB Bootloader Mathew George, Jr. (Joe) Clay Turner ABSTRACT C5000 DSP Applications Boot loading the TMS320VC5509 digital signal processor

More information

TMS320C55x DSP Peripherals Overview Reference Guide. Preliminary Draft

TMS320C55x DSP Peripherals Overview Reference Guide. Preliminary Draft TMS320C55x DSP Peripherals Overview Reference Guide Preliminary Draft Literature Number: SPRU317G February 2004 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right

More information

Application Note AN045

Application Note AN045 AN045 Z-Tool By B.Selvig Keywords Z-Tool Z-Script CC2420DB CC2430DB SmartRF04EB ZigBee Introduction This application note describes the Z-Tool application, and how this tool can be used during development

More information

OMAP5912 Multimedia Processor Direct Memory Access (DMA) Support Reference Guide

OMAP5912 Multimedia Processor Direct Memory Access (DMA) Support Reference Guide OMAP5912 Multimedia Processor Direct Memory Access (DMA) Support Reference Guide Literature Number: March 2005 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right

More information

TMS470R1VF334E TMS470 Microcontrollers Silicon Errata

TMS470R1VF334E TMS470 Microcontrollers Silicon Errata TMS470R1VF334E TMS470 Microcontrollers Silicon Errata Silicon Revision C August 2005 Copyright 2005, Texas Instruments Incorporated Contents 1 Known Design Marginality/Exceptions to Functional Specifications.....................................

More information

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C5510 DSK

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C5510 DSK Application Report SPRA856A June 2003 A DSP/BIOS AIC23 Codec Device for the TMS320C5510 DSK ABSTRACT Software Development Systems This document describes the implementation of a DSP/BIOS device driver

More information

TMS320C28x Assembly Language Tools v User's Guide

TMS320C28x Assembly Language Tools v User's Guide TMS320C28x Assembly Language Tools v5.0.0 User's Guide Literature Number: SPRU513C October 2007 2 SPRU513C October 2007 Contents Preface... 13 1 Introduction to the Software Development Tools... 15 1.1

More information

Hands-On: Implementing an RF link with MSP430 and CC1100

Hands-On: Implementing an RF link with MSP430 and CC1100 Hands-On: Implementing an RF link with MSP430 and CC1100 Keith Quiring MSP430 Applications Engineer Texas Instruments 2006 Texas Instruments Inc, Slide 1 Overview Introduction Target Hardware Library File

More information

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C6416 DSK

A DSP/BIOS AIC23 Codec Device Driver for the TMS320C6416 DSK Application Report SPRA909A June 2003 A DSP/BIOS AIC23 Codec Device for the TMS320C6416 DSK ABSTRACT Software Development Systems This document describes the usage and design of a device driver for the

More information

description VCC 1PRE 1OC 1D1 1C 1Q1 1Q2 1Q3 1Q4 2Q1 2Q2 2Q3 2Q4 2C 2PRE 1D2 1D3 1D4 2D1 2D2 2D3 2D4 2OC GND 1PRE 1OC 1Q1 1D1 1Q2 1Q3 1Q4 1D2 1D3 1D4

description VCC 1PRE 1OC 1D1 1C 1Q1 1Q2 1Q3 1Q4 2Q1 2Q2 2Q3 2Q4 2C 2PRE 1D2 1D3 1D4 2D1 2D2 2D3 2D4 2OC GND 1PRE 1OC 1Q1 1D1 1Q2 1Q3 1Q4 1D2 1D3 1D4 3-tate Buffer-Type Outputs Drive Bus Lines Directly Bus-tructured Pinout AL873B is Alternative Version With Noninverting Outputs Package Optio Include Plastic mall Outline Packages, Both Plastic and Ceramic

More information

TMS320C6000 Code Composer Studio Getting Started Guide

TMS320C6000 Code Composer Studio Getting Started Guide TMS320C6000 Code Composer Studio Getting Started Guide Literature Number SPRU509D August 2003 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve

More information

TVP5146 PDC and VPS APPLICATION NOTE HPA Digital Audio Video

TVP5146 PDC and VPS APPLICATION NOTE HPA Digital Audio Video Application Report SLEA017 OCTOBER 2003 TVP5146 PDC and VPS APPLICATION NOTE HPA Digital Audio Video ABSTRACT TVP5146 VBI SLICER EXAMPLE: EXTRACTING PDC AND VPS DATA PDC (Program Delivery Control) is a

More information

TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide

TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide TMS320C6000 DSP Software-Programmable Phase-Locked Loop (PLL) Controller Reference Guide Literature Number: April 2003 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve

More information

DS25BR204 Evaluation Kit

DS25BR204 Evaluation Kit 3.125 Gbps 1:4 LVDS Buffer/Repeater with Transmit Pre-emphasis and Receive Equalization DS25BR204 Evaluation Kit USER MANUAL Part Number: DS25BR204EVK NOPB For the latest documents concerning these products

More information

Debugging Shared Memory Systems

Debugging Shared Memory Systems Application Report SPRA754 - May 2001 Debugging Shared Memory Systems Jeff Hunter Software Development Systems/Emulation Team ABSTRACT Multiple cores on a single processor often share a common block of

More information

User s Guide for Sonic MDIO Software

User s Guide for Sonic MDIO Software User's Guide This guide explains the usage of the TI Sonic MDIO Software to provide a means of communication with an MDIO compatible device. It communicates through the serial port of the host PC. The

More information

SN54155, SN54156, SN54LS155A, SN54LS156, SN74155, SN74156, SN74LS155A, SN74LS156 DUAL 2-LINE TO 4-LINE DECODERS/DEMULTIPLEXERS

SN54155, SN54156, SN54LS155A, SN54LS156, SN74155, SN74156, SN74LS155A, SN74LS156 DUAL 2-LINE TO 4-LINE DECODERS/DEMULTIPLEXERS SN54155, SN54156, SN54LS155A, SN54LS156, SN74155, SN74156, SN74LS155A, SN74LS156 DUAL 2-LINE TO 4-LINE DECODERS/DEMULTIPLEXERS SDLS057 MARCH 1974 REVISED MARCH 1988 PRODUCTION DATA information is current

More information

WL1271 ini File Description and Parameters User's Guide

WL1271 ini File Description and Parameters User's Guide WL1271 ini File Description and Parameters User's Guide Literature Number: SPRUGT8 January 2010 Contents Contents... 2 Revision History... 4 Reference Documents... 4 About This Document... 4 Chapter 1...

More information

Programming the TMS320VC5509 RTC Peripheral

Programming the TMS320VC5509 RTC Peripheral Application Report SPRA384A - September 2002 Programming the TMS320VC5509 RTC Peripheral Scott Tater ABSTRACT DSP Applications Semiconductor Group This application report demonstrates the procedure used

More information

TMS320C6414T/15T/16T Power Consumption Summary

TMS320C6414T/15T/16T Power Consumption Summary Application Report SPRAA45A February 2008 TMS320C6414T/15T/16T Power Consumption Summary Todd Hiers Matthew Webster C6000 Hardware Applications ABSTRACT This document discusses the power consumption of

More information

Protecting the TPS25810 from High Voltage DFPs

Protecting the TPS25810 from High Voltage DFPs Application Report Nick Smith... Power Interface ABSTRACT The TPS25810 is a USB Type-C Downstream Facing Port (DFP) controller that monitors the Type-C Configuration Channel (CC) lines to determine when

More information

Stacking the REF50xx for High-Voltage References

Stacking the REF50xx for High-Voltage References Stacking the REF50xx for High-Voltage References Application Report Alexander Smolyakov and Mihail Gurevich ABSTRACT This application note describes the additional ways of using the REF50xx. The application

More information

TMS320C6000 Assembly Language Tools v 6.1. User's Guide

TMS320C6000 Assembly Language Tools v 6.1. User's Guide TMS320C6000 Assembly Language Tools v 6.1 User's Guide Literature Number: SPRU186Q May 2008 2 SPRU186Q May 2008 Contents Preface... 13 1 Introduction to the Software Development Tools... 17 1.1 Software

More information

DaVinci System Optimization

DaVinci System Optimization DaVinci System Optimization Juan Gonzales and Brijesh Singh DCAT and SDS Texas Instruments SPRP656 1 Objective EVM is good first step for prototyping design Final design is typically subset of EVM Due

More information

ez430-rf2480 Sensor Monitor SWRU Low-Power RF

ez430-rf2480 Sensor Monitor SWRU Low-Power RF s e r ' s G u i d e User's Guide ez430-rf2480 Sensor Monitor SWRU157 2008 Low-Power RF Contents EZ430-RF2480 SENSOR MONITOR...1 1. INTRODUCTION...2 2. INSTALLATION...3 3. DRIVER INSTALLATION...3 3.1.

More information

MSP430 Assembly Language Tools v 3.3. User's Guide

MSP430 Assembly Language Tools v 3.3. User's Guide MSP430 Assembly Language Tools v 3.3 User's Guide Literature Number: SLAU131E July 2010 2 Contents Preface... 11 1 Introduction to the Software Development Tools... 15 1.1 Software Development Tools Overview...

More information

Wolverine - based microcontrollers. Slashing all MCU power consumption in half

Wolverine - based microcontrollers. Slashing all MCU power consumption in half Wolverine - based microcontrollers Slashing all MCU power consumption in half Wolverine: Industry s lowest power MCU platform Unique mixed signal ultra-low leakage process technology Enables variety of

More information

TMS320VC5402 and TMS320UC5402 Bootloader

TMS320VC5402 and TMS320UC5402 Bootloader Application Report SPRA618B - vember 2004 TMS320VC5402 and TMS320UC5402 Bootloader Ruben D. Perez ABSTRACT C5000 Applications This document describes the features and operation of the TMS320UC5402 and

More information

TPS62290EVM-279. User's Guide SLVU217 July 2007

TPS62290EVM-279. User's Guide SLVU217 July 2007 User's Guide SLVU217 July 2007 TPS62290EVM-279 This user s guide describes the characteristics, operation, and use of the TPS62290EVM-279 evaluation module (EVM). This EVM demonstrates the Texas Instruments

More information

C Fast RTS Library User Guide (Rev 1.0)

C Fast RTS Library User Guide (Rev 1.0) C Fast RTS Library User Guide (Rev 1.0) Revision History 22 Sep 2008 Initial Revision v. 1.0 IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their products

More information

TMS320C55x Optimizing C/C++ Compiler User s Guide

TMS320C55x Optimizing C/C++ Compiler User s Guide TMS320C55x Optimizing C/C++ Compiler User s Guide Literature Number: SPRU281E March 2003 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the

More information

PRODUCT DATASHEET. Features. IPNetCam Reference Design on DM365 Product Release 1.5.0, Nov 2009

PRODUCT DATASHEET. Features. IPNetCam Reference Design on DM365 Product Release 1.5.0, Nov 2009 Features Supports following Codec Combos: o Triple Stream Usecases: o H.264 HP 30fps 720p encode @1-6mbps + H.264 HP 15fps QVGA encode @128-512kbps + MJPEG 15fps VGA encode @Quality=3-95 + g711 encode

More information

1996 Microprocessor Development Systems

1996 Microprocessor Development Systems User s Guide 1996 Microprocessor Development Systems Printed in U.S.A., April 1996 2547306-9761 revision C * SPNU022C User s Guide 1996 TMS370 and TMS370C8 8-Bit Microcontroller Family Optimizing C Compiler

More information

TMS320VC5409A Digital Signal Processor Silicon Errata

TMS320VC5409A Digital Signal Processor Silicon Errata TMS320VC5409A Digital Signal Processor Silicon Errata June 2001 Revised May 2003 Copyright 2003, Texas Instruments Incorporated Literature Number REVISION HISTORY This revision history highlights the technical

More information

Using the DSP in the Dual-Core DaVinci as a Graphics Render Engine

Using the DSP in the Dual-Core DaVinci as a Graphics Render Engine Using the DSP in the Dual-Core DaVinci as a Graphics Render Engine Soft graphic accelerator Bastian Zuehlke Content Brief introduction into graphics HW/SW System architecture Graphic primitives, color

More information

Techniques for Profiling on ROM-Based Applications

Techniques for Profiling on ROM-Based Applications Application Report SPRA761 June 2001 Techniques for Profiling on ROM-Based Applications Harsh Sabikhi Code Composer Studio, Applications Engineering ABSTRACT This application report describes the methods

More information

TMS320C54x C Source Debugger User s Guide

TMS320C54x C Source Debugger User s Guide TMS320C54x C Source Debugger User s Guide Literature Number: SPRU099D July1998 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments (TI) reserves the right to make changes to its products or to

More information

TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata

TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata TMS320UC5409/TMS320VC5409 Digital Signal Processors Silicon Errata January 2000 Revised October 2001 Copyright 2001, Texas Instruments Incorporated Contents 1 Introduction........................................................................................

More information

TMS320C54x Optimizing C/C++ Compiler User s Guide

TMS320C54x Optimizing C/C++ Compiler User s Guide TMS320C54x Optimizing C/C++ Compiler User s Guide Literature Number: SPRU103F June 2001 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make

More information

2. With the Evaluation Kit DVD, click the Tools button and then click the Code Composer Studio logo to start the setup program.

2. With the Evaluation Kit DVD, click the Tools button and then click the Code Composer Studio logo to start the setup program. Stellaris Development and Evaluation Kits for Code Composer Studio Stellaris Development and Evaluation Kits provide a low-cost way to start designing with Stellaris microcontrollers using Texas Instruments

More information

TMS370 Family C Source Debugger User s Guide

TMS370 Family C Source Debugger User s Guide TMS370 Family C Source Debugger User s Guide 2547295-9721 revision * SPNU028 October 1992 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated (TI) reserves the right to make changes

More information

Ethernet-Enabled Intelligent Display Modules (IDMs)

Ethernet-Enabled Intelligent Display Modules (IDMs) Ethernet-Enabled Intelligent Display Modules (IDMs) Ordering Information Product No. MDL-IDM MDL-IDM-B MDL-IDM28 Description Display Module (with PoE) for Single-Unit Packaging Display Module (with PoE)

More information

27 - Line SCSI Terminator With Split Disconnect

27 - Line SCSI Terminator With Split Disconnect UCC5622 27 - Line SCSI Terminator With Split Disconnect FEATURES Complies with SCSI, SCSI-2, SCSI-3, SPI and FAST-20 (Ultra) Standards 2.5pF Channel Capacitance During Disconnect 00 A Supply Current in

More information

Application Report. 1 Overview. Marc Sousa... Power Supply ABSTRACT

Application Report. 1 Overview. Marc Sousa... Power Supply ABSTRACT Application Report PSE Control Marc Sousa... Power Supply ABSTRACT Texas Instruments provides POE solutions for both the powered devices (PDs) as well as power sourcing equipment (PSE). The TPS2384 is

More information

Configuring Code Composer Studio for OMAP Debugging

Configuring Code Composer Studio for OMAP Debugging Application Report SPRA807 - November 2001 Configuring Code Composer Studio for OMAP Debugging Harry Thompson Software Development Systems/Customer Support ABSTRACT The OMAP Code Composer Studio (CCStudio)

More information

FlashBurn: A DSK Flash Memory Programmer

FlashBurn: A DSK Flash Memory Programmer Application Report SPRA804 - October 2001 FlashBurn: A DSK Flash Memory Programmer Russ Heeschen SDS Productivity Tools Team ABSTRACT The FlashBurn utility is a Windows program that works along with Code

More information

Using the TMS320VC5509/5510 Enhanced HPI

Using the TMS320VC5509/5510 Enhanced HPI Application Report SPRA741A - May 2006 Using the TMS320VC5509/5510 Enhanced HPI Greg Shurtz C5000 Hardware Applications Team ABSTRACT The enhanced host port interface (EHPI) on the TMS320VC5509 and TMS320VC5510

More information

HV Solar MPPT DC-DC GUI Overview. Getting Started Guide

HV Solar MPPT DC-DC GUI Overview. Getting Started Guide HV Solar MPPT DC-DC GUI Overview Getting Started Guide Literature Number: TIDU403 September 2014 Contents 1 Getting Started... 5 2 Running the Application... 6 2.1 GUI Structure... 9 2.2 Using the GUI...

More information

TMS320C2xx/C24x Code Composer User s Guide

TMS320C2xx/C24x Code Composer User s Guide TMS320C2xx/C24x Code Composer User s Guide Literature Number: SPRU490 October 2000 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments and its subsidiaries (TI) reserve the right to make changes

More information

Memory Allocation Techniques in System with Dynamic Swapping of Application Codes

Memory Allocation Techniques in System with Dynamic Swapping of Application Codes Application Report SPRA824 June 2002 Memory Allocation Techniques in System with Dynamic Swapping of Application Codes Oh, Hong Lye SC Field Applications, Texas Instruments Singapore ABSTRACT This application

More information

A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers

A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers Application Report SPRA579C - September 2002 A Technical Overview of expressdsp-compliant Algorithms for DSP Software Producers Stig Torud Organization ABSTRACT Advances in digital signal processor (DSP)

More information

Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System

Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System Application Report SPRA580B Using the TMS320 DSP Algorithm Standard in a Dynamic DSP System Carl Bergman Digital Signal Processing Solutions Abstract This application note illustrates some techniques used

More information

Bootloading the TMS320VC5402 in HPI Mode

Bootloading the TMS320VC5402 in HPI Mode Application Report SPRA382 April 2002 Bootloading the TMS320VC5402 in HPI Mode Scott Tater DSP Applications Semiconductor Group ABSTRACT The TMS320VC5402 bootloader allows the system designer flexibility

More information

PACKAGE OPTION ADDENDUM

PACKAGE OPTION ADDENDUM PACKAGE OPTION ADDENDUM www.ti.com 4-Jun-2007 PACKAGING INFORMATION Orderable Device Status (1) Package Type Package Drawing Pins Package Qty Eco Plan (2) Lead/Ball Finish MSL Peak Temp (3) SN54LS375J

More information

UART Bootloader for Hercules TMS570LS04x MCU

UART Bootloader for Hercules TMS570LS04x MCU Application Report Quingjun Wang ABSTRACT This application report describes how to communicate with the Hercules UART bootloader. The UART bootloader is a small piece of code that can be programmed at

More information

OMAP SW. Release Notes. OMAP Software Tools OST version 2.5 Release. 16xx/1710/242x platforms. Document Revision: 2.5 Release

OMAP SW. Release Notes. OMAP Software Tools OST version 2.5 Release. 16xx/1710/242x platforms. Document Revision: 2.5 Release OMAP SW OST version 2.5 Release 16xx/1710/242x platforms Document Revision: 2.5 Release Issue Date: 29 th July 2005 Revision: 2.5 Release 13 th July 2005 Table of Contents Page i IMPORTANT NOTICE Texas

More information

PurePath Studio GDE User s Guide Graphical Development Environment for TAS3xxx Digital Audio Processors. User's Guide. Mixed Signal Audio Applications

PurePath Studio GDE User s Guide Graphical Development Environment for TAS3xxx Digital Audio Processors. User's Guide. Mixed Signal Audio Applications PurePath Studio GDE User s Guide Graphical Development Environment for TAS3xxx Digital Audio Processors U s e r ' s G u i d e User's Guide May 2008 Mixed Signal Audio Applications IMPORTANT NOTICE Texas

More information

TMS320C6000 Programmer s Guide

TMS320C6000 Programmer s Guide TMS320C6000 Programmer s Guide Literature Number: SPRU198G August 2002 Printed on Recycled Paper IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries (TI) reserve the right to make corrections,

More information

TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode

TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode Application Note SLLA137 March 2003 TFP101, TFP201, TFP401, TFP401A 2Pix/Clk Output Mode Digital Visual Interface ABSTRACT This document explains the recommended configuration to operate the TFP101/201/401(A)

More information

WLAN Design Considerations

WLAN Design Considerations W H I T E P A P E R CE WLAN By Steve Schnier CE WLAN Product Marketing Manager SSchnier@ti.com WLAN Design Considerations For Stationary CE Applications Based on Texas Instruments Media Processors Introduction

More information

CUSTOM GOOGLE SEARCH. User Guide. User Guide Page 1

CUSTOM GOOGLE SEARCH. User Guide. User Guide Page 1 User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue

More information

UCD3138 Responding to Multiple PMBus Slave Addresses

UCD3138 Responding to Multiple PMBus Slave Addresses Application Report SLUA758 October 2015 UCD3138 Responding to Multiple PMBus Slave Addresses Jack Tan, Ian Bower High Voltage Power Solution ABSTRACT The use of digital power controllers is becoming mainstream

More information

TMS Bit RISC ARM7TDMI -Based Microcontroller Platform

TMS Bit RISC ARM7TDMI -Based Microcontroller Platform Technology for Innovators TM 2H 2006 TMS470 32-Bit RISC ARM7TDMI -Based Microcontroller Platform Embedded Controllers 2 Embedded Controllers TMS470: Unmatched Performance in ARM7TDMI-Based MCU from $1.99

More information

Connecting Bluetooth to the OMAP5910

Connecting Bluetooth to the OMAP5910 Application Report SPRA986 December 003 Connecting Bluetooth to the OMAP90 Gerald Coley DSP/EEE Catalog, OMAP Applications ABSTRACT There are numerous applications that require the addition of a Bluetooth

More information