I've got this somewhat annoying problem that the editor doxygen support for some reason is turned off on a set of files I'm working with.
I believe this is related to the fact the files aren't in the root source directory.
I have in ~/source c source files that I can do add doxygen comments for functions automatically like this:
/*!
*
* @param usec_delay
*/
void BSP_Delay(uint16_t usec_delay)
{
It's path is ~/source/bsp.c
Now in this function this does not work as expected:
/*!
*
*/
void fcc_transmit(uint16_t state)
{
it's path is ~/source/fcc/fcc_test.c
I have the doxygen enabled under
Windows->preferences|C/C++->Editor (See attached image)
So the global settings can't be the problem. It's not just 1 file it's all files not in the root directory. It is a bit ... frustrating doing all the doxygen commenting by hand as that can lead to typos and errors which I have enough trouble with in the code.
Thanks any suggestion would be welcome
Stephen
