|
@@ -9,13 +9,13 @@ example is explained in detail on @ref max31855
|
9
|
9
|
### Adding a new module to UPM
|
10
|
10
|
|
11
|
11
|
1. Choose a name for your module (see @ref naming)
|
12
|
|
-2. Make a new folder in src/<modulename>
|
13
|
|
-3. Create a CMakeLists.txt file inside src/<modulename>
|
|
12
|
+2. Make a new folder in src/modulename
|
|
13
|
+3. Create a CMakeLists.txt file inside src/modulename
|
14
|
14
|
|
15
|
15
|
### CmakeLists.txt
|
16
|
16
|
|
17
|
|
-By default you need a header called <modulename>.h and a C++ file called
|
18
|
|
-<modulename>.cxx. You can have multiple headers and source files. Only public
|
|
17
|
+By default you need a header called modulename.h and a C++ file called
|
|
18
|
+modulename.cxx. You can have multiple headers and source files. Only public
|
19
|
19
|
headers need to be added to module_h and all source files need to be in
|
20
|
20
|
module_src.
|
21
|
21
|
|
|
@@ -60,6 +60,6 @@ The last step is when you're happy with your module and it works send us a pull
|
60
|
60
|
request! We'd love to include your sensor in our repository.
|
61
|
61
|
|
62
|
62
|
If you don't like github you can also send brendan.le.foll@intel.com a git
|
63
|
|
-formatted patch if your sensor. More details are on @ref contributing and on
|
|
63
|
+formatted patch if your sensor. More details are on @ref contributions and on
|
64
|
64
|
https://help.github.com/articles/creating-a-pull-request
|
65
|
65
|
|