
SPRA828B
26 System Initialization for the OMAP5910 Device
m[n] * 32767 = 12538.30973
12538.30973 = 0x30FB
Using this procedure, the following values are defined in the SineSamples array :
static int SineSamples[]={0x00000, 0x018f8, 0x030fb, 0x0471c, 0x05a82, 0x06a6d, 0x07641,
0x07d8a, 0x07fff,/*0x07fff,*/ 0x07d8a, 0x07641, 0x06a6d, 0x05a82,
0x0471c, 0x030fb, 0x018f8,0x00000,/*0x00000,*/ 0x0e709, 0x0cf06,
0x0b8e5, 0x0a57f, 0x09594, 0x089c0, 0x08277, 0x08002,/*0x08002,*/
0x08277, 0x089c0, 0x09594, 0x0a57f, 0x0b8e5, 0x0cf06, 0xe0709/*,
0x00000*/};
Next, the MCBSP_open() and MCBSP_config() functions are used to configure the MCBSP1
peripheral.
Finally, the transmission is initiated by calling the MCBSP_start function. A delay loop is
introduced to allow the interrupt to occur, and when it does, the write_isr function is invoked.
This function continuously writes the previously defined audio samples into the MCBSP1
transmit registers, thereby generating a tone that is played on the speakers indefinitely.
3.2 DSP Booting Example
This example will be used to demonstrate the proper procedure for booting the DSP. MPUI boot
download, one of the six boot modes supported by the DSP, will be used. The bootload is
accomplished through the MPU while the DSP is held in reset. The DSP application code is
transferred on-chip through one of several interfaces to the MPU and sent through an internal
memory interface to the DSP. The DSP application code writes a predefined value into the
DSP2ARM1 mailbox register, which generates an interrupt and alerts the MPU. The MPU then
proceeds to check the value which was written and compare it with the expected value. If the
two match, the MPU will cause the power LED on the front of the Innovator™ development
platform to flash green indefinitely. If not, the LED will flash red.
The procedure for converting the DSP application code into a format that is usable by the MPU
will be shown first, and will be followed by a description of the MPU code which downloads the
converted DSP application code into the internal memory of the DSP.
3.2.1 Converting DSP COFF Files Into ARM C-Language Header Files
Since the MPU and the DSP are different types of processors, the DSP application code needs
to be converted into a format usable by the MPU. To do this, the DSP COFF (common object file
format) file output is converted into MPU C language header files, which declare arrays
initialized with the contents of the COFF file. This conversion can be accomplished by using the
converter program OUT2BOOT. This converter uses the TI assembly language tool HEX55 to
extract the DSP code from the COFF file. See the TMS320C55x Assembly Language Tools
User’s Guide (SPRU280D) for information on the COFF file format and the HEX55 conversion
utility. The OUT2BOOT program calls HEX55 to convert the COFF file into one binary output file.
Then, OUT2BOOT converts this binary file into a C language header file, which is used as an
include file with the MPU C code. The combined MPU and DSP code can then be placed into
flash or ROM to be accessed from the MPU external memory interface. Figure 14 shows a
graphical representation of this process.