I’m documenting code C with doxygen but this function can´t
/**
* @fn void myApp_StartReporting( void )
*
* @brief bla bla....
*
* @see myAccReportPeriod
*
* @return none
*/
static void myApp_StartReporting( void );
If remove static the documentation is ok.
Thank you very much.
By default doxygen skips static functions. Did you set the
EXTRACT_STATIC = YESoption in your Doxyfile?Also a style note (which was my first guess on what’s wrong):
If the documentation block is placed immediately before the entity that it describes the
@fntag is not needed.