This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM335x CCSv6

Other Parts Discussed in Thread: CCSTUDIO

Dear Sir:

I follow AM335x starter kit labA1_3day_setup.pdf Instruction 20-23 to install CCSv6,
but I can not start CCSv6 (I can start CCSv6 by click shortcut before changing "command"). Please
give me a help.

Installing Code Composer Studio v.6.0.1.00040

....
20. Change desktop shortcut to a custom script
Right-click the shortcut and select properties
Change “command:”
From: /home/user/ti/ccsv6/eclipse/ccstudio
To: /home/user/ti/ccsv6/eclipse/my_ccstudio.sh

21. Create “myccstudio.sh” launch script
# gedit /home/user/ti/ccsv6/eclipse/my_ccstudio.sh
Enter the following:
export PATH=/home/user/gcc-linaro-arm-linux-gnueabihf-4.7-2013-03-
20130313_linux/bin:$PATH
/home/user/ti/ccsv6/eclipse/ccstudio

22. Make the script executable
# chmod a+x /home/user/ti/ccsv6/eclipse/my_ccstudio.sh
23. Start Code Composer Studio

....

Thanks.

Thomas Tang

  • Hi Thomas,

    I tried the steps you posted and they work for me. The key thing to double check is the paths.

    thomas tang said:
    /home/user/ti/ccsv6/eclipse/my_ccstudio.sh

    Did you update the path to reflect your environment? For example, replace 'user' with your username and update the root location of ccsv6 to where you installed it, if you installed it in a different location? You would need to check the paths for all thee steps and make sure they match your environment.

    Thanks

    ki

  • I already changed "user" to "yut".

    Would please help me check if my_ccstudio.sh is correct

    "export PATH=/home/yut/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin:$PATH /home/yut/ti/ccsv6/eclipse/ccstudio"

    All in one line. Do I need put "#!/bin/bash" before this line?

    I already checked  my_ccstudio.sh is executable. Then I click icon(shortcut)  "Code Composer Studio 6.1.2", nothing happened?

    If I change shortcut Properties->command to "/home/yut/ti/ccsv6/eclipse/ccstudio", when I click shortcut CCSv6 start up.

    Please give me a help.

    By the way I have another trouble, when I start minicom, I can not see usb0 both on ubuntu and root@am335x-evm.

    Thomas Tang

  • thomas tang said:

    Would please help me check if my_ccstudio.sh is correct

    "export PATH=/home/yut/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin:$PATH /home/yut/ti/ccsv6/eclipse/ccstudio"

    All in one line.

    This is not correct. There should be two separate lines:

    export PATH=/home/yut/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin:$PATH

    /home/yut/ti/ccsv6/eclipse/ccstudio

    The first adds the path to the GCC compiler to the system PATH

    The second then launches CCS

    Thanks

    ki