Skip to content

Commit 6417b16

Browse files
committed
SWPROT-8953: Docs add Quickstart instructions
Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
1 parent 24249e4 commit 6417b16

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

README.md

+68
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,74 @@ Or relevant sources pages, to get started head to:
2222

2323
## Quickstart
2424

25+
The fastest (less than 20min) way to build z-wave-protocol-controller from scratch
26+
is to delegate all tasks to docker.
27+
28+
This one-liner will do download latest release, setup environment, build, test, package...:
29+
30+
```sh
31+
docker build https://github.com/SiliconLabsSoftware/z-wave-protocol-controller.git#ver_1.7.0
32+
```
33+
34+
Alternatively, it can also build from sources, and checked using:
35+
36+
```sh
37+
git clone https://github.com/SiliconLabsSoftware/z-wave-protocol-controller
38+
cd z-wave-protocol-controller
39+
docker build --tag z-wave-protocol-controller:main .
40+
docker run --tag z-wave-protocol-controller:main
41+
```
42+
43+
Power users might prefer to directly work on a native GNU/Linux environment,
44+
and look at [./helper.mk](helper.mk) script that details all the needed steps
45+
to setup system and before using CMake.
46+
47+
At the moment stable version of Debian is supported,
48+
so it should work also in relatives projects (Ubuntu, RaspiOS, WSL2 etc)
49+
and should be easy to adapt to other distributions.
50+
51+
```sh
52+
./helper.mk help
53+
./helper.mk setup # To setup developer system (once)
54+
./helper.mk VERBOSE=1 # Default build tasks verbosely (depends on setup)"
55+
./helper.mk run # Run entry-point application
56+
```
57+
58+
It should print zpc's help.
59+
60+
To use it, a Silicon Labs' Z-Wave NCP should be plugged in USB port
61+
to verify you can check firmware version:
62+
63+
```sh
64+
serial=$(ls /dev/serial/by-id/usb-Silicon_Labs* | head -n1)
65+
./helper.mk run run_args="--zpc.serial=${serial} --zpc.ncp_version"
66+
# <i> [zpc_ncp_update] chip_serial_api_version: 7.23.1
67+
```
68+
69+
Let's interact with the inbuilt shell of zpc:
70+
71+
```sh
72+
./helper.mk run run_args="--zpc.serial=${serial}"
73+
ZPC>help
74+
==================================================
75+
Unify Command line interface Help:
76+
==================================================
77+
(...)
78+
exit :Exit the application
79+
(...)
80+
zwave_home_id Print Z-Wave Home ID
81+
(...)
82+
zwave_add_node :Add a Z-Wave node to the network
83+
(...)
84+
zwave_set_default Reset Z-Wave network
85+
(...)
86+
ZPC> zwave_home_id
87+
Z-Wave Home ID:
88+
1BADC0DE
89+
ZPC>zwave_add_node
90+
(...)
91+
```
92+
2593

2694
## Contributing
2795

0 commit comments

Comments
 (0)