首页|嵌入式系统|显示技术|模拟IC/电源|元件与制造|其他IC/制程|消费类电子|无线/通信|汽车电子|工业控制|医疗电子|测试测量
首页 > 分享下载 > 消费类电子 > TMS320C54x应用编码实例

TMS320C54x应用编码实例

资料介绍

ABSTRACT

This application report contains complete code examples for routines that have been

developed using a TMS320C54xE EVM platform. These programs demonstrate applications

that use a host interface and run in real time.

Contents

1 Running the Applications . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

2 Application Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

List of Tables

Table 1. Target Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

Table 2. Communication Interface Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

List of Examples

Example 1. Vector Table Initialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

Example 2. Memory Allocation for Entire Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7

Example 3. Main Program That Calls Different Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13

Example 4. Processor Initialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

Example 5. Handshake Between Host and Target . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20

Example 6. Initialization of Variables, Pointers, and Buffers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23

Example 7. Initialization of Serial Port 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27

Example 8. ’AC01 Initialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31

Example 9. ’AC01 Register Configuration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35

Example 10. Receive Interrupt Service Routine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38

Example 11. Task Scheduling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42

Example 12. Echo the Input Signal . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47

Example 13. Low-Pass FIR Filtering Using MAC Instruction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49

Example 14. Low-Pass Symmetric FIR Filtering Using FIRS Instruction . . . . . . . . . . . . . . . . . . . . . . . . 54

Example 15. Low-Pass Biquad IIR Filter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58

Example 16. Adaptive Filtering Using LMS Instruction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63

Example 17. 256-Point Real FFT Initialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71

Example 18. Bit Reversal Routine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74

Example 19. 256-Point Real FFT Routine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77

Example 20. Unpack 256-Point Real FFT Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82

Example 21. Compute the Power Spectrum of the Complex Output of the 256-Point Real FFT . . . . 87

TMS320C54x is a trademark of Texas Instruments.

SPRA673

2 TMS320C54x Application Code Examples

Example 22. Data Transfer ransfer from FIFO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89

Example 23. Interrupt 1 Service Routine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93

Example 24. Function Calls on Host Side . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97

Example 25. Main Function Call on Host Side . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98

Example 26. Graphic Drivers Routine . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100

Example 27. Display the Data on the Screen . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102

Example 28. Linker Command File for the Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102

Example 29. Memory Map of TMS320C541 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 104

标签:TI资源C5x
TMS320C54x应用编码实例
本地下载

评论