• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.gitignoreD03-Aug-202431 54

MakefileD01-Jan-19700

README.mdD03-Aug-2024842 2014

developer_set.yamlD03-Aug-20242.9 KiB10187

west.ymlD03-Aug-20243 KiB9381

README.md

1The BabbleSim project consists of many components, most of them optional and each in its own separate git repository.
2
3You can fetch them in several ways, check [the fetching instructions](https://babblesim.github.io/fetching.html)
4
5Using Zephyr's [west tool](https://docs.zephyrproject.org/latest/develop/west/index.html)
6you can do
7
8```
9mkdir ~/bsim/ && cd ~/bsim/
10west init -m git@github.com:BabbleSim/bsim_west.git bsim
11cd bsim
12west update
13```
14
15This repository contains the following west manifest files:
16
17 * west.yml: Contains the minimal set of BabbleSim components required for Zephyr BLE development and testing
18 * developer_set.yaml: Targets developers who want a typical set of components used for development and test of BLE/802.15.4 devices.<br>
19   You can use it with `west config manifest.file developer_set.yaml ; west update`
20