├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.txt ├── LICENSE ├── README.md ├── config └── ncs │ ├── overlay-common.conf │ ├── overlay-ot-cli-ftd-1.1.conf │ ├── overlay-ot-cli-ftd-1.2.conf │ ├── overlay-ot-cli-ftd-1.3.conf │ ├── overlay-ot-cli-ftd-1.4.conf │ ├── overlay-ot-cli-ftd-common.conf │ ├── overlay-ot-rcp-1.2.conf │ ├── overlay-ot-rcp-1.3.conf │ ├── overlay-ot-rcp-1.4.conf │ ├── overlay-ot-rcp-common.conf │ ├── requirements-nrfutil.txt │ ├── sdk-nrf-commit │ └── toolchain-version ├── doc ├── OpenThread 1.2 Reference Release QSG.pdf └── nRF52840 Dongle Programming Guide_v4.pdf ├── requirements.txt ├── script ├── bootstrap.bash ├── make-commissioner.bash ├── make-firmware.bash ├── make-pretty ├── make-raspbian.bash ├── make-reference-release.bash ├── make-thci.bash ├── mount.bash ├── otbr-cleanup.bash └── otbr-setup.bash └── thci ├── OTNCS.py └── OTNCS_BR.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | output/ 3 | .idea 4 | ncs/* 5 | mnt-rpi/* 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/README.md -------------------------------------------------------------------------------- /config/ncs/overlay-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-common.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-cli-ftd-1.1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-cli-ftd-1.1.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-cli-ftd-1.2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-cli-ftd-1.2.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-cli-ftd-1.3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-cli-ftd-1.3.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-cli-ftd-1.4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-cli-ftd-1.4.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-cli-ftd-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-cli-ftd-common.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-rcp-1.2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-rcp-1.2.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-rcp-1.3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-rcp-1.3.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-rcp-1.4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-rcp-1.4.conf -------------------------------------------------------------------------------- /config/ncs/overlay-ot-rcp-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/overlay-ot-rcp-common.conf -------------------------------------------------------------------------------- /config/ncs/requirements-nrfutil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/config/ncs/requirements-nrfutil.txt -------------------------------------------------------------------------------- /config/ncs/sdk-nrf-commit: -------------------------------------------------------------------------------- 1 | v3.1.0 2 | -------------------------------------------------------------------------------- /config/ncs/toolchain-version: -------------------------------------------------------------------------------- 1 | v3.1.0 2 | -------------------------------------------------------------------------------- /doc/OpenThread 1.2 Reference Release QSG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/doc/OpenThread 1.2 Reference Release QSG.pdf -------------------------------------------------------------------------------- /doc/nRF52840 Dongle Programming Guide_v4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/doc/nRF52840 Dongle Programming Guide_v4.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | git_archive_all 2 | -------------------------------------------------------------------------------- /script/bootstrap.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/bootstrap.bash -------------------------------------------------------------------------------- /script/make-commissioner.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-commissioner.bash -------------------------------------------------------------------------------- /script/make-firmware.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-firmware.bash -------------------------------------------------------------------------------- /script/make-pretty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-pretty -------------------------------------------------------------------------------- /script/make-raspbian.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-raspbian.bash -------------------------------------------------------------------------------- /script/make-reference-release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-reference-release.bash -------------------------------------------------------------------------------- /script/make-thci.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/make-thci.bash -------------------------------------------------------------------------------- /script/mount.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/mount.bash -------------------------------------------------------------------------------- /script/otbr-cleanup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/otbr-cleanup.bash -------------------------------------------------------------------------------- /script/otbr-setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/script/otbr-setup.bash -------------------------------------------------------------------------------- /thci/OTNCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/thci/OTNCS.py -------------------------------------------------------------------------------- /thci/OTNCS_BR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openthread/ot-reference-release/HEAD/thci/OTNCS_BR.py --------------------------------------------------------------------------------