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/PROCESSOR-SDK-AM335X: Board programming via RSE

Part Number: PROCESSOR-SDK-AM335X

Tool/software: Code Composer Studio

Hi
I have beaglebone black and I have psdk rt-linux on a sd card. also I installed PSDK rt-linux  and CCS on my Ubuntu host,

I wrote a hello word program according to "http://processors.wiki.ti.com/index.php/Processor_SDK_Linux_Training:_Hands_on_with_the_Linux_SDK#Creating_a_New_CCS_Project"

now I want program my BBB with this. so I should to use RSE according to "processors.wiki.ti.com/.../Processor_SDK_Linux_Training:_Hands_on_with_the_Linux_SDK

So I need to my target (BBB) IP address. 


as mentioned in "processors.wiki.ti.com/.../How_to_setup_Remote_System_Explorer_plug-in, I used ifconfig in command line to achive BBB IP address and here is the result:


question 1: Now what is the IP address that I should use as host name in "processors.wiki.ti.com/.../How_to_setup_Remote_System_Explorer_plug-in

question 2: for program BBB with RSE, what is the connection that is necessary between target board(BBB) and host computer? is Ethernet connection with LAN cable enough?

question 3: what is true connection for debug with gdbserver?(Ethernet ?FTDI? or both of them?)

question 4: basically, what is the difference between: use programmer xds100 for program BBB and using RSE for program?

Thanks a lot.

  • The software team have been notified. They will respond here.
  • roya azimi said:
    question 1: Now what is the IP address that I should use as host name in "processors.wiki.ti.com/.../How_to_setup_Remote_System_Explorer_plug-in

    None of your ethernet interfaces have IP addresses. Try running udhcpc on the interface you have connected. I recommend eth0. This should get you an IP address. Please note, you have to have a DHCP server connected and configured correctly. If you don't want to use DHCP, use the ifconfig command to set a static IP address for the interface making sure it is on the same subnet as your debug host.

    roya azimi said:
    question 2: for program BBB with RSE, what is the connection that is necessary between target board(BBB) and host computer? is Ethernet connection with LAN cable enough?

    Yes, ethernet connect with LAN cable is enough.

    roya azimi said:
    question 3: what is true connection for debug with gdbserver?(Ethernet ?FTDI? or both of them?)

    gdbserver uses ethernet.

    roya azimi said:
    question 4: basically, what is the difference between: use programmer xds100 for program BBB and using RSE for program?

    xds100 uses JTAG, RSE uses a network connection as mentioned above. JTAG is much lower level. Ethernet requires a stable network connection (i.e. running ethernet stack).

  • This resolved my issua,
    Thanks for your support.