瀏覽代碼

docs: updated documentation.md with more details

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Mihai Tudor Panu 10 年之前
父節點
當前提交
f0dd5f9530
共有 1 個檔案被更改,包括 69 行新增39 行删除
  1. 69
    39
      docs/documentation.md

+ 69
- 39
docs/documentation.md 查看文件

@@ -4,63 +4,69 @@ Writing sensor documentation                        {#documentation}
4 4
 It is highly encouraged to provide at least some basic documentation for the
5 5
 sensors that you want to add to UPM:
6 6
 
7
+- If you don't add documentation, the code review will take very long and 
8
+  your contribution could be rejected.
7 9
 - Try to have no warnings in doxygen, this is generally fairly easy.
8 10
 - Have the specific sensor manufacturer/model & version that you used, if you
9 11
   support multiple versions please list.
10
-- Simple comments do not need full stops
11
-- Stick to <80 chars per line even in comments
12
-- No text is allowed on the same line as the start or end of a comment /** */
12
+- Simple comments do not need full stops.
13
+- Stick to <80 chars per line even in comments.
14
+- No text is allowed on the same line as the start or end of a comment /** */.
13 15
 
14
-New libraries must have the "@brief", "@defgroup" and "@ingroup" tags in one
15
-block. This usually follows the namespace and it is common to have one sensor
16
-per library.
16
+####The sensor block
17 17
 
18
-Here's how this looks (disregard the "@verbatim" tags in your actual code):
18
+This is added just before your class definition and has mandatory fields. For
19
+single sensor libraries, this block will actually follow immediately after the
20
+library block. If you have multiple physical sensors, add this to every one.
21
+Here's an example (disregard the "@verbatim" tags in your actual code):
19 22
 
20 23
 ```
21 24
 @verbatim
22 25
 /**
23
- * @brief Short description for entire library
24
- * @defgroup <name> <libupm-name>
25
- * @ingroup <manufacturer> <connection type> <sensor category> (<addl group>)
26
- */
27
-@endverbatim
28
-```
29
-
30
-If you have multiple classes or sensors per library, only use the "@ingroup"
31
-tags that are common for all of them.
32
-
33
-All classes should then have a "@brief", "@ingroup" and "@snippet". For single
34
-sensor libraries this block can follow immediately after the one above like in
35
-this example:
36
-
37
-```
38
-@verbatim
39
-/**
40
- * @brief Short class/sensor description
26
+ * @sensor <chip-id>
27
+ * @library <lib-name>
28
+ * @name <component-name>
29
+ * @category <component-category>
30
+ * @manufacturer <component-man>
31
+ * @kit <component-kit>
32
+ * @connection <connection-type>
41 33
  *
42
- * Then add a longer
43
- * description here.
34
+ * @brief Short class/sensor description
35
+ * 
36
+ *   Then add a longer
37
+ *   description here.
44 38
  *
45
- * @ingroup <name> (<addl group>)
46
- * @image html <name.jpeg>
47
- * @snippet <name.cxx> Interesting
39
+ * @image html <component-img.jpeg>
40
+ * @snippet <example-name.cxx> Interesting
48 41
  */
49 42
 @endverbatim
50 43
 ```
51 44
 
52
-Libraries with multiple sensors can add specific "@ingroup" tags here, but make
53
-sure that the first one is the name specified in the library "@defgroup" tag.
54
-Also, add this block to every sensor. An example of such a library for
55
-reference is our libupm-i2clcd, which acts as a driver for multiple I2C LCDs.
45
+- `<chip-id>` Usually the chip number used by the sensor. When this is not
46
+  available or relevant, use a unique descriptor that makes sense. *Mandatory*
47
+- `<lib-name>` When adding to an existing library this needs to match that
48
+  library's "@defgroup", otherwise this is generally the same as chip id.
49
+  *Mandatory*
50
+- `<component-name>` A short name for your sensor, can include manufacturer
51
+  name. *Mandatory*
52
+- `<component-category>` Mention one or more categories the sensor fits in. Can
53
+  be 'other'. *Mandatory*
54
+- `<component-man>` Sensor manufacturer. Can be 'generic'. *Mandatory*
55
+- `<component-kit>` Specifies if the sensor is part of a kit. *Optional*
56
+- `<connection-type>` Specifies how does the sensor connect to the board
57
+  *Mandatory*
58
+
59
+Existing groups that can be used for the manufacturer, connection, category and
60
+kit tags are found in the src/upm.h file.
56 61
 
57 62
 Optionally, a small representative image can be placed in the "docs/images"
58
-subfolder. **Please do not use existing, copyrighted images with your sensors!**
63
+subfolder and linked with the "@image" tag.
64
+**Please do not use existing, copyrighted images with your sensors!**
59 65
 
60 66
 The example should have an 'Interesting' section which will be highlighted as
61 67
 a code sample in doxygen. Everything in between such tags will show up in the
62 68
 class documentation when "@snippet" is added at the end of a class docstring.
63
-Tags use this format:
69
+Tags use this format (in "example-name.cxx"):
64 70
 
65 71
 ```
66 72
 @verbatim
@@ -72,7 +78,31 @@ Tags use this format:
72 78
 @endverbatim
73 79
 ```
74 80
 
75
-Existing groups that can be used for the manufacturer, connection and category
76
-tags are found in the src/upm.h file.
77
-
78 81
 For more examples take a look at the existing headers in our github repository.
82
+
83
+####The library block
84
+
85
+New libraries must have the "@brief", "@defgroup" and "@ingroup" tags in one
86
+block. This usually follows the namespace and it is common to have one sensor
87
+per library.
88
+
89
+You should end up with something like this:
90
+
91
+```
92
+@verbatim
93
+/**
94
+ * @brief Short description for entire library
95
+ *
96
+ * Optional longer description.
97
+ *
98
+ * @defgroup <lib-name> libupm-<lib-name>
99
+ * @ingroup <manufacturer> <connection> <category> (<kit>)
100
+ */
101
+@endverbatim
102
+```
103
+
104
+In "@defgroup" use the same `<lib-name>` used in the sensor block. Multiple
105
+sensors can be added to the same library this way.
106
+For "@ingroup" add the same values as in the sensor block for manufacturer,
107
+category, connection type and kit. If you have multiple classes or sensors
108
+per library, only use the "@ingroup" tags that are common for all of them.