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.
Per the previous questions and support on this topic I'm a bit confused. Is it possible to install these products from the command line or just set up the path to find them? What is the current procedure for getting a product like MotorControl SDK installed in a docker image?
Hello,
Per the previous questions and support on this topic I'm a bit confused. Is it possible to install these products from the command line or just set up the path to find them?
The topics you mentioned are related to CCS product discovery of packages that have been physically installed on the system (but not yet discovered by CCS).
Many of the packages have standalone installers that can be downloaded from ti.com and manually run to install the product. Example: www.ti.com/.../C2000WARE-MOTORCONTROL-SDK
Once the product is installed on the system, then it would need to be "discovered" by CCS.
Hope this helps
ki
Ok thanks for the quick reply. So the only method right now is to somehow download the product and then copy it in. In my case I downloaded it using the resource explorer on a ccs install in linux. Then I copied it to my docker image.
ARG TI_MOTOR_SDK=C2000Ware_MotorControl_SDK_3_03_00_00 COPY $TI_MOTOR_SDK/ /ti/$TI_MOTOR_SDK/ # https://software-dl.ti.com/ccs/esd/documents/ccs_projects-command-line.html RUN ccstudio -nosplash -application com.ti.common.core.initialize \ -ccs.productDiscoveryPath "/ti/$TI_MOTOR_SDK"