What's new

Doxygen usage.

Cyberman

Moderator
Moderator
All right has anyone used Doxygen extensively? (I mean for projects with more than 100k lines of code scale).
I am trying to find a way to have my version comments used within doxygen. What would be idealic is a heirarchically browseable structure for each version.
Currently versioning is
Major.Minor.Revision.Subrevision
(that's how it's broken up heirachically).


My current Version information file is about 4000 lines and instead of wading through an entire wad of comments and notes it would be nice to quickly browse through it without pulling hair out. Also I have had some difficulty with creating groups of information. Any ideas out there? I have seen some examples of doxygen usage but most of it is quite trivial. Something with a larger degree of sophistication than
Code:
/*!    cal_ad_setup    Setup the A/D registers and ISR control for calibration.
    a specific channel)
 \param    p_sensor_data    sensor to set the A2D registers for
*/
void cal_ad_setup(struct SENSOR xdata *p_sensor_data);
Cyb
 

Top