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/TMS320F28062: Code composer Tasks location

Part Number: TMS320F28062
Other Parts Discussed in Thread: C2000WARE

Tool/software: Code Composer Studio

Hello,

I would like to add the file containing tasks (TODO comments) information to my perforce client,

any idea where this is located in the project's folder?

Thanks,

Amitai

  • Hello Amitai,

    I think you are referring to the file which defines CLA tasks? If so, I should point out that the device you are using (F28062) does not have a CLA.

    If you download C2000Ware you can find several CLA example projects written for the F28069. If you install in the default location, one such example will be at:
    C:\ti\c2000\C2000Ware_1_00_01_00\device_support\f2806x\examples\cla\fir32

    The file "fir32.cla" may help you. Please post back if you meant something else.

    Regards,

    Richard
  • Thanks Richard,

    Me intention is for the CCS build-in tasks:

    In which place/files are these tasks saved?

    I'm asking since I don't want to share all files of a worksapce, only specific.

    Amitai

  • This window appears to be auto-generated. I just found it on a project, and it "keyed" on FIXME. When I removed the word FIXME from the line, the resulting "Task" entry went away. So, you may have to edit your code comments to remove from the Tasks view.

    You may want to ask this question in the Code Composer Studio forum to get other options...
  • I'll post in the CCS forum,
    Thanks
  • Amitai,

    I have moved this over to the CCS forum for you.

    Regards,
    Mark
  • Amitai Weil said:
    Me intention is for the CCS build-in tasks:

    In which place/files are these tasks saved?

    Amitai,

    The Task view in CCS can be used to create/track tasks, however it is not the most robust or efficient method to share work-items within a team. I would recommend using some sort of bug/task tracking system for that. Having said that, if you are just looking for a way to share simple tasks, here are a couple of suggestions that I hope will help:

    1) When you use //TODO type comments in a C source file, the tasks are auto-generated by parsing the source file and will appear in the Tasks view. Note that you can define additional tags to be recognized as tasks from the menu Window->Preferences->C/C++->Task Tags.
    These tasks will be saved with the source file and can be shared. You could even add a "todo.c" file to your project, and keep all the general To-do tasks there. This file can be shared with others in a team so they can include it in their projects and view the tasks, but based on the requirements, the file can be excluded from the project build itself.

    2) Add Tasks using the context menu of Tasks view. This type of task is not tied to a particular resource/source file. These types of tasks I believe are stored in the workspace folder \.metadata\.plugins\org.eclipse.core.resources\.root\.markers file. Note that this is not a text file, but you could try copying the file over to the same location in another workspace and I believe that should allow the tasks to be displayed in the Tasks view of the new workspace.

  • I will use method 1.
    As for method 2 - I don't have any markers file.
    Thanks,
    Amitai
  • Amitai Weil said:
    As for method 2 - I don't have any markers file.

    The file appears to be generated only when CCS is closed, or when you switch to a different workspace.