> For the complete documentation index, see [llms.txt](https://docs.conexiotech.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.conexiotech.com/master/building-and-programming-an-application/conexio-stratus-board-definition-files.md).

# Conexio Stratus Board Definition Files

Before we can compile and flash the application firmware to the Stratus device, we need to gather a few files for this board. First, we need to install the board definition files or the board’s devicetree in the ZephyrRTOS. Zephyr utilizes devicetree to describe the hardware available on its supported Boards, as well as that hardware’s initial configuration. An introduction to the devicetree is well documented [<mark style="color:red;">here</mark>](https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/dts/intro.html).

## Stratus Pro nRF9161

### **Step 1: Fetching Conexio Stratus Pro Board Definition Files**

<figure><img src="https://3229153654-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MXjGw-Z8_tCuNQB93OW%2Fuploads%2FOlCi7m34kY7p0vPJuLZI%2Ftop-view.png?alt=media&amp;token=d8635e8f-04ce-4864-9972-9e8f7aa6eb0b" alt=""><figcaption><p>Stratus Pro</p></figcaption></figure>

Stratus developers are asked to directly download the board files in zip format below extract/unzip, and copy the `conexio_stratus_pro` folder and place it in the NCS directory:

### Option 1: Device Tree for nRF SDK v2.6.0

> ncs/v2.6.0/zephyr/boards/arm

{% file src="/files/AAUs9JTbXwcSj34vu04h" %}
Conexio Stratus Pro Board Definition Files for v2.6.0
{% endfile %}

You should now see a folder named `conexio_stratus_pro` among other supported board files. Using the board target as `conexio_stratus_pro_ns` you can build Zephyr applications for the Stratus Pro board in non-secure mode.

```
└── ncs/
    └── v2.6.0/
        ├── zephyr/
        │   └── boards/
        │       └── arm/
        │           ├── ...
        │           ├── ...
        │           ├── conexio_stratus_pro
        │           └── ...
        ├── bootloader
        ├── modules
        ├── nrf
        ├── tools
        ├── toolchain
        └── ...
```

### Option 2: Download the Stratus Pro Board Definition Files from Git repo

{% embed url="<https://github.com/Conexiotechnologies/conexio_stratus_pro_devicetree>" %}

### Step 2: Patch MCUBoot file for Stratus Pro Board

Stratus Pro uses MCUBOOT as the main bootloader to properly execute and bootup applications. Download the `conexio_stratus_pro.conf` file below and place it in the following directory of the NCS:

> ncs/v2.6.0/bootloader/mcuboot/boot/zephyr/boards

{% file src="/files/nYIYG5ydnqujYKiyN6f4" %}

###

## Stratus Gen 1

### **Fetching Conexio Stratus Board Definition Files**

<figure><img src="https://3229153654-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MXjGw-Z8_tCuNQB93OW%2F-MfzSNfCkHLwn1R6N_Vu%2F-MfzSZ8jGuQ9ZC49vv2Y%2Ftop.png?alt=media&amp;token=dbabdb3e-1b8a-482f-90c2-163274870317" alt=""><figcaption><p>Stratus</p></figcaption></figure>

Stratus developers are asked to directly download the board files in zip format below extract/unzip, and copy the `conexio_stratus` folder and place it in the NCS directory:

**Device Tree for nRF SDK v2.6.0**

> ncs/v2.6.0/zephyr/boards/arm

{% file src="/files/aVGJaZEQAsLOJl6c1qr0" %}
Conexio Stratus Board Definition Files for v2.5.0
{% endfile %}

You should now see a folder named `conexio_stratus` among other supported board files. Using the board target as `conexio_stratus_ns` you can build Zephyr applications for the Stratus board in non-secure mode.

```
└── ncs/
    └── v2.6.0/
        ├── zephyr/
        │   └── boards/
        │       └── arm/
        │           ├── ...
        │           ├── ...
        │           ├── conexio_stratus
        │           └── ...
        ├── bootloader
        ├── modules
        ├── nrf
        ├── tools
        ├── toolchain
        └── ...
```

### Download the Stratus Board Definition Files from Git repo

{% embed url="<https://github.com/Conexiotechnologies/conexio_stratus_devicetree>" %}
