X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=HACKING;h=dc4d53d45b37592eda9d750e8e585156d5e9fcf3;hb=307fcf90e9e537e97c4621bb3ba8f276a0f5d548;hp=922415faac884416ebeb7756fcf632c49f9ea2dc;hpb=1859c4804d04b58ba15a316eb16035c6bbb611fe;p=libsigrokdecode.git diff --git a/HACKING b/HACKING index 922415f..dc4d53d 100644 --- a/HACKING +++ b/HACKING @@ -74,10 +74,22 @@ Random notes should end with "_all", e.g. "_remove_all", "_get_all", and so on. Use "_remove_all" in favor of "_clear" for consistency. + +Doxygen +------- + - In Doxygen comments, put an empty line between the block of @param lines and the final @return line. The @param lines themselves (if there is more than one) are not separated by empty lines. + - Mark private functions (SRD_PRIV) with /** @private */, so that Doxygen + doesn't include them in the output. Functions that are "static" anyway + don't need to be marked like this. + + - Mark private variables/#defines with /** @cond PRIVATE */ and + /** @endcond */, so that Doxygen doesn't include them in the output. + Variables that are "static" don't need to be marked like this. + Protocol decoder guidelines ---------------------------