]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blob - HACKING
Add Hantek PSO2020 firmware support
[sigrok-firmware-fx2lafw.git] / HACKING
1 -------------------------------------------------------------------------------
2 HACKING
3 -------------------------------------------------------------------------------
4
5 Coding style
6 ------------
7
8 This project is programmed using the Linux kernel coding style:
9
10   https://www.kernel.org/doc/html/latest/process/coding-style.html
11
12 Please use the same style for any code contributions, thanks!
13
14 In some exceptional cases deviations from the above coding guidelines are
15 OK (in order to meet fx2lib related guidelines, for example).
16
17
18 Contributions
19 -------------
20
21  - In order to contribute you should ideally clone the git repository and
22    let us know (preferably via IRC, or via the mailing list) from where to
23    pull/review your changes. You can use github.com, or any other public git
24    hosting site.
25
26  - Alternatively, patches can be sent to the development mailinglist at
27    sigrok-devel@lists.sourceforge.net (please subscribe to the list first).
28
29    https://lists.sourceforge.net/lists/listinfo/sigrok-devel
30
31
32 Random notes
33 ------------
34
35  - Consistently use the same naming convention for #include guards in headers:
36    <PROJECTNAME>_<PATH_TO_FILE>_<FILE>
37    This ensures that all #include guards are always unique and consistent.
38    Example: FX2LAFW_INCLUDE_COMMAND_H
39
40  - In Doxygen comments, put an empty line between the block of @param lines
41    and the final @return line. The @param lines themselves (if there is more
42    than one) are not separated by empty lines.
43
44
45 Release engineering
46 -------------------
47
48 See
49
50  http://sigrok.org/wiki/Developers/Release_process
51
52 for a list of items that need to be done when releasing a new tarball.
53