I am documenting my C code, and trying to comment a _packed struct that will show in the data structure. My code looks like this:
/*! \struct TYPEDEF
@brief A type definition for \a ADC_Group
*/
typedef __packed struct {
uint16_t a
uint16_t b
uint16_t c
uint16_t d
} ADC_Group;
But doxygen does not make ADC_Group as a link. It shows up as text only. I believe it has to do with _packed. Because my other typedef structs work just fine, and I'll see a link to the struct with all the members.
Any ideas?
Thank you,
Marjan
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am documenting my C code, and trying to comment a _packed struct that will show in the data structure. My code looks like this:
But doxygen does not make ADC_Group as a link. It shows up as text only. I believe it has to do with _packed. Because my other typedef structs work just fine, and I'll see a link to the struct with all the members.
Any ideas?
Thank you,
Marjan