File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,39 @@ quickly create a custom BACnet device on a variety of existing boards.
2525These samples are crafted to be simple and easy to understand, serving as a
2626starting point for your own projects.
2727
28+ This repository is a Zephyr manifest-module, which means it can be used in either
29+ of the following ways:
30+
31+ - As a module brought in by a different manifest (recommended for product development)
32+
33+ ** [ Prototyped but not verified] ** Add the following into the root manifest file (e.g., $workspace_dir/$manifest_repo/west.yml)
34+
35+ ```
36+ # In external manifest repository, `west.yml`
37+ # to bring in the Zephyr integration of bacnet-stack
38+ # as a Zephyr module
39+
40+ # Add the following under remotes:
41+ - name: bacnet-stack
42+ url-base: https://github.com/bacnet-stack
43+
44+ # Add the following under projects:
45+ - name: bacnet
46+ repo-path: bacnet-stack-zephyr
47+ path: modules/lib/bacnet
48+ import:
49+ name-allowlist:
50+ - bacnet-stack
51+
52+ - name: bacnet-stack
53+ path: modules/lib/bacnet/stack
54+ ```
55+
56+ - As a workspace manifest repository (recommended for bacnet-stack contributions):
57+
58+ ` west init -m https://github.com/bacnet-stack/bacnet-stack-zephyr --mr default $my_workspace `
59+
60+
2861## Hello BACnet Stack
2962
3063A simple "Hello World" sample that can be used with any supported board boards
You can’t perform that action at this time.
0 commit comments