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.

CCS: Install Software from TIREX (TI Resource Explorer) in CCS Linux TIREX Window

Other Parts Discussed in Thread: MSP430WARE, CCSTUDIO

Tool/software: Code Composer Studio

Should we be able to install Software from TIREX (TI Resource Explorer) in CCS Linux?

That way we can just "Import to CCS IDE" when browsing in the "View->Resource Explorer" window. Works great on Windows10.

But getting Failure errors in Linux CCS (9.3.0) on the "Installing Packages" Icon after hitting "Install" in the  "View->Resource Explorer" window.

Didn't see anything in CCS release notes or UG. 

Is this supported?

Detailed errors on MSP430Ware and CC2652 Simplelink SDK (just manually installed the latter) below:

Error
Received message: "<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/.../xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>404 - Not Found</title> </head> <body> <h1>404 - Not Found</h1> </body> </html> " with status code: 404 when making request to dev.ti.com/.../packageDownloadInfomsp430ware__3.80.08.01

Error
Received message: "<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/.../xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>404 - Not Found</title> </head> <body> <h1>404 - Not Found</h1> </body> </html> " with status code: 404 when making request to dev.ti.com/.../bundleSIMPLELINK_CC13X2_26X2_SDK__3.30.00.03&makeoffline=true&progressId=f28586e13743998511824afdbadd5f5a18ada3ff&os=linux

***

  • Hi,

    I was able to install the indicated releases of both packages in CCSv9.3.0 on Ubuntu 18.04 installed as a superuser and running as a regular user, thus ruling out any intrinsic problems with the tool. 

    However, given that you are getting error 404, there is the possibility of having a network/internet connection error. One of the most common problems is the dance around proxy servers. (unfortunately linux is not the most logical in spreading a given set proxy throughout all components of the system)

    One test is to open a terminal view and set the variable http_proxy with the assigned proxy and port configurations and then launch CCS. 

    terminal said:

    user@host:~/$ cd ti/ccs930/ccs/eclipse
    user@host:~/ti/ccs930/ccs/eclipse$ http_proxy=<my_proxy_server>:<my_port> bash -c './ccstudio &'

    If you are not behind a proxy, I would go through the troubleshooting steps shown in section 9.5 of the CCS User's Guide at:

    https://software-dl.ti.com/ccs/esd/documents/users_guide/index.html 

    Hope this helps,

    Rafael

  • Rafael,

    Thanks, your proxy line above worked perfectly. Little surprised that  Windows --> Preferences --> General --> Network Connections was not enough. But was able to download MSP430Ware and import andexample.  Thanks!

    -Joe