README.rst
1.. zephyr:code-sample:: openthread-border-router
2 :name: OpenThread BorderRouter
3 :relevant-api:
4
5 Test Wi-Fi and IEEE 802.15.4 using the OpenThread Border Router.
6
7Overview
8********
9
10This sample allows testing the Thread protocol and the Thread Border Router functionality for various
11boards using the OpenThread and Wi-Fi shell.
12
13Building and Running
14********************
15
16Verify that the board and chip you are targeting provide IEEE 802.15.4 and Wi-Fi support.
17
18There are configuration files for different boards and setups in the shell directory:
19
20- :file:`prj.conf`
21 Generic config file.
22
23- :file:`overlay-ot-rcp-host-wifi-nxp.conf`
24 This overlay config enables support of OpenThread RCP host running on NXP chips over IMU interface. It also has Wi-Fi support enabled.
25
26Build OpenThread Border Router application like this:
27
28.. zephyr-app-commands::
29 :zephyr-app: samples/net/openthread/border_router
30 :board: <board to use>
31 :conf: <config file to use>
32 :goals: build
33 :compact:
34
35Example building for NXP's RW612 FRDM (RCP host).
36
37.. zephyr-app-commands::
38 :zephyr-app: samples/net/openthread/border_router
39 :board: frdm_rw612
40 :conf: "prj.conf overlay-ot-rcp-host-wifi-nxp.conf"
41 :goals: build
42 :compact:
43