File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,42 @@ IEEE 802.15.4-2020).
88At the moment, this is mostly a proof-of-concept and only FSK
99modulation is supported.
1010
11+ Building & Installation
12+ =======================
13+
14+ To build ` gr-wisun ` , run these commands:
15+
16+ ```
17+ mkdir build
18+ cd build
19+ cmake -DCMAKE_INSTALL_PREFIX=/path/to/install-dir ..
20+ make
21+ ```
22+
23+ Once built, installing is done with:
24+
25+ ```
26+ make install
27+ sudo ldconfig
28+ ```
29+
30+ Tests
31+ =====
32+
33+ The directory ` python/wisun ` contains unit tests for each block. They
34+ can be executed with the following command (after doing the
35+ build-steps above):
36+
37+ ```
38+ make test
39+ ```
40+
41+ An individual test can be executed with ` ctest ` , e.g.:
42+
43+ ```
44+ ctest --output-on-failure -R rssi_tag_cc
45+ ```
46+
1147Examples
1248========
1349
You can’t perform that action at this time.
0 commit comments