Thread Co-processor¶
Overview¶
The Thread Co-processor sample demonstrates how to implement OpenThread’s Co-processor designs inside the Zephyr environment. The sample uses the Radio co-processor (RCP) architecture.
The sample is based on Zephyr’s OpenThread Co-Processor sample. However, it customizes Zephyr’s sample to fulfill the nRF Connect SDK requirements (for example, by increasing the stack size dedicated for the user application), and also extends it with features such as:
- Increased Mbed TLS heap size.
- Lowered main stack size to increase user application space.
- No obsolete configuration options.
- Vendor hooks for co-processor architecture allowing users to extend handled properties by their own, customized functionalities.
- Thread 1.2 features.
Sniffing packets from a Thread network
You can use nRF Sniffer for 802.15.4 to capture and analyze packets exchanged on a Thread network.
Requirements¶
Before you start, check that you have the required hardware and software:
- 1x nRF52840 MDK USB Dongle](https://makerdiary.com/products/nrf52840-mdk-usb-dongle)(or w/Case option)
- A computer running macOS, Linux, or Windows 7 or newer
- Python v3.6 or later
Building the sample¶
Before you start building, remember to set up the environment first.
Use the following steps to build the Thread Co-processor sample on the command line.
-
Open a terminal window.
-
Go to
my-workspace/ncs-playground
directory created in the Setting up the environment section. -
Build the sample using the
west
command, specifying the board (following the-b
option) asdongle_nrf52840
:Tip
The
-p always
option forces a pristine build, and is recommended for new users. Users may also use the-p auto
option, which will use heuristics to determine if a pristine build is required, such as when building another sample. -
After running the
west build
command, the build files can be found inbuild/zephyr
.
Flashing the firmware¶
The sample is designed to work with the UF2 Bootloader, so that you can easily flash the sample using the UF2 Bootloader. The firmware can be found in build/zephyr
with the name zephyr.uf2
.
To flash the firmware, complete the following steps:
-
Push and hold the button and plug your dongle into the USB port of your computer. Release the button after your dongle is connected. The RGB LED turns green.
-
It will mount as a Mass Storage Device called UF2BOOT.
-
Drag and drop
zephyr.uf2
onto the UF2BOOT volume. The RGB LED blinks red fast during flashing. -
Re-plug the dongle and the sample will start running.
Testing¶
After flashing the firmware to your dongle, complete the following steps to test it:
- Plug the dongle into the USB port of your computer.
- Get the board’s serial port name (for example,
/dev/cu.usbmodem14201
). -
Build the OpenThread POSIX applications by performing the following steps:
-
Enter the
openthread
directory: -
Install the OpenThread dependencies:
-
Build the
ot-daemon
andot-ctl
applications with support for Thread v1.2:
You can find the generated applications in
./build/posix/src/posix/
. -
-
Open up a terminal window, and start
ot-daemon
with the--verbose
flag so you can see log output and confirm that it is running:When successful,
ot-daemon
in verbose mode generates output similar to the following: -
Open up a second terminal window and use
ot-ctl
to communicate with the RCP node, specifying the Thread interfaceutun4
shown inot-daemon
log output: -
From this point, you can follow the Testing instructions in the CLI sample by removing the
ot
prefix for each command. For example: