You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some packages there are many constants that are nice to have documented. For example, in this format:
/*!
* Indicate end of burst for transmit or receive.
* For write, end of burst if set by the caller.
* For read, end of burst is set by the driver.
*/
#define END_BURST (1 << 1)
is output as:
const END_BURST = 1 << 1
I am attempting the changes for this but I am having difficulty tracking down where the comment is dropped from the parser.
The text was updated successfully, but these errors were encountered:
For some packages there are many constants that are nice to have documented. For example, in this format:
is output as:
I am attempting the changes for this but I am having difficulty tracking down where the comment is dropped from the parser.
The text was updated successfully, but these errors were encountered: