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.

Doxygen

Hi,

I have installed Eclox plugin to use Doxygen + Graphviz in the Code Composer Studio.

Now, I would like the Eclipse to automatically insert the Doxygen comment block above new functions.

I have tried the following:

1)

In Window->Preferences->C/C++->Editor,
In the right tab look for "Documentation tool comments", and in "Workspace default" set doxygen.

2)

For Project specific settings
In Project->Properties->C/C++ General:

  • Tick Enable project specific Settings
  • Select Doxygen as Documentation tool

But when I type "/** + Enter" above a function, Eclipse adds the following:

/**
 * 
 */
void test(void){
	
}

I as expecting something like this:

/** @brief 
 *  @param
 *  @return Void.
 */
void test(void){
}

Is it possible in the Code Composer Studio?

Thank you!