Home
last modified time | relevance | path

Searched +full:toranj +full:- +full:ncp (Results 1 – 9 of 9) sorted by relevance

/openthread-3.4.0/tests/toranj/
DREADME.md1 # `toranj` test framework
3 `toranj` is a test framework for OpenThread.
7 - `toranj-cli` which enables testing of OpenThread using its CLI interface.
8 - `toranj-ncp` which enables testing of the combined behavior of OpenThread (in NCP mode), spinel i…
10 `toranj` features:
12 - It is developed in Python.
13 - It can be used to simulate multiple nodes forming complex network topologies.
14 - It allows testing of network interactions between many nodes (IPv6 traffic exchanges).
15 - `toranj` in NCP mode runs `wpantund` natively with OpenThread in NCP mode on simulation platform …
16 - `toranj` in CLI mode runs `ot-cli-ftd` on simulation platform (real-time).
[all …]
DREADME_NCP.md1 # `toranj-ncp` test framework
3 `toranj-ncp` is a test framework for OpenThread enabling testing of the combined behavior of OpenTh…
5 `toranj` features:
7 - It is developed in Python.
8 - It can be used to simulate multiple nodes forming complex network topologies.
9 - It allows testing of network interactions between many nodes (IPv6 traffic exchanges).
10 - `toranj` in NCP mode runs `wpantund` natively with OpenThread in NCP mode on simulation platform …
14 `toranj-ncp` requires `wpantund` to be installed.
16 - Please follow [`wpantund` installation guide](https://github.com/openthread/wpantund/blob/master/…
17 - Alternative way to install `wpantund` is to use the same commands from git workflow [Simulation](…
[all …]
Dbuild.sh33 echo "Toranj Build script "
37 echo " ncp : Build OpenThread NCP FTD mode with simulation platform"
38 …echo " ncp-15.4 : Build OpenThread NCP FTD mode with simulation platform - 15.4 radi…
39 …echo " ncp-trel : Build OpenThread NCP FTD mode with simulation platform - TREL radi…
40 …echo " ncp-15.4+trel : Build OpenThread NCP FTD mode with simulation platform - multi rad…
42 …echo " cli-15.4 : Build OpenThread CLI FTD mode with simulation platform - 15.4 radi…
43 …echo " cli-trel : Build OpenThread CLI FTD mode with simulation platform - TREL radi…
44 …echo " cli-15.4+trel : Build OpenThread CLI FTD mode with simulation platform - multi rad…
45 … echo " rcp : Build OpenThread RCP (NCP in radio mode) with simulation platform"
46 echo " posix : Build OpenThread POSIX NCP"
[all …]
DREADME_CLI.md1 # `toranj-cli`
3 `toranj-cli` is a test framework for OpenThread using its CLI interface.
5 `toranj` features:
7 - It is developed in Python.
8 - It can be used to simulate multiple nodes forming complex network topologies.
9 - It allows testing of network interactions between many nodes.
10 - `toranj` in CLI mode runs `ot-cli-ftd` on simulation platform (real-time).
14 To build OpenThread with `toranj` configuration, the `test/toranj/build.sh` script can be used:
17 $ ./tests/toranj/build.sh cmake
19 Building OpenThread (NCP/CLI for FTD/MTD/RCP mode) with simulation platform using cmake
[all …]
Dstart.sh46 while read -r interface; do
48 done < <(ifconfig 2>/dev/null | grep -o "wpan[0-9]*")
58 if sudo -E "${python_app}" "$1"; then
64 if [ "$counter" -lt 7 ]; then
73 tail -n 40 "${log_file_name}"*.log
81 sudo apt-get --no-install-recommends install -y dbus libdbus-1-dev
82 sudo apt-get --no-install-recommends install -y autoconf-archive
83 sudo apt-get --no-install-recommends install -y libarchive-tools
84 sudo apt-get --no-install-recommends install -y libtool
85 sudo apt-get --no-install-recommends install -y libglib2.0-dev
[all …]
Dopenthread-core-toranj-config.h30 …* This header file defines the OpenThread core configuration options used in NCP build for `toranj
35 #error "This header file should only be included through the platform-specific one"
201 * The number of EID-to-RLOC cache entries.
237 …* The maximum number of EID-to-RLOC cache entries that can be uses for "snoop optimization" where …
362 * Define to 1 to enable NCP HDLC support.
370 * The size of NCP message buffer in bytes
389 * and mesh-local IP address as the source address) to its previous parent.
415 …y should preferably be longer than maximum data poll interval used by all sleepy-end-devices within
461 * For `toranj` test script the value is decreased so that the tests can be run faster.
469 * Define to 1 to enable support controlling of desired power state of NCP's micro-controller.
[all …]
/openthread-3.4.0/.github/workflows/
Dtoranj.yml29 name: Toranj
33 branches-ignore:
34 - 'dependabot/**'
37 - 'main'
40 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…
41 cancel-in-progress: true
48 toranj-ncp:
49 name: toranj-ncp-${{ matrix.TORANJ_RADIO }}
50 runs-on: ubuntu-20.04
52 fail-fast: false
[all …]
/openthread-3.4.0/tools/gerrit/
DREADME.md1 # git-squash-merge tool
3 `git-squash-merge` is a bash script to help squash merge a given branch into the current branch. Th…
10 git-squash-merge [--no-list] [--no-commit] <branch> [<commit msg>]"
15 - `<branch>` specifies the name of branch to merge into current branch.
16 - `<commit msg>` is an optional parameter specifying text to add to the commit message.
20 - `--no-list` when used the commit message will not include the list of squashed commits.
21 - `--no-commit` when used, the tool squashes and stages the changes but does not commit"
26 ~/sw/openthread $ ./tools/gerrit/git-squash-merge.sh github/master "OpenThread GitHub sync"
29 Date: Tue Aug 14 14:53:33 2018 -0700
37 … a9932027f [toranj] test case for adding IPv6 addresses with same prefix on multiple nodes (#2915)
[all …]
/openthread-3.4.0/tests/toranj/ncp/
Dtest-019-inform-previous-parent.py32 # -------------------------------------------------------------------------------------------------…
36 # an IP message (with empty payload and mesh-local IP address as the source
48 # parent1--- parent2
57 # `openthread-core-toranj.config.h` header file.
60 test_name = __file__[:-3] if __file__.endswith('.py') else __file__
61 print('-' * 120)
64 # -------------------------------------------------------------------------------------------------…
74 # -------------------------------------------------------------------------------------------------…
79 # -------------------------------------------------------------------------------------------------…
84 # parent1--- parent2
[all …]