I have document with doxygen as follows:
/** @fn
* Function detailed description
*
* @param [in] param1_name description of parameter1
* @param [in] param2_name description of parameter2
* @return return_name return description
*/
uint32_t function_name(uint32_t param1_name, uint32_t param2_name);
But the detailed description isn't being rendered in the doxygen html, I have followed the guidelines from the page without any luck.
@fnpart and with one empty line between parameters and return value?@fnis here not necessary as the documentation is just before the prototype. The empty line is not required./** \file */at the beginning of the file.