# Fetch Stratus Sample Applications

All the sample applications for the Stratus board can be found in the [<mark style="color:red;">conexio-firmware-sdk</mark>](https://github.com/Conexiotechnologies/conexio-firmware-sdk) repository on GitHub.&#x20;

**Sample Applications for nRF Connect SDK v2.6.0**

There are 2 ways to fetch the Conexio Stratus sample applications.

**Method 1**

Check out the main Git repo [**v2.6.0**](https://github.com/Conexiotechnologies/conexio-firmware-sdk) for the sample applications supported by the nRF SDK v2.6.0. Download the files, extract them, and place the extracted folder into: `/nordic/ncs/v2.6.0`

Your nRF Connect SDK v2.6.0 folder structure should now look like this:

```
v2.6.0/
├─ bootloader/
├─ conexio-firmware-sdk/
├─ mbedtls/
├─ modules/
├─ nrf/
├─ nrfxlib/
├─ test/
├─ toolchain/
├─ tools/
├─ zephyr/
```

**Method 2: Using nRF Connect SDK as a manifest repository**

Alternatively, add the following entry to `west.yml` file in `ncs/v2.6.0/nrf` subtree of the existing [west](https://docs.zephyrproject.org/3.0.0/guides/west/index.html) based project:

```yaml
# Conexio repository.
    - name: conexio
      path: conexio
      revision: main
      url: https://github.com/Conexiotechnologies/conexio-firmware-sdk.git
      import: west-nrf.yml
```

After updating the west.yml file, it should now look similar to this:

```yaml
...
    - name: openthread
      repo-path: sdk-openthread
      path: modules/lib/openthread
      revision: 0d19f9112101e87722ec80b3a247bc7a1c54b232
    # Conexio repository.
    - name: conexio
      path: conexio
      revision: main
      url: https://github.com/Conexiotechnologies/conexio-firmware-sdk.git
      import: west-nrf.yml

  # West-related configuration for the nrf repository.
  self:
    # This repository should be cloned to ncs/nrf.
    path: nrf
    # This line configures west extensions.
    west-commands: scripts/west-commands.yml
```

Now clone all the repositories, by issuing the following command:

```
west update
```

Your nRF Connect SDK v2.6.0 folder structure should now look like this:

```
v2.6.0/
├─ bootloader/
├─ conexio/ <- examples samples folder
├─ mbedtls/
├─ modules/
├─ nrf/
├─ nrfxlib/
├─ test/
├─ toolchain/
├─ tools/
├─ zephyr/
```

We have now met all the requirements for compiling applications for the Conexio Stratus.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.conexiotech.com/master/building-and-programming-an-application/fetch-stratus-sample-applications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
