Marjan H - 2015-06-18

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