Changes between Version 3 and Version 4 of BeagleBoard_DSPLink
- Timestamp:
- 06/18/09 12:14:34 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BeagleBoard_DSPLink
v3 v4 1 1 == Guide to Installing DSPLink on a BeagleBoard == 2 2 3 OpenEmbedded includes a bitbake recipe to install ti-codec-engine. However, multiple files are needed for this bitbake to complete. This guide will instruct how to get the ti-codec-engine to build successfully.3 !OpenEmbedded includes a bitbake recipe to install ti-codec-engine. However, multiple files are needed for this bitbake to complete. This guide will instruct how to get the ti-codec-engine to build successfully. 4 4 5 To start, make sure that you have set the directory environment variable for OpenEmbedded. Replace "oe" to whatever yourOpenEmbedded root directory is called.5 To start, make sure that you have set the directory environment variable for !OpenEmbedded. Replace "oe" to whatever your !OpenEmbedded root directory is called. 6 6 {{{ 7 7 $ export OE_HOME=$HOME/oe … … 48 48 }}} 49 49 50 Find the section of code similar to below and change the directory variables. Version numbers should be adjusted accordingly.50 Add the following lines of code to the bottom of the file. Version numbers and directory locations should be adjusted accordingly if using. In the line TITOOLSDIR = "/home/user/TI", change "user" to whatever your username is. 51 51 {{{ 52 52 # Path to the dir where the TI tools are unpacked 53 TITOOLSDIR ?= "/home/ossie/TI"53 TITOOLSDIR = "/home/user/TI" 54 54 # Path under TITOOLSDIR where dspbios is unpacked 55 TIBIOSDIR ?= "bios_5_33_02"56 TIXDCTOOLSDIR ?= "${TITOOLSDIR}/xdctools_3_10_03"55 TIBIOSDIR = "bios_5_33_02" 56 TIXDCTOOLSDIR = "${TITOOLSDIR}/xdctools_3_10_03" 57 57 # Path under TITOOLSDIR where the dsp toolchain is unpacked 58 TICGTOOLSDIR ?= "cg6x_6_0_16"58 TICGTOOLSDIR = "cg6x_6_0_16" 59 59 }}} 60 60 … … 84 84 85 85 86 Memory settings need to be adjusted on the beagleboard. Reset the board and stop the board from autobooting. Insert the following commands and save the environment. 87 # 86 Memory settings need to be adjusted on the beagleboard. Reset the board and stop the board from autobooting by pressing any key. Insert the following commands and save the environment. Reset the board once finished.[[BR]] 87 {{{ 88 # 89 }}} 88 90 89 Once installed, there are some sample applications provided that can be used to test the installation. They are located in /usr/share/ti-dsplink . You will need to install the DSPLink kernel module everytime you reboot the BeagleBoard. 90 $ 91 Once installed, there are some sample applications provided that can be used to test the installation. They are located in /usr/share/ti-dsplink. Additionally, you will need to install the DSPLink kernel module everytime you reboot the BeagleBoard. [[BR]]] 91 92 93 {{{ 94 # cd /usr/share/ti-dsplink 95 # ./loadxxx 96 # messagegpp message.out xxx 97 }}} 98 99 [[BR]] 92 100 ---- 93 101