Skip to content

Commit 8b9f523

Browse files
authored
Merge pull request #24 from bacnet-stack/gregshue-patch-1
Update README.md
2 parents 62f7db8 + 49f7dd3 commit 8b9f523

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,39 @@ quickly create a custom BACnet device on a variety of existing boards.
2525
These samples are crafted to be simple and easy to understand, serving as a
2626
starting 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

3063
A simple "Hello World" sample that can be used with any supported board boards

0 commit comments

Comments
 (0)